• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Solved Mounts and Outfits

Ahead

New Member
Joined
Dec 27, 2013
Messages
165
Reaction score
2
Where can i change the mounts and outfits that common players can use?

Thank you all guys ^^
 
he use otx I think xD

all his threads speaking about OTX :eek:

Hahahaha, since i found a lot of problems trying to put the rl map in OTX i decided to start in a TFS RL Map /sigh ^^

xml/outfits.xml
or
xml/mounts.xml

For TFS 1.0

But there i can just find the mounts and the outfits which are implemented. Or it is which players can use? o.O
 
Woops, haven't the code:

Code:
    <outfit id="1">
        <list gender="0" lookType="136" name="Citizen" speed="25"/>
        <list gender="1" lookType="128" name="Citizen" speed="25"/>
    </outfit>

Code:
<mount id="1" clientId="368" name="Widow Queen" speed="20" premium="no" />

Should be something like this?:

Code:
<outfit id="1">
        <list gender="0" lookType="136" unlocked="0" name="Citizen" speed="25"/>
        <list gender="1" lookType="128" unlocked="0" name="Citizen" speed="25"/>
    </outfit>

Code:
<mount id="1" clientId="368" name="Widow Queen" speed="20" unlocked="0" premium="no" />
 
Code:
  <outfit id="1" default="0">
       <list gender="0" lookType="136" name="Citizen" speed="25"/>
       <list gender="1" lookType="128" name="Citizen" speed="25"/>
  </outfit>
 
Code:
  <outfit id="1" default="0">
       <list gender="0" lookType="136" name="Citizen" speed="25"/>
       <list gender="1" lookType="128" name="Citizen" speed="25"/>
  </outfit>

It is working for the outfits but i tried to use the same code with mounts and it fails xD. Thank you btw.
 
Back
Top