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

Specific vocs to wear an item

November

New Member
Joined
Dec 1, 2012
Messages
12
Reaction score
0
Hi! how do i make so for an example only knights can wear plate legs? i´ve tried for a while but can't manage to solve it. Help pls!
 
Last edited:
i have tried there but i rly cant get it to work. Would love a detalied explanation! :/
edit the itemid for the plate legs one
example:
Code:
    <movevent type="Equip" itemid="7885" slot="legs" level="40" event="function" value="onEquipItem">
        <vocation name="Knight"/>
        <vocation name="Elite Knight" showInDescription="0"/>
    </movevent>
    <movevent type="DeEquip" itemid="7885" slot="legs" event="function" value="onDeEquipItem"/>

if you want more vocations just add them

Code:
    <movevent type="Equip" itemid="7885" slot="legs" level="40" event="function" value="onEquipItem">
        <vocation name="Sorcerer"/>
        <vocation name="Master Sorcerer" showInDescription="0"/>
        <vocation name="Druid"/>
        <vocation name="Elder Druid" showInDescription="0"/>
    </movevent>
    <movevent type="DeEquip" itemid="7885" slot="legs" event="function" value="onDeEquipItem"/>
 
Last edited:
Back
Top