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

[8.20] MoveEvents - Item Slots

tarjei

Necronian Engineer
Joined
May 25, 2008
Messages
505
Reaction score
126
Location
Poland
PHP:
        <movevent event="DeEquip" itemid="8890" slot="armor" function="onDeEquipItem"/>

I want to ask you what is the name of slot where we are wearing weapons wands shields etc :pP
 
its 'Left-Hand' and 'Right-Hand' for hands

If you want it to work for both you have to do it twice.
PHP:
        <movevent event="DeEquip" itemid="8890" slot="right-hand" function="onDeEquipItem"/>
        <movevent event="DeEquip" itemid="8890" slot="left-hand" function="onDeEquipItem"/>
 
Back
Top