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

Items, Tags?

Well first check if yours items has that attributes, by opening items.xml, form data/items folder. Keep this file opened, because you need the id of those items for the next move. I recommend you to open it with notepad++, because that text editor has search function(CTRL+F)
Than, go to movements folder, and open the XML file with notepad++
Now for each item add this code on movements xml file:
Code:
<movevent event="Equip" itemid="XXX" slot="[COLOR="Red"]left-hand[/COLOR]" function="onEquipItem" />
<movevent event="DeEquip" itemid="XXXX" slot="[COLOR="Red"]left-hand[/COLOR]" function="onDeEquipItem" />
you can change left-hand with right hand.
For each item you have to do the same thing
And as i always say, Do not save the xml files while server is running!
 
I know what is slots and I must add to movement but 1 item must be to one slot...
 
Back
Top