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

Solved Ring not healing

UpInSmoke

Supreme Ruler
Joined
Nov 16, 2008
Messages
303
Reaction score
21
Okay so i want to make my own healing ring ;)
So i chose the crystal ring.
now i changed it in items.xml and figured it would work but clearly it doesnt...
Code:
    <item id="2124" article="a" name="crystal ring">
        <attribute key="weight" value="90" />
        <attribute key="slotType" value="ring" />
        <attribute key="healthGain" value="50" />
        <attribute key="healthTicks" value="1000" />
        <attribute key="manaGain" value="50" />
        <attribute key="manaTicks" value="1000" />
    </item>
doesnt work and i dont know why :(
 
You need to add it in movements.xml as well.

Code:
  <movevent type="Equip" itemid="2124" slot="ring" event="function" value="onEquipItem"/>
  <movevent type="DeEquip" itemid="2124" slot="ring" event="function" value="onDeEquipItem"/>
 
Back
Top