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

Forever aol dont work..?

Teddy

SweStream.se
Joined
Oct 2, 2008
Messages
3,797
Reaction score
10
Location
Sweden 172
Players drops this amulet like a normal AOL but dont all the time sometimes the players have it after death.

Code:
	<item id="11393" name="Forever amulet of loss">
		<attribute key="description" value="Protected by god!."/>
		<attribute key="weight" value="150"/>
		<attribute key="charges" value="200000"/>
<attribute key="preventDrop" value="1"/>
		<attribute key="charges" value="1" />
		<attribute key="preventDrop" value="1" />
		<attribute key="slotType" value="necklace"/>
	</item>
 
You listed <attribute key="preventDrop" value="1" /> twice.
I won't know if that caused the problem but. yeye.
btw. use lua tags
 
try:

<item id="11393" name="Forever amulet of loss">
<attribute key="description" value="Protected by god!."/>
<attribute key="weight" value="150"/>
<attribute key="charges" value="0"/>
<attribute key="preventDrop" value="1" />
<attribute key="slotType" value="necklace"/>
</item>
 
Back
Top