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

Editing Items 8.6

Beo

Three Magic
Joined
Aug 25, 2009
Messages
9,074
Solutions
1
Reaction score
857
So I have been editing my items on my 8.6 server through items.xml

Though, nothing seems to change except the name?

Code:
	<item id="7735" article="a" name="spellwand">
		<attribute key="description" value="Its the wand from the gods." />
		<attribute key="weight" value="2900" />
		<attribute key="weaponType" value="wand" />
		<attribute key="shootType" value="energy" />
		<attribute key="range" value="7" />

Doesn't do anything, just makes me use my fists.

Code:
	<item id="11117" name="crystal boots">
		<attribute key="weight" value="800" />
		<attribute key="slotType" value="feet" />
		<attribute key="decayTo" value="11118" />
		<attribute key="transformDeEquipTo" value="11394" />
		<attribute key="duration" value="10000000" />
		<attribute key="healthGain" value="200" />
		<attribute key="healthTicks" value="2000" />
		<attribute key="manaGain" value="200" />
		<attribute key="manaTicks" value="2000" />
		<attribute key="showduration" value="1" />
		<attribute key="showattributes" value="1" />
	</item>

Also does nothing, just like normal boots.

I do not want a duration either.
Anyone has any idea?
Rep+

posted on the premium boards too, but i guess this is quicker
 
Thanks, I'll test now!

Edit; Worked!
Thanks to both of you :)

Last thing; I forgot to mention.

I add magic level to items, but they dont add them.

Code:
	<item id="11356" name="zaoan robe">
		<attribute key="armor" value="8" />
		<attribute key="slotType" value="body" />
		<attribute key="weight" value="2650" />
		<attribute key="magiclevelpoints" value="3" />
	</item>
 
Last edited by a moderator:
Back
Top