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

What slot do i need to put for shields in movements.xml

mikeware

New Member
Joined
Jul 17, 2007
Messages
338
Reaction score
0
Location
Brazil
Hey
what slot name do I need to put for a shield in movements.xml???
I tryed shield, hand, hands, left, right, nothing works. =/
 
thats in items.xml, I want to know in movements.xml cuz the shield have some extra atributes. Oh, and in items.xml everything is right, but thanks for ur reply
 
K, I discovered the slot name for shields etc, its right-hand / left-hand, but now im with a new problem, the shield must work at the both hands and in movements.xml ill only work the last event I put, example:
Code:
<movevent event="Equip" itemid="x" slot="left-hand" function="onEquipItem"/>
	<movevent event="DeEquip" itemid="x" slot="left-hand" function="onDeEquipItem"/>
	<movevent event="Equip" itemid="x" slot="right-hand" function="onEquipItem"/>
	<movevent event="DeEquip" itemid="x" slot="right-hand" function="onDeEquipItem"/>
in this case the atributes of the shield ill only work properly on the right hand not at the left... there aren't a slotname for both hands?
 
Back
Top