• 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!

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:
Back
Top