• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • 2026 staff recruitment is open! Check it out and consider applying!

That Some outfits cannot use mounts

creaturescripts.xml

Code:
<event type="outfit" name="mount" event="script" value="mount.lua"/>

register it to login.lua

Code:
registerCreatureEvent(cid, "mount")

mount.lua

LUA:
local outfit = {100, 101} -- id of outfit which cannot use mount
 
function onOutfit(cid, old, current)
	if isInArray(outfit, current.lookType) and current.lookMount ~= 0 then
                doCreatureChangeOutfit(cid, current)
		return false
	end
	return true
end
 
Last edited:

Similar threads

Back
Top