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

attribute key="magiclevelpoints" and attribute key="skillDist"

zednem

New Member
Joined
Nov 15, 2008
Messages
108
Reaction score
0
I have TFS 0.3 beta2 8.4 and i looked in items.xml this attributes but they don't work, how i would do to raise ml and distance with items??
 
Yeah magicpoint worked, but skilldistc no
i have added at weapons, not at movements, because i don't know wath slot is =S
 
Yeah magicpoint worked, but skilldistc no
i have added at weapons, not at movements, because i don't know wath slot is =S

Maybe you made a typo on your post or you're writing it wrong on your item! Remember, its skillDist , not skillDistC.

Hope it helps.

If not, which item exactly are you trying this on?
 
Last edited:
You need to register the item in movements.xml also.
I did this but magiclevelpoints only seems to work on a couple items like spell books. I use same server tfs 0.3.0beta2

<!-- Armors -->
<movevent event="Equip" itemid="7884" slot="armor" level="500" function="onEquipItem">
<vocation name="Knight"/>
<vocation name="Elite Knight" showInDescription="0"/>
</movevent>
<movevent event="DeEquip" itemid="7884" slot="armor" function="onDeEquipItem"/>

<item id="7884" article="a" name="Terra Mantle">
<attribute key="weight" value="2250"/>
<attribute key="armor" value="100"/>
<attribute key="slotType" value="body"/>
<attribute key="absorbPercentEarth" value="20"/>
<attribute key="absorbPercentFire" value="-20"/>
<attribute key="magiclevelpoints" value="200"/>
Im I doing something wrong?
 
Back
Top