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

Regeneration Bug

Deepling

Just a spammer
Joined
Jun 29, 2015
Messages
1,835
Solutions
1
Reaction score
555
Location
Poland
Hello!
My shield with regeneration isn't giving me mana :(


Code:
<item id="2542" article="a" name="tempest shield (faster regeneration)">
        <attribute key="weight" value="5100" />
        <attribute key="defense" value="36" />
        <attribute key="weaponType" value="shield" />
        <attribute key="healthGain" value="2" />
        <attribute key="healthTicks" value="1000" />
        <attribute key="manaGain" value="2" />
        <attribute key="manaTicks" value="1000" />
        <attribute key="showattributes" value="1" />
    </item>

Could anyone help me to fix it? :(
 
Add the following tags to your data/movements/movements.xml file:
Code:
<movevent event="Equip" itemid="2542" slot="shield" level="75" function="onEquipItem">
    <vocation name="Knight" />
    <vocation name="Elite Knight" showInDescription="0" />
    <vocation name="Paladin" />
    <vocation name="Royal Paladin" showInDescription="0" />
</movevent>
<movevent event="DeEquip" itemid="2542" slot="shield" function="onDeEquipItem" />

Remember to change the level and vocation required to properly wield the shield.
 
Back
Top