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

Help with items

oponente2

New Member
Joined
Nov 11, 2012
Messages
8
Reaction score
0
Hey, im making my Ot, and editing donator items, but i have a problem, on knight legs and helmet, i put them to give +5 sword, axe and club
Like this:
<attribute key="skillSword" value="5" />
<attribute key="skillAxe" value="5" />
<attribute key="skillClub" value="5" />

Save it, but when i enter in my server and wear it nothing happened, it gives +0 sword, axe, club
Any idea? Help me please
 
It's something like this.

XML:
    <movevent type="Equip" itemid="ITEM_ID" slot="legs" event="function" value="onEquipItem">
        <vocation id="4"/>
        <vocation id="8" showInDescription="0"/>
    </movevent>
    <movevent type="DeEquip" itemid="ITEM_ID" slot="legs" event="function" value="onDeEquipItem"/>
 
Back
Top