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

Items

neno

New Member
Joined
Dec 4, 2008
Messages
51
Reaction score
0
Anyone knows how to make a ring that gives 100 mana.
And the ring will never delete U can have it on all the time.. Anyone knows where or how to make this ring ?
 
gå in på servern gör /i soft boots /n soft boots 1

Beroende på vilken server du har.. sen ser du ITEM ID.. och så bläddrar du i items.xml.. allt ska stå i ordning "Sorterat efter ITEM ID"..

/Enxorix
 
Here's an example of a ring of healing:

in items.xml:
PHP:
	<item id="2214" article="a" name="ring of healing">
		<attribute key="weight" value="80"/>
		<attribute key="slotType" value="ring"/>
		<attribute key="transformEquipTo" value="2216"/>
		<attribute key="stopduration" value="1"/>
		<attribute key="showduration" value="1"/>
	</item>

	<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="7"/>
		<attribute key="healthTicks" value="3000"/>
		<attribute key="manaGain" value="25"/>
		<attribute key="manaTicks" value="3000"/>
		<attribute key="showduration" value="1"/>
	</item>

in movements.xml:
PHP:
	<movevent event="Equip" itemid="2214" slot="ring" function="onEquipItem"/>
	<movevent event="Equip" itemid="2216" slot="ring" function="onEquipItem"/>
	<movevent event="DeEquip" itemid="2216" slot="ring" function="onDeEquipItem"/>
 
Thx for the code.. But is it possible for ppl to find that ring. Is there a way to make a item, without someone killing someting and finds it?
 
Back
Top