Your browser does not support JavaScript or its disabled!
Please turn it on, or be aware that some features on this website will not work correctly.
2.1K
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.
349b | 12 lines.
 --[[
  Script made by Lee (Discord: l33_) - www.trainorcreations.com
  If you want to support my work, feel free to donate at https://trainorcreations.com/donate
  PS. Stop ripping off my work and selling it as your own.
 ]]--
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)

01 Jan 2020
Ads