给大家介绍一个可自动收集能量的方法,亲测有效,让你不在动手,能量即可充到爆!!!
无障碍服务
;设置
——无障碍
——更多已下载的服务
——Auto.js
——设为开启
,并打开悬浮框;js 脚本
文件下载,打开时选择用Auto.js 导入脚本文件
保存,或者在Auto.js
内选择导入文件即可。充能量
子页面后,点击屏幕左侧的Auto.js 悬浮小窗
,将会弹出的多个小图标,如下图所示,选择第一个菜单,在打开的脚本列表中选择前一步骤导入保存的脚本运行即可。
auto.waitFor();
var height = device.height;
var width = device.width;
toast("\n设备宽" + width + "\n" + "设备高" + height + "\n" + "手机型号" + device.model + "\n安卓版本" + device.release)
setScreenMetrics(width, height);
toast("设备高"+height);
autoplay();
function autoplay(){
if(textEndsWith("签到").exists()){
textEndsWith("签到").findOne().click();
sleep(1600);
toast("签到成功")
}
sleep(2000);
toast("完成[签到]检测");
while(textEndsWith("去浏览").exists()){
//要支持的动作
toast("存在去浏览");
textEndsWith("去浏览").findOne().click();
sleep(1500);
swipe(width / 2, height - 500, width / 2, 0, 500);
sleep(2500);
swipe(width / 2, height - 500, width / 2, 0, 500);
sleep(10000);
swipe(width / 2, height - 500, width / 2, 0, 500);
sleep(8000);
back();
sleep(1600);
}
toast("完成[去浏览]检测");
sleep(2000);
toast("结束");
}