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

Item issues:/

Samaster

Raptorserver.ddns.net
Joined
Jun 9, 2013
Messages
291
Reaction score
23
Location
UK
Hey guys, can anyone help me with some item problems i have..
I have made a donation necklace which has 100 aol charges.. but each time i die it goes down in chunks of charges?
And, i have made donation items with +skills but they dont work?

Help pls
 
lol to make your donation items work you have to add them to your movements.xml file

<movevent type="Equip" itemid="8871" slot="armor" event="function" value="onEquipItem">
<vocation id="1"/>
<vocation id="5" showInDescription="0"/>
<vocation id="2"/>
<vocation id="6" showInDescription="0"/>
</movevent>
<movevent type="DeEquip" itemid="8871" slot="armor" event="function" value="onDeEquipItem"/>

is how it will look. just change the id number to what items your using. hopefully from this you can figure out the rest of the armor
 
lol to make your donation items work you have to add them to your movements.xml file

<movevent type="Equip" itemid="8871" slot="armor" event="function" value="onEquipItem">
<vocation id="1"/>
<vocation id="5" showInDescription="0"/>
<vocation id="2"/>
<vocation id="6" showInDescription="0"/>
</movevent>
<movevent type="DeEquip" itemid="8871" slot="armor" event="function" value="onDeEquipItem"/>

is how it will look. just change the id number to what items your using. hopefully from this you can figure out the rest of the armor

Thank you:)
 
Back
Top