09-20-2021, 08:06 PM
Anti Idle
Note that you can use Options -> Anti Idle, but this script does same thing.
Note that you can use Options -> Anti Idle, but this script does same thing.
local TIME = { Min = 600, Max = 835 } -- In seconds. How often should the script turn around?
local TURN_TIMES = 3 -- How many times should the script turn around?
if NEXT_TURN == nil then
NEXT_TURN = 1
end
if runningtime() >= NEXT_TURN then
rturn(TURN_TIMES)
NEXT_TURN = runningtime() + random(TIME.Min, TIME.Max)
end