• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Windows Item Editor

blazzinn

New Member
Joined
Dec 24, 2012
Messages
68
Reaction score
1
Does Anyone know how to make Custom items Iv tried editing stuff in items.xml and it does work like i got this for a wand i wanna make and the wand doesnt work

<item id="7366" article="a" name="Enforced Star" plural="Enforced Stars">
<attribute key="weight" value="200" />
<attribute key="weaponType" value="wand" />
<attribute key="shootType" value="holy" />
<attribute key="range" value="10" />
<attribute key="maxHitChance" value="100" />
<attribute key="attack" value="100"



- - - Updated - - -

Bump
 
Last edited:
Remember to add or edit it in weapons.xml

Take a Snakebite Rod for example..

Code:
        <wand id="2182" level="7" mana="2" min="8" max="18" type="earth" function="default"> <!-- Snakebit Rod -->
                 <vocation name="Druid"/>
         </wand>
 
You also need to add it to weapons.xml, not only on items, or maybe also in movements.xml if you're creating a attribute item.
 
weapons.xml

<wand id="7735" level="100" mana="13" min="50" max="125" type="holy" event="function" value="default"> <!-- Wand of enforced -->
<vocation id="1"/>
<vocation id="2"/>


items.xml

<item id="7735" article="the" name="Enforced Wand">
<attribute key="description" value="Powerful" />
<attribute key="weight" value="2300" />
<attribute key="weaponType" value="wand" />
<attribute key="shootType" value="holy" />
<attribute key="attack" value="100" />
<attribute key="criticalHitChance" value="15" />
<attribute key="range" value="8" />
 
Could you please give this a try...

items.xml
Code:
	<item id="7735" name="Enforced Wand" article="a">
 		<attribute key="description" value="Powerful" />
 		<attribute key="weight" value="2300" />
 		<attribute key="weaponType" value="wand" />
 		<attribute key="shootType" value="holy" />
		<attribute key="criticalHitChance" value="15" />
 		<attribute key="range" value="8" />
	</item>

weapons.xml
Code:
	<wand id="7735" level="100" mana="13" min="50" max="125" type="holy" event="function" value="default"> <!-- Wand of enforced -->
		<vocation name="Druid"/>
		<vocation name="Elder Druid" showInDescription="0"/>
		<vocation name="Sorcerer"/>
		<vocation name="Master Sorcerer" showInDescription="0"/>
	</wand>
 
Back
Top