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

How to disable equip item for specific character

Lopaskurwa

Active Member
Joined
Oct 6, 2017
Messages
870
Solutions
2
Reaction score
49
TFS 1.2
Hello
How not to let quip specific item if you are not required vocation id. So lets say
Item:2320 can use only vocation 1,5,7,6 every other vocation cant quip/use them. Tried
Code:
<movevent event="Equip" itemid="13385" slot="left-hand" function="onEquipItem" />     <vocation id="10" />     <vocation id="63" />     <vocation id="64" />     <vocation id="65" />     <vocation id="66" />
Didnt worked tho.
 
You have error in your xml syntax xD

Code:
<movevent event="Equip" itemid="13385" slot="hand" function="onEquipItem">
        <vocation id="10" />
        <vocation id="63" /> 
        <vocation id="64" /> 
        <vocation id="65" /> 
        <vocation id="66" />
   </movevent>
 
You have error in your xml syntax xD

Code:
<movevent event="Equip" itemid="13385" slot="hand" function="onEquipItem">
        <vocation id="10" />
        <vocation id="63" />
        <vocation id="64" />
        <vocation id="65" />
        <vocation id="66" />
   </movevent>
Still doesn't work.
 
Back
Top