Auto Mount
#16
Add this to your bot config. First will check mount every 5 seconds outside of PZ and mount if not mounted.
Second will check for mount everytime you move.
Second will check for mount everytime you move.
macro(5000, "Auto-Mount", function()
if isInPz() then return end
if not player:isMounted() then player:mount() end
end)
local autoMount = macro(60000, "Walk Mount", function() end)
onPlayerPositionChange(function()
if autoMount:isOn() then
if isInPz() then return end
if not player:isMounted() then player:mount() end
end
end)
- remove | + add
01 Jan 2020