Updated to OTCv8 3.0 rev 19

This commit is contained in:
OTCv8
2021-04-09 19:01:18 +00:00
parent a26109ce3f
commit 0298cece93
93 changed files with 13452 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
local m = macro(1000, "Floor Change Delay", function() end)
onPlayerPositionChange(function(x,y)
if m.isOff() then return end
if CaveBot.isOff() then return end
if x.z ~= y.z then
TargetBot.delay(500)
end
end)