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

Does it work this way? outfits.xml -- Just wondering :)

Blue Identity

Member
Joined
Feb 20, 2009
Messages
174
Reaction score
15
Location
Netherlands
Got a question which I do not know the answer on.. I cannot test anything yet as I have not yet solved the server yet so I wonder if anyone has experience with it..

Is it possible to give a outfit only to a certain vocation and if so am I correct when doing it this way?

I'm not sure if the vocation="number" works?
Code:
	<!-- Female outfits -->
	<outfit type="0" looktype="137" enabled="1" name="Hunter" vocation="3"/>
	<outfit type="0" looktype="137" enabled="1" name="Hunter" vocation="7"/>
	<outfit type="0" looktype="138" enabled="1" name="Mage" vocation="1"/>
	<outfit type="0" looktype="138" enabled="1" name="Mage" vocation="5"/>
	<outfit type="0" looktype="139" enabled="1" name="Knight" vocation="4"/>
	<outfit type="0" looktype="139" enabled="1" name="Knight" vocation="8"/>
	<outfit type="0" looktype="148" enabled="1" name="Druid" vocation="2"/>
	<outfit type="0" looktype="148" enabled="1" name="Druid" vocation="6"/>

	<!-- Male outfits -->
	<outfit type="1" looktype="129" enabled="1" name="Hunter" vocation="3"/>
	<outfit type="1" looktype="129" enabled="1" name="Hunter" vocation="7"/>
	<outfit type="1" looktype="130" enabled="1" name="Mage" vocation="1"/>
	<outfit type="1" looktype="130" enabled="1" name="Mage" vocation="5"/>
	<outfit type="1" looktype="131" enabled="1" name="Knight" vocation="4"/>
	<outfit type="1" looktype="131" enabled="1" name="Knight" vocation="8"/>
	<outfit type="1" looktype="144" enabled="1" name="Druid" vocation="2"/>
	<outfit type="1" looktype="144" enabled="1" name="Druid" vocation="6"/>
 
Back
Top