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

TFS 1.X+ XML Items Give Ml wont work

Sp0tl3ss

Nestalia.org
Joined
Jul 19, 2014
Messages
279
Reaction score
12
Hello this is my XML code for a custom "Demon armor" and it says it will give +1ml but it wont and i dont know how to fic this issue
19:32 You see a demon armor (Arm:20, magic level +1, protection all +2%).
It weighs 80.00 oz.
here is an gif:
Screen capture - 246b4525d8cabd60deacddbb3c76fe0e - Gyazo
And here is the code:
<item id="2494" article="a" name="demon armor">
<attribute key="weight" value="8000" />
<attribute key="armor" value="20" />
<attribute key="slotType" value="body" />
<attribute key="absorbPercentall" value="2" />
<attribute key="magiclevelpoints" value="1" />
</item>
 
yes, go to movements and try this:

<movevent type="Equip" itemid="2494" slot="armor" event="function" value="onEquipItem">
<vocation name="Paladin"/>
<vocation name="Knight"/>
<vocation name="Sorcerer"/>
<vocation name="Druid"/>
<vocation id="7;8;5;6" showInDescription="0"/>
</movevent>

(btw, this is for tfs 0.3.6, idk what verison are u using)
 
yes, go to movements and try this:

<movevent type="Equip" itemid="2494" slot="armor" event="function" value="onEquipItem">
<vocation name="Paladin"/>
<vocation name="Knight"/>
<vocation name="Sorcerer"/>
<vocation name="Druid"/>
<vocation id="7;8;5;6" showInDescription="0"/>
</movevent>

(btw, this is for tfs 0.3.6, idk what verison are u using)
tfs 1.2 yeh i didnt edit movment :) thanks
probably you didnt add the armor to movements.xml ....
yeah thats the problem thanks!
 
Back
Top