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

soft boots regain

Kip Magic

New Member
Joined
Feb 5, 2017
Messages
12
Reaction score
0
Im lookin for some help on how to make the soft boots regain mana and hp.

someone help me out?
 
Im lookin for some help on how to make the soft boots regain mana and hp.

someone help me out?

Guessing you have TFS 1.x since you didn't follow rule 5
Rules for the Support board

XML:
   <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="1" />
       <attribute key="healthTicks" value="2000" />
       <attribute key="manaGain" value="2" />
       <attribute key="manaTicks" value="1000" />
       <attribute key="showduration" value="1" />
       <attribute key="showattributes" value="1" />
   </item>

XML:
       <attribute key="healthGain" value="1" />
       <attribute key="healthTicks" value="2000" />
       <attribute key="manaGain" value="2" />
       <attribute key="manaTicks" value="1000" />

1 = points of health per interval
2 = points of mana per interval
1000 = interval (seconds, 1000 = 1 second etc)

It should already be added to items.xml (if it's another item, make sure to add it to movements.xml)
 
Back
Top