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

Outfit X can't use mounts

Kudzu

Active Member
Joined
Apr 9, 2008
Messages
512
Reaction score
38
Location
localhost
Whether it is possible that the X outfit like Gamemaster outfit could not use a mount?
 
Well i have never used a distro with mounts but i guess it might have some lua creaturescript like onMount or something?^.-

if so you just create a creaturescript and make it return false ^^
 
Lua:
local NoMounts = {75, 266}

function onOutfit(cid, old, current)
	if current.lookMount ~= 0 and isInArray(NoMounts, current.lookType) then
		current.lookMount = 0
		doCreatureChangeOutfit(cid, current)
		return false
	end
	return true
end
 
Back
Top