• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Solved How can i fix so firewalker boots is like soft boots?

Tarek

Premium User
Premium User
Joined
Jun 9, 2012
Messages
3,593
Solutions
4
Reaction score
1,183
Location
Sweden
GitHub
Taarek
How can i fix so firewalker boots is like soft boots? So they both regenate HP/MANA.
And the firewalker boots doesnt needs repair only soft boots! Would like to get help
 
Edit it in items.xml and add it into movements.xml
It should already be in movements since they're firewalker boots, but like @RosOT said, adding:
Code:
<attribute key="healthGain" value="3" />
        <attribute key="healthTicks" value="2000" />
        <attribute key="manaGain" value="5" />
        <attribute key="manaTicks" value="2000" />
into the items.xml should do the trick
 
Code:
<item id="9932" article="a" name="firewalker boots">
    <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="25" />
        <attribute key="healthTicks" value="1000" />
        <attribute key="manaGain" value="40" />
        <attribute key="manaTicks" value="1000" />
        <attribute key="showduration" value="1" />
        <attribute key="showattributes" value="1" />
  </item>
[code]
 
Code:
<item id="9932" article="a" name="firewalker boots">
    <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="25" />
        <attribute key="healthTicks" value="1000" />
        <attribute key="manaGain" value="40" />
        <attribute key="manaTicks" value="1000" />
        <attribute key="showduration" value="1" />
        <attribute key="showattributes" value="1" />
  </item>
[code]
After i added ur script and reloaded items the server crashed and i cant turn on the server anymore
 
Back
Top