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

Items regeneration problem

999109

New Member
Joined
Apr 28, 2009
Messages
42
Reaction score
0
Hello
My item regeneation works, but if i have my item that regenarts hp and mana and i log out and in it stop work so i need to take it off and put it on again. I want it to work even if i relog and that when im out of pz zone it gives me these hunting duration swords, i want to remove thoose to
Thanks in advance
script:
movements:
Code:
<movevent type="Equip" itemid="7884" slot="body" event="function" value="onEquipItem">
        <vocation id="1"/>
        <vocation id="5" showInDescription="0"/>
        <vocation id="2"/>
        <vocation id="6" showInDescription="0"/>
        <vocation id="3"/>
        <vocation id="7" showInDescription="0"/>
        <vocation id="4"/>
        <vocation id="8" showInDescription="0"/>
    </movevent>
    <movevent type="DeEquip" itemid="7884" slot="body" event="function" value="onDeEquipItem"/>

<movevent type="Equip" itemid="7885" slot="legs" event="function" value="onEquipItem">
        <vocation id="1"/>
        <vocation id="5" showInDescription="0"/>
        <vocation id="2"/>
        <vocation id="6" showInDescription="0"/>
        <vocation id="3"/>
        <vocation id="7" showInDescription="0"/>
        <vocation id="4"/>
        <vocation id="8" showInDescription="0"/>
    </movevent>
    <movevent type="DeEquip" itemid="7885" slot="legs" event="function" value="onDeEquipItem"/>

<movevent type="Equip" itemid="7886" slot="feet" event="function" value="onEquipItem">
        <vocation id="1"/>
        <vocation id="5" showInDescription="0"/>
        <vocation id="2"/>
        <vocation id="6" showInDescription="0"/>
        <vocation id="3"/>
        <vocation id="7" showInDescription="0"/>
        <vocation id="4"/>
        <vocation id="8" showInDescription="0"/>
    </movevent>
    <movevent type="DeEquip" itemid="7886" slot="feet" event="function" value="onDeEquipItem"/>

<movevent type="Equip" itemid="11296" slot="head" event="function" value="onEquipItem">
        <vocation id="1"/>
        <vocation id="5" showInDescription="0"/>
        <vocation id="2"/>
        <vocation id="6" showInDescription="0"/>
        <vocation id="3"/>
        <vocation id="7" showInDescription="0"/>
        <vocation id="4"/>
        <vocation id="8" showInDescription="0"/>
    </movevent>
    <movevent type="DeEquip" itemid="11296" slot="head" event="function" value="onDeEquipItem"/>

<movevent type="Equip" itemid="8905" slot="shield" event="function" value="onEquipItem">
        <vocation id="1"/>
        <vocation id="5" showInDescription="0"/>
        <vocation id="2"/>
        <vocation id="6" showInDescription="0"/>
        <vocation id="3"/>
        <vocation id="7" showInDescription="0"/>
        <vocation id="4"/>
        <vocation id="8" showInDescription="0"/>
    </movevent>
    <movevent type="DeEquip" itemid="8905" slot="shield" event="function" value="onDeEquipItem"/>


items.xml:
Code:
    <item id="7884" article="a" name="Donation Armor">
        <attribute key="weight" value="2250" />
        <attribute key="armor" value="51" />
        <attribute key="slotType" value="body" />
        <attribute key="absorbPercentEarth" value="5" />
           <attribute key="absorbPercentIce" value="5" />
           <attribute key="absorbPercentEnergy" value="5" />
           <attribute key="absorbPercentFire" value="5" />
           <attribute key="absorbPercentPoison" value="5" />
           <attribute key="healthGain" value="100" />
           <attribute key="healthTicks" value="500" />
           <attribute key="manaGain" value="100" />
           <attribute key="manaTicks" value="500" />
    </item>
    <item id="7885" name="Donation legs">
        <attribute key="weight" value="1900" />
        <attribute key="armor" value="8" />
        <attribute key="slotType" value="legs" />
        <attribute key="absorbPercentEarth" value="5" />
           <attribute key="absorbPercentIce" value="5" />
           <attribute key="absorbPercentEnergy" value="5" />
           <attribute key="absorbPercentFire" value="5" />
           <attribute key="absorbPercentPoison" value="5" />
           <attribute key="healthGain" value="100" />
           <attribute key="healthTicks" value="500" />
           <attribute key="manaGain" value="100" />
           <attribute key="manaTicks" value="500" />
    </item>
    <item id="7886" name="Donation boots">
        <attribute key="weight" value="750" />
        <attribute key="armor" value="2" />
        <attribute key="slotType" value="feet" />
        <attribute key="absorbPercentEarth" value="5" />
           <attribute key="absorbPercentIce" value="5" />
           <attribute key="absorbPercentEnergy" value="5" />
           <attribute key="absorbPercentFire" value="5" />
           <attribute key="absorbPercentPoison" value="5" />
           <attribute key="healthGain" value="100" />
           <attribute key="healthTicks" value="500" />
           <attribute key="manaGain" value="100" />
           <attribute key="manaTicks" value="500" />
    </item>
    <item id="11296" name="Donation helmet">
        <attribute key="armor" value="44" />
        <attribute key="slotType" value="head" />
        <attribute key="weight" value="2600" />
        <attribute key="absorbPercentEarth" value="5" />
           <attribute key="absorbPercentIce" value="5" />
           <attribute key="absorbPercentEnergy" value="5" />
           <attribute key="absorbPercentFire" value="5" />
           <attribute key="absorbPercentPoison" value="5" />
           <attribute key="healthGain" value="100" />
           <attribute key="healthTicks" value="500" />
           <attribute key="manaGain" value="100" />
           <attribute key="manaTicks" value="500" />
    </item>
    <item id="8905" article="a" name="Donation shield">
        <attribute key="weight" value="3900" />
        <attribute key="defense" value="97" />
        <attribute key="weaponType" value="shield" />
        <attribute key="absorbPercentEarth" value="5" />
           <attribute key="absorbPercentIce" value="5" />
           <attribute key="absorbPercentEnergy" value="5" />
           <attribute key="absorbPercentFire" value="5" />
           <attribute key="absorbPercentPoison" value="5" />
           <attribute key="healthGain" value="100" />
           <attribute key="healthTicks" value="500" />
           <attribute key="manaGain" value="100" />
           <attribute key="manaTicks" value="500" />
    </item>
    <item id="8912" article="a" name="Donation Rod">
        <attribute key="weight" value="2700" />
        <attribute key="weaponType" value="wand" />
        <attribute key="shootType" value="holy" />
        <attribute key="range" value="7" />
          <attribute key="attackspeed" value="200"/>
    </item>

16 viewes no help :/
 
Last edited by a moderator:
Back
Top