淘宝618超级星秀猫自动任务js脚本代码

淘宝618养猫活动脚本来了,这个是Auto.js里使用的,大家先下载个Auto.js打开后把下面代码加入
 
打开打开淘宝APP进入活动点开任务列表界面。一定要点开任务列表界面!!点击Auto.js悬浮窗,点击脚本列表运行。
 
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 swipe22s(act){
    while(textContains(act).exists()){        
        toast("存在" + act);
        textContains(act).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);
        if(textContains("完成").exists()){
            back();
        } else {
        sleep(2200);
        back();
        }
        sleep(1600);
    }
    toast("完成[" + act + "]检测");
    sleep(2000);
}
 
   
function autoplay(){
    if(textEndsWith("签到").exists()){
        textEndsWith("签到").findOne().click();
        sleep(1600);
        toast("签到成功");
    }
    sleep(2000);
    toast("完成[签到]检测");
 
    swipe22s("去浏览");
    swipe22s("去搜索");
    swipe22s("去施肥");
   swipe22s("去逛逛");
   swipe22s("去完成");
   
   
    toast("结束");
}