• 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 Donations :o

Rossii

Member
Joined
Mar 27, 2012
Messages
366
Reaction score
6
Location
England
Image - TinyPic - Free Image Hosting, Photo Sharing & Video Hosting

there the error when i try to open the ot ^^


Code:
</item>
	<item id="2507" name="Alcosot Knight Legs">
		<attribute key="weight" value="4800" />
		<attribute key="armor" value="22" />
		<attribute key="slotType" value="legs" />
		<attribute key="skillSpeed" value="2" />

	    <attribute key="skillAxe" value="5" />
	<attribute key="skillSword" value="5"		
<attribute key="skillClub" value="5" />	</item>




Code:
<item id="2506" article="a" name="Alcosot Knight Helmet">
		<attribute key="weight" value="6000" />
		<attribute key="armor" value="12" />
		<attribute key="skillAxe" value="2" />
		<attribute key="skillSword" value="2" />		
                   <attribute key="skillClub" value="2" />		
             <attribute key="slotType" value="head" />







Code:
<item id="2505" article="an" name="Alcosot Knight Armor">
		<attribute key="weight" value="11400" />
		<attribute key="armor" value="27" />
		<attribute key="slotType" value="body" />
		<attribute key="skillAxe" value="5" />
	<attribute key="skillSword" value="5"		<attribute key="skillClub" value="5" />
 />
</item>

- - - Updated - - -

ANYBODY HELP PLEASE?! REP +
 
This is messed up:

XML:
<item id="2505" article="an" name="Alcosot Knight Armor">
		<attribute key="weight" value="11400" />
		<attribute key="armor" value="27" />
		<attribute key="slotType" value="body" />
		<attribute key="skillAxe" value="5" />
	<attribute key="skillSword" value="5"		<attribute key="skillClub" value="5" />
 />
</item>

Try this:

XML:
<item id="2505" article="an" name="Alcosot Knight Armor">
		<attribute key="weight" value="11400" />
		<attribute key="armor" value="27" />
		<attribute key="slotType" value="body" />
		<attribute key="skillAxe" value="5" />
	        <attribute key="skillSword" value="5"		
                <attribute key="skillClub" value="5" />
</item>

And this:

XML:
	<item id="2507" name="Alcosot Knight Legs">
		<attribute key="weight" value="4800" />
		<attribute key="armor" value="22" />
		<attribute key="slotType" value="legs" />
		<attribute key="skillSpeed" value="2" />

	    <attribute key="skillAxe" value="5" />
	<attribute key="skillSword" value="5"		
<attribute key="skillClub" value="5" />	</item>

to:

XML:
	<item id="2507" name="Alcosot Knight Legs">
		<attribute key="weight" value="4800" />
		<attribute key="armor" value="22" />
		<attribute key="slotType" value="legs" />
		<attribute key="skillSpeed" value="2" />
	        <attribute key="skillAxe" value="5" />
	        <attribute key="skillSword" value="5"		
                <attribute key="skillClub" value="5" />	
</item>
 
I've already helped him privately, changing the prefix to Solved.

@Loney, that wouldn't work anyway because you need to close the skillSword attribute. :p
 
Back
Top