脚本新手...需要帮助在findColor中查找区域

时间:2019-07-02 15:49:50

标签: lua

我正在尝试为手机游戏编写一个小脚本。脚本会搜索颜色,然后点击找到的颜色,然后重复多次

我尝试了很多方法来列出

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

我放??在该地区,因为我知道我尝试的号码是错误的。我没有收到错误,但是它没有点击它,它只是坐在那儿什么也不做。

0 个答案:

没有答案