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

Problem with Items.xml (solved)

StormRusher

New Member
Joined
Dec 23, 2009
Messages
138
Reaction score
0
Well i am trying to make an indoor plant impossible to push, editing the items.xml but the id is in this position:

PHP:
</item>
	<item id="2100" name="god flowers">
		<attribute key="weight" value="1100"/>
	</item>
	<item id="2101" article="an" name="indoor plant"/>
	<item id="2102" article="a" name="flower bowl">
		<attribute key="weight" value="1100"/>
		<attribute key="allowpickupable" value="0"/>
		<attribute key="moveable" value="0"/>
	</item>
	<item id="2103" article="a" name="honey flower">
		<attribute key="weight" value="1000"/>
		<attribute key="allowpickupable" value="0"/>
		<attribute key="moveable" value="0"/>
	</item>

I tried to put in the next line the "<attribute key="moveable" value="0"/>", tried to put a new </item> after the line... without sucess

If someone know how to do that... :confused:
 
Last edited:
I guess you just forgot to remove the "/" in the end:
<item id="2101" article="an" name="indoor plant"/>

PHP:
</item>
    <item id="2100" name="god flowers">
        <attribute key="weight" value="1100"/>
    </item>
    <item id="2101" article="an" name="indoor plant">
        <attribute key="moveable" value="0"/>
    </item>
    <item id="2102" article="a" name="flower bowl">
        <attribute key="weight" value="1100"/>
        <attribute key="allowpickupable" value="0"/>
        <attribute key="moveable" value="0"/>
    </item>
    <item id="2103" article="a" name="honey flower">
        <attribute key="weight" value="1000"/>
        <attribute key="allowpickupable" value="0"/>
        <attribute key="moveable" value="0"/>
    </item>

:)
 
Back
Top