老年人每天投入三小时刷「极速版」短视频赚金币,一小时赚不到一块钱,为什么老人会被「金币提现」绑架?
哈哈,这个我熟~~~本质就是老年人的时间不值钱嘛,不如换点钱花花,哪怕就一块钱呢。
那几年奖励多时,我弄了一箱手机,用智能插座配合安卓自动开关机,写了一些脚本开机后自动刷,随机时间结束,几个平台奖励加起来一天能刷10元吧,赶上活动不算拉新奖励,一天能刷30多元。
我爸妈本来也老刷这玩意儿,后来回家的时候我给他们看了一下我用脚本的效率,他们就觉得没意思,不刷了,不过我妈还是老给多多果园浇水。。。


这些客户端老强制升级,得经常更新代码,后来忙起来懒得弄了,总共刷了大概几万块钱吧。
let kuaishoujisu = {//快手极速版 启动后弹窗邀请好友未处理
run: function () {
toast('这是一个快手极速版签到脚本,1s之后打开APP');
sleep(1000);
var launchResult = app.launchApp("快手极速版");//app.launchApp("com.kuaishou.nebula");
if (!launchResult) {
toast('你还没有安装快手极速版!');
sleep(1000)
return;
}
toast('正在启动软件!');
sleep(1000);
id("thanos_home_top_search").waitFor();
toast('软件启动完成,3s后执行下一个动作!');
sleep(5000);
//如果弹出设置青少年模式,关闭
if(text("设置青少年模式").findOnce() != null){
toast('发现青少年模式弹窗,正在点击取消!');
var b = text("我知道了").findOnce().bounds();
click((b.left+b.right)/2,(b.top+b.bottom)/2);
sleep(2000);
}
while (text("点击进入直播间").exists() ) {
toast('发现正在直播,自动跳过!');
nextVideo();
sleep(2000);
}
signIn();//点击签到
sleep(2000);
liveCast();//开始看直播
sleep(2000);
back();
home();
sleep(1000);
function liveCast() {
toast('准备看直播赚金币');
sleep(2000);
if (id("redFloat").exists()) {
toast('点击控件,看直播赚金币');
var b = id("redFloat").findOnce().bounds();
click((b.left+b.right)/2,(b.top+b.bottom)/2);
}
sleep(4000);
while (text("任务中心").findOnce() == null ) {
nextVideo();
sleep(2000);
if (id("redFloat").exists()) {
toast('点击控件,领福利');
var b = id("redFloat").findOnce().bounds();
click((b.left+b.right)/2,(b.top+b.bottom)/2);
}
else {
click((871+1080)/2,(289+458)/2);
}
sleep(4000);
}
text("日常任务").waitFor();
pageDown();
sleep(2000)
closePullNew();
if (text("恭喜获得好友看视频奖励").exists()) {
click((78+174)/2, (645+741)/2);
sleep(2000);
}
if (textContains("金币直播任务").exists()) {
while (text("今日已成功领取直播奖励金币").findOnce() == null) {
var b = textContains("金币直播任务").findOnce().bounds();
toast('点击“金币直播任务!”');
click((b.left+b.right)/2,(b.top+b.bottom)/2);
sleep(5000);
if (text("任务中心").exists()) {//说明没有进入直播,还停留在任务中心
break;
}
if (text("说点什么...").findOnce() == null) {//说明进入了滑动页面,返回
back();
sleep(2000);
}
for(var i=0;i<12;i++) {
toast('正在观看直播,'+'当前第'+(i*5).toString()+'秒。');
sleep(5000);
if(textContains("关注主播").exists()) {
id("live_red_packet_container_close_view").findOnce().click();
sleep(1000);
}
}
back();
sleep(2000);
if (text("说点什么...").exists()) {//说明之前有弹窗,没返回,还停留在直播页面,再返回一次
back();
sleep(2000);
}
if(text("是否关注该主播?").exists()) {
id("exit_btn").findOne().click();
}
text("任务中心").waitFor();
sleep(2000);
}
toast('今天的直播已经看完了!');
}
sleep(2000);
back();
};
function signIn() {
toast('准备签到');
sleep(2000);
if (id("kem_task_pendant").exists()) {
toast('点击控件,去签到');
id("kem_task_pendant").findOnce().click();
}
else {
click((871+1080)/2,(289+458)/2);
}
sleep(4000);
while (text("日常任务").findOnce() == null ) {
nextVideo();
sleep(2000);
if (id("kem_task_pendant").exists()) {
toast('点击控件,去签到');
id("kem_task_pendant").findOnce().click();
}
else {
click((871+1080)/2,(289+458)/2);
}
sleep(4000);
}
text("日常任务").waitFor();
//去签到
if(text("立即签到").exists()){
text("立即签到").findOnce().click();
sleep(2000);
toast('签到完成!');
}
else {
toast('你已经签过到了!');
}
sleep(2000);
back();
};
//获取范围内的随机数
function randNum(minnum, maxnum) {
return Math.floor(minnum + Math.random() * (maxnum - minnum));
};
function closePullNew() {
if (text("我的收益").exists()) {
toast('发现邀请好友弹窗,自动关闭”!');
click((78+174)/2, (645+741)/2);
sleep(2000);
}
};
function nextVideo() {
//获得手机分辨率
var width = device.width;
var height = device.height;
//在选定区域内随机坐标向上滑动查看下一条视频
var x1 = randNum (width / 4, width * 3/4);
var y1 = randNum(height / 2, height * 3/4);
var x2 = x1;
var y2 = randNum(height / 4, height / 2);
var randDuration=randNum(10,30);
swipe(x1, y1, x2, y2, randDuration);
};
function pageDown() {
//获得手机分辨率
var width = device.width;
var height = device.height;
//在选定区域内随机坐标向上滑动查看下一条视频
var x1 = width / 2;
var y1 = height * 2/3;
var x2 = x1;
var y2 = height /3;
var randDuration=1000;
swipe(x1, y1, x2, y2, randDuration);
};
}
};
编辑于 2026-02-06 · 著作权归作者所有