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

Bugged Items

shawntio

Member
Joined
Apr 14, 2008
Messages
737
Reaction score
5
Location
sweden
Hi, i made a helmet that gives magic level +3 the first time it works when going to equip but when i dequip it i still have the +3 magic level i have added it to movements.xml
Code:
    <movevent type="Equip" itemid="2501" slot="head" event="function" value="onEquipItem">
	<vocation id="1"/>
	<vocation id="5" showInDescription="0"/>
	<vocation id="2"/>
	<vocation id="6" showInDescription="0"/>
	</movevent>
Please reply Thanks!
 
add this in movement
Code:
<movevent type="DeEquip" itemid="2501" slot="head" head="function" value="onDeEquipItem"/>
 
Still dont working :S
Code:
    <movevent type="Equip" itemid="2471" slot="head" event="function" value="onEquipItem">
    <movevent type="DeEquip" itemid="2471" slot="head" head="function" value="onDeEquipItem"/>
	<vocation id="4"/>
	<vocation id="8" showInDescription="0"/>
	</movevent>
 
Code:
<movevent type="Equip" itemid="2471" slot="head" event="function" value="onEquipItem">
	<vocation id="4"/>
	<vocation id="8" showInDescription="0"/>
</movevent>
<movevent type="DeEquip" itemid="2471" slot="head" head="function" value="onDeEquipItem"/>
 
Back
Top