• 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 royal spear, arrows and soft boots that never end?

zdzisek

New Member
Joined
Aug 30, 2009
Messages
48
Reaction score
0
What i need to change in royal spear, arrows and soft boots i want them to never end.thank you:)
 
for soft boots, edit items.xml and remove:
Code:
	<item id="2640" article="a" name="pair of soft boots">
		<attribute key="weight" value="800" />
		<attribute key="slotType" value="feet" />
[B][COLOR="red"]		<attribute key="decayTo" value="10021" />[/COLOR][/B]
		<attribute key="transformDeEquipTo" value="6132" />
[B][COLOR="red"]		<attribute key="duration" value="14400" />[/COLOR][/B]
		<attribute key="healthGain" value="1" />
		<attribute key="healthTicks" value="2000" />
		<attribute key="manaGain" value="2" />
		<attribute key="manaTicks" value="1000" />
[B][COLOR="red"]		<attribute key="showduration" value="1" />[/COLOR][/B]
	</item>
Code:
	<item id="6132" article="a" name="pair of soft boots">
		<attribute key="weight" value="800" />
		<attribute key="slotType" value="feet" />
		<attribute key="transformEquipTo" value="2640" />
[B][COLOR="red"]		<attribute key="stopduration" value="1" />
		<attribute key="showduration" value="1" />[/COLOR][/B]
	</item>
 
Back
Top