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

Amulet that never drops

Xaiman

New Member
Joined
Feb 27, 2010
Messages
94
Reaction score
0
AFF I cant get this to work! I have tried a million different things that i have found on the forums and none of them worked. This amulet doesnt drop on every death, its totally random. heres the script.

Code:
	<item id="2131" article="a" name="Godly Amulet">
		<attribute key="description" value="Godlike." />
		<attribute key="weight" value="420"/>
        <attribute key="slotType" value="necklace"/>
        <attribute key="preventDrop" value="-1"/>
		<attribute key="absorbPercentAll" value="20" />
	</item>

Idk how to make it not drop. I have tried this script and also with charges 99999 i have tried prevent drop 1 and prevent drop 0 idk what to do x.x
 
Code:
<item id="2131" article="an" name="Godly Amulet">
    <attribute key="weight" value="420" />
    <attribute key="slotType" value="necklace" />
    <attribute key="charges" value="1000000" />
    <attribute key="preventDrop" value="1" />
    <attribute key="absorbPercentAll" value="20" />

Try that m8 and tell me if it works :p
 
Last edited:
AFF I cant get this to work! I have tried a million different things that i have found on the forums and none of them worked. This amulet doesnt drop on every death, its totally random. heres the script.

Code:
	<item id="2131" article="a" name="Godly Amulet">
		<attribute key="description" value="Godlike." />
		<attribute key="weight" value="420"/>
        <attribute key="slotType" value="necklace"/>
        <attribute key="preventDrop" value="-1"/>
		<attribute key="absorbPercentAll" value="20" />
	</item>

Idk how to make it not drop. I have tried this script and also with charges 99999 i have tried prevent drop 1 and prevent drop 0 idk what to do x.x

<attribute key="preventDrop" value="-1"/>
change this to
<attribute key="preventDrop" value="1"/>
temme if it works
 
Code:
<item id="2131" article="an" name="Godly Amulet">
    <attribute key="weight" value="420" />
    <attribute key="slotType" value="necklace" />
    <attribute key="charges" value="1000000" />
    <attribute key="preventDrop" value="1" />
    <attribute key="absorbPercentAll" value="20" />

Try that m8 and tell me if it works :p

I dont understand. I put this in. Tested it with my char and it worked. Then i get a pm about a guy that lost his ammy. I checked all his chars and theres nothing. Hes not the only one either.
 
Well your problem was that you missunderstood:
<attribute key="preventDrop" value="1" />

It doesn't prevent the item to drop. It prevents everything but the the item to drop.
 
Back
Top