2020 淘宝双十一快速刷金币工具,这份字节跳动历年校招 Java 面试真题解析
但是这样一直点下去,我们的小手怎么受得了,所以一条给各位同学弄了一个自动点击的神器,到底该怎么操作,请看下面:
1.安装 auto.js
这里要用放到一款软件 auto.js。
获取方式:关注微信公众号【一条 IT】,后台回复【淘宝】即可领取到安装包
2.打开软件
首先给软件授予无障碍服务,手机可能会有危险提示并要求输入账户密码,同学们可放心输入。
3.新建脚本
点击下方加号,新建脚本,命名为 tb
4.添加代码
"auto";
toast("请在 5 秒内打开喂猫猫页面");
sleep(5*1000);
toast("开始点击")
setInterval(function(){
click(500,1000);
},500);
5.启停脚本
右上角点击保存,再点击运行,然后 5 秒内切换到喂猫猫页面,天上掉金币的奇迹就会发生了。
通过悬浮窗弹出黄色 X 按钮,停止脚本。
2.自动做任务
同样用到 Auto.js
新建脚本文件 tb2,写入以下代码
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();
c
lick(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);
评论