• 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!
  • New resources must be posted under Resources tab. A discussion thread will be created automatically, you can't open threads manually anymore.

Action Mount system

how to use it lol
what do you mean? add it to your tfs and it should work - if there is a problem, just write and I will try to help you.

thanks man, surely I will use this script :)
 
Can you make it so you can't log out with this outfit?

I think this will work :)
P.S.[l/B] dont forget to register in login.lua!
Lua:
local mountoutfits = {214,215} -- outfits used while mounted.
function onLogout(cid)
	if isInArray(mountoufits,getCreatureOutfit(cid).lookType) then
		return doPlayerSendCancel(cid,'Please dismount before logging out.') and doSendMagicEffect(getThingPos(cid),CONST_ME_POFF) and false
	end
	return true
end
 
Back
Top