sdfsdfdsf
有自动刷微信阅读的小项目,手机多的可以一玩。只要广告多,一天刷个百八十都不是问题。
三段代码。仅供参考,毕竟每个号的流程都不太一样。
流程一。(这个是自动在微信群里点自己发的链接,进去再自动刷)
console.show();
ok = false;
//自动启动微信
//点进群
qun = textContains("刷钱小分队").findOne(5000);
if( qun ){
console.log("找到群了..");
click( qun.bounds().centerX(), qun.bounds().centerY() );
sleep(3000);
//点击二维码图片,并识别
a = textContains("恶猫").findOne(2000);
if( a ){
console.log("找到恶猫了..");
click( a.bounds().centerX(), a.bounds().centerY() + 50 );
sleep(3000);
press( device.width/2, device.height/2 , 2000 );
sleep(2000);
a = textContains("图中二维码").findOne(2000);
if( a ){
console.log("识别二维码..");
click( a.bounds().centerX(), a.bounds().centerY() );
ok = true;
sleep( 10 * 1000 );
}
}
}
//进入到网页内
if( ok ){
console.log("进入网页..");
while( !textContains("开始阅读").findOne(1000) ){
sleep(1000);
console.log("尚未打开..");
}
}
//检测是否要等
console.log("检测是否等待...");
while( true ){
a = textContains("下一批文章将在").findOne( 5000 );
if( !a ){
break;
}else{
console.log("等待吧...15秒后刷新");
sleep(15*1000);
back();
}
}
//开始
ok = false;
console.log("准备开始了");
a = textContains("开始阅读").findOne(5000);
b = textContains("每小时一轮").findOne(5000);
if( a && b ){
console.log("点击:开始阅读");
click( a.bounds().centerX(), a.bounds().centerY() );
sleep( 1000 );
press( a.bounds().centerX(), a.bounds().centerY() , 1500);
sleep(3000);
a = textContains("识别图中").findOne( 5000 );
if( a ){
console.log("识别二维码成功..");
click( a.bounds().centerX(), a.bounds().centerY() );
ok = true;
sleep( 5000 );
//已经开始阅读第一篇了
}
}
//开始循环了
if( ok ){
console.show();
dw = device.width;
dh = device.height;
//刷多少次
ci = random(25,30);
for(i=1;i<=ci;i++){
console.log('第' + i + '次循环,大概45秒后返回');
for(let i2 = 1;i2<30;i2++){
sleep( random(500,1000) )
swipe( dw/2,dh*0.75, dw/2, dh*0.4 ,500)
}
sleep( random(1000,5000) );
back();
console.log('已返回');
}
}
device.vibrate(3000);
alert('点完了!');
console.hide();
代码二。这个是都在群里了直接操作
//在群里自动操作====================================
console.show();
ok=false;
//点击二维码图片,并识别
a = textContains("恶猫").findOne(2000);
if( a ){
console.log("找到恶猫了..");
click( a.bounds().centerX(), a.bounds().centerY() + 80 );
sleep(3000);
press( device.width/2, device.height/2 , 2000 );
sleep(2000);
a = textContains("图中二维码").findOne(2000);
if( a ){
console.log("识别二维码..");
click( a.bounds().centerX(), a.bounds().centerY() );
ok = true;
sleep( 10 * 1000 );
}
}
//进入到网页内
if( ok ){
console.log("进入网页..");
while( !textContains("开始阅读").findOne(1000) ){
sleep(1000);
console.log("尚未打开..");
}
}
//检测是否要等
console.log("检测是否等待...");
while( true ){
a = textContains("下一批文章将在").findOne( 5000 );
if( !a ){
break;
}else{
console.log("等待吧...15秒后刷新");
sleep(15*1000);
back();
}
}
//开始
ok = false;
console.log("准备开始了");
a = textContains("开始阅读").findOne(5000);
b = textContains("每小时一轮").findOne(5000);
if( a && b ){
console.log("点击:开始阅读");
click( a.bounds().centerX(), a.bounds().centerY() );
sleep( 1000 );
press( a.bounds().centerX(), a.bounds().centerY() , 1500);
sleep(3000);
a = textContains("识别图中").findOne( 5000 );
if( a ){
console.log("识别二维码成功..");
click( a.bounds().centerX(), a.bounds().centerY() );
ok = true;
sleep( 5000 );
//已经开始阅读第一篇了
}
}
if( ok ){
dw = device.width;
dh = device.height;
//刷多少次
ci = random(25,30);
for(i=1;i<=ci;i++){
a = textContains("今日阅读次数").findOne(3000);
if( a ){ break; }
console.log('第' + i + '次循环,大概45秒后返回');
for(i2=1;i2<30;i2++){
sleep( random(500,1000) );
swipe( dw/2,dh*0.75, dw/2, dh*0.3 ,500);
console.log("第" + i2 + "次滑动..");
}
console.log("滑完了..准备休息下..");
sleep( random(3000,7000) );
back();
console.log('已返回');
}
sleep(1000);
device.vibrate(2000);
back();
sleep(500);
back();
console.hide();
}
代码三:直接刷(前提是手工点到了,开始阅读那步了)
//直接简单的刷====================================
console.show();
dw = device.width;
dh = device.height;
//刷多少次
ci = random(25,30);
for(i=1;i<=ci;i++){
a = textContains("今日阅读次数").findOne(3000);
if( a ){ break; }
console.log('第' + i + '次循环,大概45秒后返回');
for(i2=1;i2<30;i2++){
sleep( random(500,1000) );
swipe( dw/2,dh*0.75, dw/2, dh*0.3 ,500);
console.log("第" + i2 + "次滑动..");
}
console.log("滑完了..准备休息下..");
sleep( random(3000,7000) );
back();
console.log('已返回');
}
sleep(1000);
device.vibrate(2000);
back();
sleep(500);
back();
console.hide();
我12个手机。刷一波就是几块钱。 一天可以刷3波。 手机越多越好。
发表评论