auto.js 自动偷取蚂蚁森林能量

auto.js 自动偷取蚂蚁森林能量

在网上找了很多都不能用,最后自己跟着重写了一遍
auto.js(android)下载网站: https://hyb1996.github.io/AutoJs-Docs/#/
使用方法: 安装好后,将以下代码添加进去执行即可

本代码在1920*1080 的华为荣耀8上调试成功

如果手机为1920*1080 的分辨率应该也能达到预期效果
需要修改的地方为:
1.第19行代码:mainfunc(“1111”,35); //其中1111为自己手机屏幕解锁的密码35为要偷取的好友个数.

2.第114行代码:function stealFriendsEnergy(friendsNumber){…} 的第一行代码closeTool()为关闭华为的功能键,如果手机没有功能键需要将这行代码注释掉 . (注释方法:前面加上 //)

//全局变量
var height = device.height;
var width = device.width;
toast("\n设备宽" + width + "\n" + "设备高" + height + "\n" + "手机型号" + device.model + "\n安卓版本" + device.release)

//可以使用屏幕捕捉
requestScreenCapture(); 
threads.start(function(){
    toast("按音量下键停止")
    //启动监听
    events.observeKey();
    //监听音量下键
    events.onKeyDown("volume_down",function(event){
        toast("已停止")
        exit();
    })
}); 
 
mainfunc("1111",35);   //锁屏密码  和  偷取好友数量

//屏幕解锁
function unlock(password){
	sleep(2000);
	if (!device.isScreenOn()){			
		device.wakeUpIfNeeded();		
		sleep(2000);
		swipe(width / 2, height - 200, width / 2, height-900, 200);
	}
	sleep(2000);
	for(var i=0;i

你可能感兴趣的:(auto.js 自动偷取蚂蚁森林能量)