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

Outfits for Quests

Federico

Banned User
Joined
Apr 19, 2008
Messages
32
Reaction score
0
I've seen that elf implemented slawkens script for TFS and that it's for 0.3 beta 2, but I don't know how to make the quest, what script do I have to make, can anyone tell me? :)
 
outfits.xml:
PHP:
<outfit type="0" looktype="324" enabled="1" name="Yalaharian" premium="0" quest="77109"/>

and your quest must be like:
PHP:
function onUse(cid, item, fromPosition, itemEx, toPosition)
	if getPlayerStorageValue(cid, 77109) = -1 then
	doPlayerSendTextMessage(cid, 22, "You get yalaharian outfit!")
	setPlayerStorageValue(cid, 77109, 1)
	else
	doPlayerSendTextMessage(cid, 22, "You already got this outfit!")
	return TRUE
end
 
Back
Top