lua 在固定区域内随机点击、谁帮我写个样本 20
x,y=findColorInRegionFuzzy(0xc1976e,95,1686,577,1742,687)ifx>-1then--touchDown(1,x,y)...
x, y = findColorInRegionFuzzy(0xc1976e, 95, 1686, 577, 1742, 687)
if x > -1 then --
touchDown(1, x, y)
mSleep(100)
touchUp(1, x, y)
else
end
比如这个样本 展开
if x > -1 then --
touchDown(1, x, y)
mSleep(100)
touchUp(1, x, y)
else
end
比如这个样本 展开
展开全部
用Lua的获取随机数函数就可以实现:math.random ([m, n])
该函数有三种用法:
random():返回0到1之间的一个伪随机数
2.random(n):返回1到n之间的伪随机整数
3.random(m, n):返回m到n之间的伪随机整数
参考例子如下:
local res = {}
for var=1, 100 do
local num = math.random(10)
if(res[num] == nil) then
res[num] = 0
end
res[num] = res[num] + 1
end
for var=1, 100 do
if(res[var] ~= nil) then
print("num=" .. var .. ", num=" .. res[var])
end
end
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询