autojs非按键精灵怎么做游戏脚本,来,给你游戏识图点击实例
作者:互联网
用autojs做游戏而非按键精灵做怎么做,来,给你游戏识图点击实例
代码如下,脚本采取的是农药的爬塔脚本示范
更多内容请加交流群553908361
和更多作者同群交流
//王者 自动爬塔
requestScreenCapture();
for (var i = 1; i > 0; i++) {
var 开战 = images.read("./开战.jpg");
//截图并找图
var p = findImage(captureScreen(),开战,{
region: [0, 50],
threshold: 0.8
});
if(p){
toast("开战成功");
click( + p.x , + p.y);
} else{
print("没找到")
}
sleep(1000);
var 布阵 = images.read("./布阵.jpg");
//截图并找图
var p = findImage(captureScreen(),布阵,{
region: [0, 50],
threshold: 0.8
});
if(p){
toast("布阵成功");
click( + p.x , + p.y);
}
sleep(1000);
var 再开战 = images.read("./再开战.jpg");
var p = findImage(captureScreen(),再开战,{
region: [0, 50],
threshold: 0.8
});
if(p){
toast("再开战成功");
click( + p.x , + p.y);
}
sleep(1000);
var 挑战 = images.read("./挑战.jpg");
//截图并找图
var p = findImage(captureScreen(),挑战,{
region: [0, 50],
threshold: 0.8
});
if(p){
toast("挑战成功");
click( + p.x , + p.y);
}
sleep(1000);
var 确定 = images.read("./确定.jpg");
//截图并找图
var p = findImage(captureScreen(),确定,{
region: [0, 50],
threshold: 0.8
});
if(p){
toast("确定成功");
click( + p.x , + p.y);
}
}
//什么,你还要图片?果然是,小孩才做选择,大人说我全都要
//完整源码下载:https://lanzous.com/id7hw5e
标签:0.8,游戏,识图,threshold,按键精灵,jpg,captureScreen,var,开战 来源: https://blog.csdn.net/qq_30931547/article/details/106465930