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

Making Rings

swordman

Member
Joined
Jun 5, 2011
Messages
394
Reaction score
7
Hi,

I want to make new rings like +50 speed for 10 minutes.
Anyone know how to make?
where are the rings in the server folder?

repp+
 
Last edited:
yes just copie this in your items.xml and movements.xml


WHEN XXXX (YOUR RING ID) WHEN YYYY (ID RING WHEN IS NOT IN USE) WHEN ZZZZ (SPEED ADDED TO PLAYER)

ITEMS.XML
Code:
<item id="XXXX" article="a" name="YOUR RING NAME">
		<attribute key="weight" value="90" />
		<attribute key="slotType" value="ring" />
		<attribute key="transformEquipTo" value="YYYY" />
		<attribute key="stopduration" value="1" />
		<attribute key="showduration" value="1" />
	</item>

Code:
<item id="YYYY" article="a" name="YOUR RING NAME">
		<attribute key="weight" value="90" />
		<attribute key="slotType" value="ring" />
		<attribute key="decayTo" value="0" />
		<attribute key="transformDeEquipTo" value="XXXX" />
		<attribute key="duration" value="600" />
		<attribute key="showduration" value="1" />
		<attribute key="speed" value="ZZZZ" />
	</item>


MOVEMENTS.XML
Code:
<movevent type="Equip" itemid="XXXX" slot="ring" event="function" value="onEquipItem"/>
	<movevent type="Equip" itemid="YYYY" slot="ring" event="function" value="onEquipItem"/>
	<movevent type="DeEquip" itemid="YYYY" slot="ring" event="function" value="onDeEquipItem"/>

Edit: Missed Speed Value :D Srry Bad English
 
Last edited:
yes just copie this in your items.xml and movements.xml


WHEN XXX (YOUR RING ID) WHEN YYY (RING WHEN IS NOT IN USE)

ITEMS.XML
Code:
<item id="XXXX" article="a" name="your ring name">
		<attribute key="weight" value="90" />
		<attribute key="slotType" value="ring" />
		<attribute key="transformEquipTo" value="YYYY" />
		<attribute key="stopduration" value="1" />
		<attribute key="showduration" value="1" />
	</item>


MOVEMENTS.XML
Code:
<movevent type="Equip" itemid="XXXX" slot="ring" event="function" value="onEquipItem"/>
	<movevent type="Equip" itemid="YYYY" slot="ring" event="function" value="onEquipItem"/>
	<movevent type="DeEquip" itemid="YYYY" slot="ring" event="function" value="onDeEquipItem"/>

When I saw your avatar pic I just had to comment and give you kudos lmfao!!!
 
Back
Top