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

Lua Changing what a ring does/making a new ring?

Wat

New Member
Joined
Mar 14, 2009
Messages
77
Reaction score
0
Where would I be looking for these rings? I want to change the values of some, and make some new ones.
 
PHP:
	<item id="2216" article="a" name="ring of healing">
		<attribute key="weight" value="100"/>
		<attribute key="decayTo" value="0"/>
	<attribute key="transformDeEquipTo" value="2214"/>
		<attribute key="duration" value="480"/>
		<attribute key="healthGain" value="1"/>
		<attribute key="healthTicks" value="1000"/>
		<attribute key="manaGain" value="4"/>
		<attribute key="manaTicks" value="1000"/>
		<attribute key="showduration" value="1"/>


This is an example of a ring of healing when it is shining (being used)

<attribute key="duration" value="480"/> - the amount of time a ring of healing lasts, if you remove this line it will last forever

<attribute key="healthGain" value="1"/> -The amount of hp the player gets
<attribute key="healthTicks" value="1000"/> -every 1 sec? 2 sec? 1000= 1 sec , 2000 = 2 sec

<attribute key="manaGain" value="4"/> -- same as health but for mana
<attribute key="manaTicks" value="1000"/> same!


You can find this in your items.xml..

Yours,
Leiken
 
Back
Top