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

Aol Problem

Ceejzor

Murica Born N Raised!
Joined
Jul 5, 2008
Messages
2,293
Reaction score
188
Location
USA - Philippines
It's staying in necklace slot when dying but I'm dropping everything else, anybody have a solution to this? would be kinda appreciated plus repp <3
 
<item id="2173" article="an" name="amulet of loss">
<attribute key="weight" value="420"/>
<attribute key="slotType" value="necklace"/>

Replace with;

Lua:
<item id="2173" article="an" name="amulet of loss">
		<attribute key="weight" value="420"/>
		<attribute key="slotType" value="necklace"/>
		<attribute key="preventDrop" value="1"/>
	</item>

Well just add the;

Lua:
<attribute key="preventDrop" value="1"/>
line
 
I did that but then I get this error! What's up with it now?


Code:
[02/07/2009 15:07:45] Warning: [Items::loadFromXml] Unknown key value preventDrop
 
Back
Top