Is there a way to enable the character stuck alarm only if cavebot engine is enabled.
the alarm goes off if i disable the bot and stand in depot to sort my items.
Printable View
Is there a way to enable the character stuck alarm only if cavebot engine is enabled.
the alarm goes off if i disable the bot and stand in depot to sort my items.
Make a hotkey
auto(100)
if $cavebot and $standtime >= 30000 then
beep()
wait(500,800)
end
it should works
Regards
Put it in persistent and set how much seconds to do alarm:
init start
local stuckTime = 20 -- seconds
init end
auto(200, 400)
if $standtime >= stuckTime*1000 and $cavebot then
beep() wait(500, 1000)
end
yep my fail, edited :D