我正在尝试为手机游戏编写一个小脚本。脚本会搜索颜色,然后点击找到的颜色,然后重复多次
我尝试了很多方法来列出
local target = 1080218;
local region = {??, ??, ??, ??}
local loopCount = 3
while loopCount > 0 do
repeat
check = findColor(target, 0, region, nil, true, true);
until condition
repeat
if #check > 0 then
tap(1297.79, 1166.31);
end
until condition
loopCount = loopCount - 1
end
我放??在该地区,因为我知道我尝试的号码是错误的。我没有收到错误,但是它没有点击它,它只是坐在那儿什么也不做。