2020 Taobao double eleven quick gold coin tool

At 00:00 today, the 2020 Tmall Double Eleven pre-sale officially started, and at the same time, this year’s Double Eleven event raising 2 billion cats was officially launched. The following item will teach you how to quickly swipe the Double Eleven Meow Coins to quickly upgrade the cat.

1. Automatically tap off gold coins

Attentive classmates may have discovered that when we click on the cat, the cat will drop coins

But if we keep clicking like this, how can our little hands stand it, so I made an auto-clicking artifact for all the students, how to operate it, please see below:

1. Install auto.js

Here is a software auto.js.

Obtaining method: follow the WeChat public account [one IT], reply [Taobao] in the background to receive the installation package

2. Open the software

First, grant accessibility services to the software. The mobile phone may have dangerous prompts and ask for the account password. Students can enter it with confidence.

3. New script

Click the plus sign below to create a new script and name it tb

4. Add code

"auto";
toast("请在5秒内打开喂猫猫页面");
sleep(5*1000);
toast("开始点击")
setInterval(function(){
click(500,1000);
},500);

5. Start-stop script

Click Save in the upper right corner, then click Run, and then switch to the cat feeding page within 5 seconds, the miracle of falling gold coins from the sky will happen.

A yellow X button pops up through the floating window to stop the script.

2. Do tasks automatically

Also use Auto.js

Create a new script file tb2 and write the following code

auto.waitFor();
var height = device.height;
var width = device.width;
toast("\n设备宽" + width + "\n" + "设备高" + height + "\n" + "手机型号" + device.model + "\n安卓版本" + device.release)
setScreenMetrics(width, height);
 
autotask();
 
function autotask() {
    app.launchApp("手机淘宝");
    toast("打开淘宝")
    sleep(6000);
    click(600, 1235);//进入活动页
    sleep(6000);
 
    click(900, 1320);
    toast("领金币")
    //id("_KivZw5").findOne().click();//点猫  领金币
    // //浏览15秒领金币
    sleep(1500);
    while (text("去喂猫 赚更多喵币").exists()) {
        text("去喂猫 赚更多喵币").findOne().click();
        }
    //text("赚喵币").findOne().click();
    click(920, 2100);
    toast("请在5秒内点击领喵币");
 
    sleep(5000);
    if (text("签到").exists()) {
        text("签到").findOne().click();
        sleep(1600);
        toast("签到成功")
    }
    sleep(1500);
    while (text("去浏览").exists()) {
        toast("存在去浏览");
        text("去浏览").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);
    }
    while (text("去完成").exists()) {
        //要支持的动作
        toast("存在去完成");
        text("去完成").findOne().click();
        sleep(2500);
        swipe(width / 2, height - 600, width / 2, 0, 500);
        sleep(3500);
        swipe(width / 2, height - 600, width / 2, 0, 500);
        sleep(10000);
        swipe(width / 2, height - 600, width / 2, 0, 500);
        sleep(9000);
        back();
        sleep(1000);
    }
    toast("结束");
}

 

Run after saving, please close Taobao background before running .

After clicking Run, the script will first read the resolution and model of the phone, and then open Taobao to enter the event page for automatic tap operations. The functions mainly include:

  • Sign in

  • Receive daily coins

  • Automatically do the task of getting coins

If there is no response within 10 seconds after receiving the daily gold coins, please manually click on the coin and restart the script. (No need to close Taobao)

 

每天一条IT技巧分享,关注微信公众号【一条IT】,免费领取学习资料,你想要的我都有。

 

Guess you like

Origin blog.csdn.net/skylibiao/article/details/109197760