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

Windows Search firewalker boots | Help me please TFS 0.3.6

Firewalker Boots is kinda advanced, since not all required functions of TFS are working which makes the scripting limited for that boots. I think only few people got a working one and won't release it.
 
What do you want your firewalker boots to do?
Like gives mana/hp or wat?
try this if you want it to give mana/hp
Code:
	<item id="9933" 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="slotType" value="feet"/>
		<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"/>
	</item>
 
Hi, need scipt on firewalekr boots quest, help me plx, thanks


Paste this in Items and you have it :) rep if i helped!

PHP:
	<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="slotType" value="feet" />
		<attribute key="absorbPercentFire" value="90" />
		<attribute key="decayTo" value="10022" />
		<attribute key="transformDeEquipTo" value="9933" />
		<attribute key="duration" value="3600" />
		<attribute key="showduration" value="1" />
	</item>
 
Back
Top