mirror of
https://github.com/OTCv8/otclientv8.git
synced 2025-05-04 12:59:20 +02:00
9 lines
223 B
Lua
9 lines
223 B
Lua
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) |