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

Lua Items.xml

Phoenix Decion

New Member
Joined
Jul 28, 2008
Messages
30
Reaction score
0
Hail Guys :)
Im found an bug in my server...

The items like paladin armor doesnt add + 2 dist.

</item>
<item id="8891" article="a" name="paladin armor">
<attribute key="description" value="It increases your distance skill by 2."/>
<attribute key="armor" value="12"/>
<attribute key="slotType" value="body"/>
<attribute key="weight" value="6500"/>
<attribute key="skillDist" value="2"/>
</item>

anyone can help me??

Now I need help with the news spellbooks because it dont add 1+ ml
 
Last edited:
you must add movements.xml part ;>
like
HTML:
<movevent event="Equip" itemid="8891" slot="armor" function="onEquipItem">
<movevent event="DeEquip" itemid="8891" slot="armor" function="onDeEquipItem"/>
 
<movevent event="Equip" fromid="8905" toid="8909" slot="left-hand" level="100" function="onEquipItem">
<vocation name="Sorcerer"/>
<vocation name="Master Sorcerer" showInDescription="0"/>
</movevent>
<movevent event="DeEquip" fromid="8905" toid="8909" slot="left-hand" function="onDeEquipItem"/>
<movevent event="Equip" fromid="8905" toid="8909" slot="right-hand" level="100" function="onEquipItem">
<vocation name="Sorcerer"/>
<vocation name="Master Sorcerer" showInDescription="0"/>
</movevent>
<movevent event="DeEquip" fromid="8905" toid="8909" slot="right-hand" function="onDeEquipItem"/>



but use id of your spell book, and add this part to movements.xml
 
Back
Top