auto.js 快手极速版刷视频3.0

auto.js 快手极速版刷视频

结合网上脚本进一步优化
设备: 安卓手机 android 7.0 以上
app: 快手极速版,auto.js 4_1_1。
脚本: kuaishou.js

优化历史

–3.0 加入点赞,优化时间分配。(直接下载,没有解压密码)
–2.0 简化子函数;缩短视频观看时间,增加视频数量;加入直播图片非收益识别;出意外(连续五次非收益)自动停止,且弹窗不关闭
–1.0 如下

使用方法

1、 安装快手极速版
复制下面的代码,到快手极速版 ,最低可以获得一亓。

¥Y3pjweA71¥

2、 安装auto.js

3、 权限与设置

  1. 运行无障碍

  2. 悬浮窗打开
    悬浮窗打开

  3. 使用音量上键停止所有脚本 (是下面那个!!)
    音量上键

4、 导入脚本(js文件)
导入脚本

5、 运行脚本(停止脚本用音量上键)
运行脚本1

点那个播放

运行脚本2
成功示意图

在这里插入图片描述

脚本功能介绍

大概功能,3.0优化了好多,这里还是2.0的脚本,懒得放细节了
3.0文末下载就好

1. 滑到下一个视频

模拟滑到下一个视频,观看时间随机(10-12s),触控位置随机。

代码如下:

function nextVideo(x1, y1, x2, y2, duration){
    swipe(x1, y1, x2, y2, duration);                                //下一个视频
    delayTime =(Math.floor(Math.random() * 2) + 10) * 1000;         //这里设置每个视频的观看时间为 10-12 秒之间
    sleep(delayTime);                                               //在视频停留10-12秒
}

2. 视频没意思,这个不看了

模拟滑到下一个视频,观看时间随机(2-4s),触控位置随机

代码如下:

function nextTwo(x1, y1, x2, y2, duration){
        console.log("没意思,这个不看了");
        swipe(x1, y1, x2, y2, duration);
        delayTime =(Math.floor(Math.random() * 2) + 2) * 1000;     //这里设置每个视频的观看时间为 2-4 秒之间
        sleep(delayTime);                                          //在视频停留2-4秒
        swipe(x1, y1, x2, y2, duration);

    }

3. 意犹未尽,滑到上一个视频,再看一遍

模拟滑到上一个视频,观看时间随机(10-12s),触控位置随机。

代码如下:

function lookBack(x1, y1, x2, y2, duration){
        console.log("开始往回看一个视频");
        swipe(x1, y2, x2, y1, duration);                            //上一个视频
        delayTime =(Math.floor(Math.random() * 2) + 10) * 1000;     //这里设置每个视频的观看时间为 10-12 秒之间
        sleep(delayTime);                                           //在视频停留 10-12 秒                   
    }

4. 意犹未尽,滑到上一个视频,再看一遍,并且点了个赞

模拟双击666,随机

代码如下:

j = random(1,2);
        if (j == 1){
            console.log("觉得很好并点了个赞");
            click(width / 2 + (Math.floor(Math.random() * 5) + 1), height / 2 + (Math.floor(Math.random() * 6) + 1));
            click(width / 2 + (Math.floor(Math.random() * 5) + 1), height / 2 + (Math.floor(Math.random() * 6) + 1));
            sleep((Math.floor(Math.random() * 1) + 1) * 1000);      //停 1-2 s
        }

5.点赞

function clicklike(){
	sleep((Math.floor(Math.random() * 1) + 1) * 500);
	click(width / 2 + (Math.floor(Math.random() * 3) + 1), height / 2 + (Math.floor(Math.random() * 3) + 1));
	sleep(Math.floor(Math.random() * 50) + 50);
    click(width / 2 + (Math.floor(Math.random() * 3) + 1), height / 2 + (Math.floor(Math.random() * 3) + 1));
    sleep((Math.floor(Math.random() * 1) + 1) * 500);
    log("点个赞");
}

6.识别直播图片,跳过

if (!findIncomeIcon()){
		nextV2(bottomX, bottomY, topX, topY,duration);
		log("图片|直播,下一个");
		k = k + 1;
		if(k - i > 5){
			log("出意外了");
			break;
		}
		continue;
	}

end

zq67

解压密码也是邀请码

844921239

jirya
endend

  • 14
    点赞
  • 71
    收藏
    觉得还不错? 一键收藏
  • 17
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 17
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值