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

Solved Outfit problem

Status
Not open for further replies.

xubeiga

New Member
Joined
Jun 17, 2009
Messages
137
Reaction score
1
Yo people!
so, in my otserver there isnt some outfits to use, like assassin, beggar, warmaster, etc.
where can i edit this? is it in sources?
thanks!
 
Last edited by a moderator:
Find this in your outfits folder (data/xml/outfits.xml) open it. There would be something like this

Code:
<outfit id="12" premium="yes" default="0">
<list gender="0" lookType="155" name="Pirate"/>
<list gender="1" lookType="151" name="Pirate"/>
</outfit>

<outfit id="13" premium="yes" default="0">
<list gender="0" lookType="156" name="Assassin"/>
<list gender="1" lookType="152" name="Assassin"/>
</outfit>

<outfit id="14" premium="yes" default="0">
<list gender="0" lookType="157" name="Beggar"/>
<list gender="1" lookType="153" name="Beggar"/>
</outfit>

Now for the outfits you want to be free, change to:
HTML:
<outfit id="ID">

It should look like this:
Code:
<outfit id="12" premium="yes">
<list gender="0" lookType="155" name="Pirate"/>
<list gender="1" lookType="151" name="Pirate"/>
</outfit>
 
<outfit id="13" premium="yes">
<list gender="0" lookType="156" name="Assassin"/>
<list gender="1" lookType="152" name="Assassin"/>
</outfit>
 
<outfit id="14" premium="yes">
<list gender="0" lookType="157" name="Beggar"/>
<list gender="1" lookType="153" name="Beggar"/>
</outfit>

The only things is for them to be premium. If you want non-premium players to have outfits just set the "premium=yes" to "premium=no".
 
Last edited by a moderator:
Status
Not open for further replies.
Back
Top