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

isMounted function

televolt

Member
Joined
Jun 21, 2010
Messages
153
Reaction score
9
Hello, i need some help to create a function that returns if player is mounted. protocol 9.8x
Some way is check player outfit (lookMount)
EDITED
easy way.. creatureevents onMount give Xstorage and onDismount remove storage
EDITED2
How i know what storage will not conflict with other scripts?
 
Last edited:
?
Code:
function isMounted(cid)
	return getCreatureOutfit(cid).lookMount > 0
end
 
Back
Top Bottom