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

Health/Mana Ticks?

undead mage

Active Member
Joined
Mar 25, 2012
Messages
364
Solutions
2
Reaction score
47
Location
Amsterdam
Hi, I was wondering how the mana/health ticks work in items.xml like at soft boots

Code:
    <item id="2640" article="a" name="pair of soft boots (faster regeneration)">
        <attribute key="weight" value="800" />
        <attribute key="slotType" value="feet" />
        <attribute key="decayTo" value="10021" />
        <attribute key="transformDeEquipTo" value="6132" />
        <attribute key="duration" value="14400" />
        <attribute key="healthGain" value="10" />
        <attribute key="healthTicks" value="2000" />
        <attribute key="manaGain" value="20" />
        <attribute key="manaTicks" value="1000" />
        <attribute key="showduration" value="1" />
        <attribute key="showattributes" value="1" />
    </item>
 
Hi, I was wondering how the mana/health ticks work in items.xml like at soft boots

Code:
    <item id="2640" article="a" name="pair of soft boots (faster regeneration)">
        <attribute key="weight" value="800" />
        <attribute key="slotType" value="feet" />
        <attribute key="decayTo" value="10021" />
        <attribute key="transformDeEquipTo" value="6132" />
        <attribute key="duration" value="14400" />
        <attribute key="healthGain" value="10" />
        <attribute key="healthTicks" value="2000" />
        <attribute key="manaGain" value="20" />
        <attribute key="manaTicks" value="1000" />
        <attribute key="showduration" value="1" />
        <attribute key="showattributes" value="1" />
    </item>
health and mana ticks are the number of milliseconds between each mana/healthGain is added
for example:
Code:
        <attribute key="manaGain" value="30000" />
        <attribute key="manaTicks" value="1000" />
this would add 30,000 mana every 1000 ms (1 second)
 
health and mana ticks are the number of milliseconds between each mana/healthGain is added
for example:
Code:
        <attribute key="manaGain" value="30000" />
        <attribute key="manaTicks" value="1000" />
this would add 30,000 mana every 1000 ms (1 second)

Thank you for the explanation! So that means that these soft boots give 10x more hp then soft boots in real tibia right?
 
Real Tibia Softs:
Code:
<attribute key="duration" value="14400" />
<attribute key="healthGain" value="3" />
<attribute key="healthTicks" value="6000" />
<attribute key="manaGain" value="12" />
<attribute key="manaTicks" value="6000" />
duration is in seconds, ticks in miliseconds.
 
Back
Top