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

Item not decay.

Beo

Three Magic
Joined
Aug 25, 2009
Messages
9,074
Solutions
1
Reaction score
857
How could I make soft boots so they dont decay?

LUA:
	<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="14400" />
		<attribute key="healthGain" value="20" />
		<attribute key="healthTicks" value="2000" />
		<attribute key="manaGain" value="40" />
		<attribute key="manaTicks" value="2000" />
		<attribute key="showduration" value="1" />
		<attribute key="showattributes" value="1" />
	</item>

Thanks.
 
LUA:
 <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="20" />
		<attribute key="healthTicks" value="2000" />
		<attribute key="manaGain" value="40" />
		<attribute key="manaTicks" value="2000" />
		<attribute key="showattributes" value="1" />
	</item>

:p
 
Back
Top