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

ML + movements bug!

Kristoffer

Web designer
Joined
Apr 15, 2009
Messages
83
Reaction score
3
Location
Norway
I cant fix my damn item... I made a donate robe with 5+ ml and it aint working that good.. If u switch it with another armor the ml will just be higher and higher..

My server is 8.62.. There gotto be a bug in movements!

Here is a video that shows the error
YouTube - Untitled

Code in movements.xml
Code:
	<movevent type="Equip" itemid="12607" slot="armor" event="function" value="onEquipItem">
		<vocation name="Master Sorcerer"/>
		<vocation name="Elder Druid"/>
	</movevent>

What is the problem? ;)
 
Thats the problem then, just add this (with ur line included)
XML:
<movevent type="Equip" itemid="12607" slot="armor" event="function" value="onEquipItem">
		<vocation name="Master Sorcerer"/>
		<vocation name="Elder Druid"/>
	</movevent>
<movevent type="DeEquip" itemid="12607" slot="armor" event="function" value="onDeEquipItem"/>

It should work now
 
Back
Top