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

Lua Itens .xml

GODPaaulo

New Member
Joined
Jun 3, 2011
Messages
64
Reaction score
0
When I open my distro appears the following error:
Code:
[16:13:43.607] [Warning - Items::loadFromXml] Unknown key value blocksolid
[16:13:43.607] [Warning - Items::loadFromXml] Unknown key value blocksolid
[16:13:43.617] [Warning - Items::loadFromXml] Duplicate registered item with id
2297

itens.xml

LUA:
	<item id="1497" article="a" name="magic wall">
		<attribute key="type" value="magicfield" />
		<attribute key="decayTo" value="0" />
		<attribute key="duration" value="20" />
		<attribute key="blocksolid" value="1" />
	</item>

	<item id="1499" article="a" name="rush wood">
		<attribute key="type" value="magicfield" />
		<attribute key="decayTo" value="0" />
		<attribute key="duration" value="45" />
		<attribute key="blocksolid" value="1" />
	</item>
what should I put here? <attribute key="??????" value="1" />
 
Just remove that line.
eg:
XML:
	<item id="1499" article="a" name="rush wood">
		<attribute key="type" value="magicfield" />
		<attribute key="decayTo" value="0" />
		<attribute key="duration" value="45" />
	</item>


Oh and go to your item with 2297 and remove one of the 2, because you currently have 2 of them.
 

Similar threads

Back
Top