• 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 + Fire Walker Boots, infite.

Dylanaw

Godly Member
Joined
Feb 18, 2009
Messages
473
Reaction score
10
Hi there.

I'm using 8.6 TFS

I tried to create a soft boots wich won't decay.
Also i tried to create a Fire Walker boots wich is the same as Soft boots (that it regenerate mana+hp ) but also infite.
But i failed, the ones i make totaly failed so i got no use to them.

Could anyone else make it?
Or if u got it already could u post it?
(If u still want me to post the Soft boots + Fire Walker boots ill do it just say so)

Rep++


Thanks in Advance.
 
Try these:

Softboots:
Code:
	<item id="2640" article="a" name="pair of soft boots">
		<attribute key="weight" value="800"/>
		<attribute key="slotType" value="feet"/>
		<attribute key="transformDeEquipTo" value="6132"/>
		<attribute key="healthGain" value="1"/>
		<attribute key="healthTicks" value="2000"/>
		<attribute key="manaGain" value="2"/>
		<attribute key="manaTicks" value="1000"/>
	</item>
Firewalker Boots:
Code:
	<item id="9932" article="a" name="firewalker boots">
		<attribute key="description" value="Wearing these boots reduces the damage gotten from fiery ground."/>
		<attribute key="weight" value="950"/>
		<attribute key="armor" value="2"/>
		<attribute key="absorbpercentfirefield" value="90"/>
		<attribute key="reduceconditioncount" value="5"/>
		<attribute key="slotType" value="feet"/>
		<attribute key="transformDeEquipTo" value="9933"/>
	</item>

If you want it to add hp/mana like the soft just copy all the attr. Tell me if it works. :)
 
Dind't worked for me, i must have messed it up again.
Could u edit the Fire Walker boots, so i only have to put it in items.xml

When i tried it, both (soft + fwb) just gave an error like: You see an item blabla please report it to gamemaster
 
I just got done looking through google real quick and I saw no problems with what I did. But this is what I normally saw so here it is again.

Soft boots:

Code:
	<item id="2640" article="a" name="pair of soft 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="0"/>
		<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"/>
	</item>

Firewalker boots:
Code:
	<item id="9932" article="a" name="firewalker boots">
		<attribute key="description" value="Wearing these boots reduces the damage gotten from fiery ground."/>
		<attribute key="weight" value="950"/>
		<attribute key="armor" value="2"/>
		<attribute key="absorbpercentfirefield" value="90"/>
		<attribute key="reduceconditioncount" value="5"/>
		<attribute key="slotType" value="feet"/>
		<attribute key="decayTo" value="10022"/>
		<attribute key="transformDeEquipTo" value="9933"/>
		<attribute key="duration" value="0"/>
		<attribute key="showduration" value="1"/>
	</item>

Hopefully this works. Tell me if it does.
 
Back
Top