<event type="outfit" name="mount" event="script" value="mount.lua"/>
registerCreatureEvent(cid, "mount")
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