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

Help with character's outfits

Leyenda

New Member
Joined
Jul 13, 2012
Messages
28
Reaction score
1
Hello, in my ot i made a quest for every outfit, now i need to make that the outfits cant be choosen if they dont have completed the quest, on outfits.xml on every outfit i added " quest="30001" " Example:
PHP:
<outfit id="4" quest="30003">
		<list gender="0" lookType="139" name="Knight"/>
		<list gender="1" lookType="131" name="Knight"/>
	</outfit>
I did that with all outfits except citzen outfits, so in the quest ill just give the players the storage value and they get the otufit.. the problem is that some outfits still appear for the players (Warrior, Barbian, Druid, Wizard and Oriental). Can they be removed? So new players only have citzen outfit.. Here are the codes

Warrior:
PHP:
<outfit id="7" quest="30006">
		<list gender="0" lookType="142" name="Warrior"/>
		<list gender="1" lookType="134" name="Warrior"/>
	</outfit>
Barbian:
PHP:
<outfit id="8" quest="30007">
		<list gender="0" lookType="147" name="Barbarian"/>
		<list gender="1" lookType="143" name="Barbarian"/>
	</outfit>
Druid:
PHP:
<outfit id="9" quest="30008">
		<list gender="0" lookType="148" name="Druid"/>
		<list gender="1" lookType="144" name="Druid"/>
	</outfit>
Wizard:
PHP:
<outfit id="10" quest="30009">
		<list gender="0" lookType="149" name="Wizard"/>
		<list gender="1" lookType="145" name="Wizard"/>
	</outfit>
Oriental:
PHP:
<outfit id="11" quest="30010">
		<list gender="0" lookType="150" name="Oriental"/>
		<list gender="1" lookType="146" name="Oriental"/>
	</outfit>

Anyone, help please!
 
Back
Top