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

Create Items

Nofus

New Member
Joined
Jul 16, 2009
Messages
415
Reaction score
1
Hi guys I've got an Armonia 8.54 and i wonder how i can create items like VIP ManaRune or VIP UH , VIP SD, etc.. VIP Rod, Chest, helmet. and so on.

What program should i use? How do i do it? :S Someone explain please.
 
Here is an example of a special wand, in this case I will use item id 2184, Crystal Wand.

Open items.xml and search for 2184.
Mark from <item .......
to </item>
Paste this:
Code:
	<item id="2184" article="a" name="holy wand">
		<attribute key="description" value="It's filled with pure holyness."/>
		<attribute key="weight" value="2800"/>
		<attribute key="weaponType" value="wand"/>
		<attribute key="shootType" value="holy"/>
		<attribute key="range" value="7"/>
	</item>
Save.

Next, go to weapons/weapons.xml
At the end of the file, above </weapons>, write this code:
Code:
<!-- Special Wands -->
	
	<wand id="2184" level="150" mana="20" min="280" max="640" type="holy" event="function" value="default"> <!-- Crystal Wand -->
		<vocation id="1"/>
		<vocation id="2"/>
		<vocation id="5" showInDescription="0"/>
		<vocation id="6" showInDescription="0"/>
	</wand>
Save.
So, now you have a special wand that can be used by druids and sorcerers with level 150+. It shoots with holy damage and it can deal 280-640 dmg. It uses 20 mana/shot.
 
Back
Top