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

XML How to edit items.xml ?

PHP:
	<item id="2305" article="a" name="firebomb rune">
		<attribute key="runeSpellName" value="adevo mas flam"/>
		<attribute key="weight" value="120"/>
		<attribute key="charges" value="2"/>
	</item>
	<item id="2306" article="a" name="spell rune">
		<attribute key="weight" value="120"/>
	</item>
	<item id="2307" article="a" name="spell rune">
		<attribute key="weight" value="120"/>
	</item>


2306 - is the item i want to change. I changed it to

PHP:
	<item id="2306" article="an" name="epic sd">
		<attribute key="weight" value="120"/>
	    <attribute key="charges" value="5"/>
</item>
 
Code:
      <item id="2306" article="an" name="epic sd">
        <attribute key="runeSpellName" value=""/>
        <attribute key="weight" value="120"/>
        <attribute key="charges" value="5"/> 
</item>

Try this.
 
Please copy and paste here the section that you edited, with its edits, including 2 items above it and 2 below it.
 
i suggest using NOTEPAD ++ to edit all .xml and lua files, be sure to save it in the proper format, when i screw around with the items.xml i try to be careful to not wreck anything
 
Back
Top