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

Your First Open Tibia Server

anyone knows?
HP/mana gain for Soft Boots is in items.xml as zbizu mentioned above but you'll have to add the item to movements onEquip/onDeEquip like this
XML:
    <movevent event="Equip" itemid="6132" slot="feet" function="onEquipItem" />
    <movevent event="DeEquip" itemid="6132" slot="feet" function="onDeEquipItem" />
    <movevent event="Equip" itemid="2640" slot="feet" function="onEquipItem" />
    <movevent event="DeEquip" itemid="2640" slot="feet" function="onDeEquipItem" />
and if Soft Boots has no attributes then you'll have to add it by yourself like this
XML:
        <attribute key="healthGain" value="1" />
        <attribute key="healthTicks" value="2000" />
        <attribute key="manaGain" value="2" />
        <attribute key="manaTicks" value="1000" />
Ticks are the time and mana/health gain are the amount, So here its 1 health/2 seconds and 2 mana/1 second.
For the food you'll have to change in data\XML\vocations.xml for each vocation.
XML:
gainhpticks="2" gainhpamount="1" gainmanaticks="2" gainmanaamount="2"
Next time you should better create a Support thread so you get faster help.
 
Back
Top