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

Effect when you wear outfit?

Uffox

It's My Life
Joined
Aug 5, 2010
Messages
20
Reaction score
0
Location
Im Live In Mexico Why?
Hello,
I'm looking for a script that when you get a certain outfit you put an effect when i wear this outfit you understand?

I do not think it is hard to do but I know nothing about scripts so i ask your help in advance thanks

pd: sorry for my bad english
:rolleyes:
 
creaturescript

Lua:
function onOutfit(cid, old, current)

	if current.lookType == n then
		doSendMagicEffect(getCreaturePosition(cid), CONST_ME_POFF)
	end
	return true
end
 
Back
Top