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

Solved Items.Xml

Big Gunz

Active Member
Joined
Nov 17, 2011
Messages
1,064
Reaction score
32
Location
United States
[12/11/2012 15:02:24] [Warning - Items::loadFromXml] Cannot load items file.
[12/11/2012 15:02:24] Line: 12208, Info: StartTag: invalid element name



okey so I get this error in my items.xml I already edited like 20 items I dont wanna changed I already edited like 29 items -.- can " invalid element name" I already checked all the items I edited and the elements are right how Can I find like 12208? ;d
 
Last edited by a moderator:
Open items.xml in notepad++ or some coding software and ctrl+g, I think there should be an option Goto line~

(I'm not sure, I don't script or anything. Don't h8)
 
Open items.xml in notepad++ or some coding software and ctrl+g, I think there should be an option Goto line~

(I'm not sure, I don't script or anything. Don't h8)

thank you peroxide :P


here is line 12208

Code:
</item>
	<item id="7429" article="a" name="Xykor Rod">
		<<attribute key="weight" value="2900" />
		<attribute key="weaponType" value="wand" />
		<attribute key="shootType" value="holy" />
		<attribute key="range" value="10" />

I dont see any errors xd
 
Replace
XML:
<item id="7429" article="a" name="Xykor Rod">
		<<attribute key="weight" value="2900" />
		<attribute key="weaponType" value="wand" />
		<attribute key="shootType" value="holy" />
		<attribute key="range" value="10" />

With this
XML:
<item id="7429" article="a" name="Xykor Rod">
		<attribute key="weight" value="2900" />
		<attribute key="weaponType" value="wand" />
		<attribute key="shootType" value="holy" />
		<attribute key="range" value="10" />

You had two of these "<<"
 
Replace
XML:
<item id="7429" article="a" name="Xykor Rod">
		<<attribute key="weight" value="2900" />
		<attribute key="weaponType" value="wand" />
		<attribute key="shootType" value="holy" />
		<attribute key="range" value="10" />

With this
XML:
<item id="7429" article="a" name="Xykor Rod">
		<attribute key="weight" value="2900" />
		<attribute key="weaponType" value="wand" />
		<attribute key="shootType" value="holy" />
		<attribute key="range" value="10" />

You had two <<



jaja xD! Epic Fail! Thank you Peroxide <3!
 
Back
Top