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

magicpoints

HeberPcL

[PowerOT.com.br]
Joined
Aug 21, 2007
Messages
1,292
Reaction score
51
Location
Brazil
GitHub
heberpcl
The look of the item appears +7 magic points. However it does not add!
You see an Power Staff (magic level +7).
It weighs 75.00 oz.


items.xml
<item id="8928" article="an" name="Power Staff">
<attribute key="weight" value="7500"/>
<attribute key="magicpoints" value="7"/>
<attribute key="weaponType" value="shield"/>
</item>

Do you know why not work?
 
Try adding this in your movements.xml

Code:
<movevent event="Equip" itemid="8928" slot="right-hand" function="onEquipItem"/>
<movevent event="DeEquip" itemid="8928" slot="right-hand"
function="onDeEquipItem"/>

Change the 'slot' to where you'd like the item to be equipped when giving the magic levels.
 
Back
Top