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

Guys can anyone give me a script ring that helas more mana and health

Take a look at how life ring works and add the same attributes to your rings (while worn and not):
Code:
	<item id="2168" article="a" name="life ring">
		<attribute key="weight" value="80"/>
		<attribute key="slotType" value="ring"/>
[B][COLOR="Red"]		<attribute key="transformEquipTo" value="2205"/>
		<attribute key="stopduration" value="1"/>
		<attribute key="showduration" value="1"/>[/COLOR][/B]
	</item>

...

	<item id="2205" article="a" name="life ring">
		<attribute key="weight" value="80"/>
		<attribute key="slotType" value="ring"/>
[B][COLOR="Red"]		<attribute key="decayTo" value="0"/>
		<attribute key="transformDeEquipTo" value="2168"/>
		<attribute key="duration" value="1200"/>
		<attribute key="healthGain" value="1"/>
		<attribute key="healthTicks" value="3000"/>
		<attribute key="manaGain" value="4"/>
		<attribute key="manaTicks" value="3000"/>
		<attribute key="showduration" value="1"/>[/COLOR][/B]
	</item>
 
Back
Top