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

Donate boots gain mana after deequip

dunnish

New Member
Joined
Jun 18, 2009
Messages
268
Solutions
1
Reaction score
2
Hello!

when i equip my donate boots its start gain man and hp but when i put them off its still gain mana and hp to i relog anyone know why?

items.xml
Code:
<item id="2358" name="Donate Boots">
        <attribute key="weight" value="1200" />
        <attribute key="slotType" value="feet" />
        <attribute key="healthGain" value="60" />
        <attribute key="healthTicks" value="2000" />
        <attribute key="manaGain" value="60" />
        <attribute key="manaTicks" value="1000" />
        <attribute key="speed" value="60" />
        <attribute key="description" value="Melhor Boots" />
        <attribute key="showattributes" value="1" />
    </item>

Movements.xml
Code:
    <movement type="Equip" itemid="2358" slot="feet" level="30" event="function" value="onEquipItem">
    <movement type="DeEquip" itemid="2358" slot="feet" event="function" value="onDeEquipItem"/>
        <vocation name="Master Sorcerer"/>
        <vocation name="Elder Druid"/>
        <vocation name="Elite Knight"/>
        <vocation name="Royal Paladin"/>
        <vocation name="Epic Master Sorcerer"/>
        <vocation name="Epic Elder Druid"/>
        <vocation name="Epic Elite Knight"/>
        <vocation name="Epic Royal Paladin"/>
    </movement>
 
Solution
insightful

XML:
    <movement type="Equip" itemid="2358" slot="feet" level="30" event="function" value="onEquipItem">
        <vocation name="Master Sorcerer"/>
        <vocation name="Elder Druid"/>
        <vocation name="Elite Knight"/>
        <vocation name="Royal Paladin"/>
        <vocation name="Epic Master Sorcerer"/>
        <vocation name="Epic Elder Druid"/>
        <vocation name="Epic Elite Knight"/>
        <vocation name="Epic Royal Paladin"/>
    </movement>
    <movement type="DeEquip" itemid="2358" slot="feet" event="function" value="onDeEquipItem"/>
insightful

XML:
    <movement type="Equip" itemid="2358" slot="feet" level="30" event="function" value="onEquipItem">
        <vocation name="Master Sorcerer"/>
        <vocation name="Elder Druid"/>
        <vocation name="Elite Knight"/>
        <vocation name="Royal Paladin"/>
        <vocation name="Epic Master Sorcerer"/>
        <vocation name="Epic Elder Druid"/>
        <vocation name="Epic Elite Knight"/>
        <vocation name="Epic Royal Paladin"/>
    </movement>
    <movement type="DeEquip" itemid="2358" slot="feet" event="function" value="onDeEquipItem"/>
 
Solution
Back
Top