2021-04-09 19:01:18 +00:00

9 lines
225 B
Lua

setDefaultTab("Cave")
macro(500, "TargetBot off if low supply", function()
if TargetBot.isOff() then return end
if CaveBot.isOff() then return end
if not hasSupplies() then
TargetBot.setOff()
end
end)