Auto.js 是一个非常方便可以实现手机各种操作的插件,可以实现手机无人化操作,包括点赞、抢红包、自动刷视频、刷小说等等,操作简单,实用性强。
下面放自动刷快手的代码,相关技术仅作讨论,切勿用作非法用途
系统需要安卓7.0以上,执行要打开无障碍
auto.waitFor();
sleep(5000);
app.launchApp("快手极速版");--打开APP,可以换其他的
sleep(5000);
back();
sleep(2000);
auto.waitFor()
i = 1;
while (true)
{
toast("滑动" + i + '次');
WidthOne = random(300, 800);
HeightOne = random(1800, 2000);
WidthTwo = random(300, 800);
HeightTwo = random(200, 500);
timeGo = random(250, 300);
timeNext = random(4000, 7000);--滑动时间间隔4-7秒随机
swipe(WidthOne, HeightOne, WidthTwo, HeightTwo, timeGo);
sleep(timeNext);
i++;
function heartClick(){click(950, 1300);}sleep(3000);}
后期会更新更加实用功能,如多开,直播转录等