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

Weapons which trains other than its skill

whiteblXK

Active Member
Joined
Apr 20, 2011
Messages
315
Solutions
9
Reaction score
32
Location
Poland
Hi. how to make a sword which train e.g. axe skill but his damage depends from sword skill. I find out you can do it in weapons.xml


@edit I forgot to write tfs 0.3.6
 
Last edited:
seems like you want to use the skills to do different things... I dont know how to do this but you can change what TYPE the weapon is... you can make all weapons the same type for example:


<item id="2439" article="a" name="daramanian mace">
<attribute key="weight" value="6800" />
<attribute key="defense" value="12" />
<attribute key="attack" value="21" />
<attribute key="weaponType" value="club" />
</item>

<item id="2438" article="an" name="epee">
<attribute key="weight" value="1500" />
<attribute key="defense" value="23" />
<attribute key="attack" value="37" />
<attribute key="weaponType" value="sword" />
</item>


change it to use axe skill
<attribute key="weaponType" value="axe" />

this will make your weapon train and use the axe skill. you can do this with any weapon in items.xml
 
Last edited:
Back
Top