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

where do I add a sword in movements.xml?

In movements.xml:

<movevent type="Equip" itemid="ITEM ID" slot="hand" event="function" value="onEquipItem"/>
<movevent type="DeEquip" itemid="SAME ID AS ABOVE" slot="hand" event="function" value="onDeEquipItem"/>
 
In movements.xml:

<movevent type="Equip" itemid="ITEM ID" slot="hand" event="function" value="onEquipItem"/>
<movevent type="DeEquip" itemid="SAME ID AS ABOVE" slot="hand" event="function" value="onDeEquipItem"/>
I think it should be like this
XML:
<movevent type="Equip" itemid="ITEM ID" slot="left-hand" event="function" value="onEquipItem"/>
<movevent type="DeEquip" itemid="SAME ID AS ABOVE" slot="left-hand" event="function" value="onDeEquipItem"/>
<movevent type="Equip" itemid="ITEM ID" slot="right-hand" event="function" value="onEquipItem"/>
<movevent type="DeEquip" itemid="SAME ID AS ABOVE" slot="right-hand" event="function" value="onDeEquipItem"/>
 
Back
Top