function 节点范围随机点击(节点desc,节点id,节点text)
local ret = nodeLib.findOne(0,0,0,0,{desc=节点desc,id=节点id,text=节点text},true)
if ret ~= nil then
print(ret)
print("节点存在")
节点范围=ret.bounds
print(节点范围)
print(节点范围.b)
math.randomseed(os.time())
local x = math.random(节点范围.l,节点范围.r)
print(x)
local y = math.random(节点范围.t,节点范围.b)
print(y)
tap(x,y)
else
print("节点不存在")
end
end
|