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

forever aol script requested

Zatacka

Mapper, Basic Scripter
Joined
May 12, 2009
Messages
222
Reaction score
15
Location
Sweden
can someone post a working forever aol script?

Solved
 
Last edited:
can someone post a working forever aol script?

go to items.xml search of amulet of loss it should look like this:
LUA:
	<item id="2173" article="an" name="amulet of loss">
		<attribute key="weight" value="420" />
		<attribute key="slotType" value="necklace" />
		<attribute key="charges" value="1" />
		<attribute key="preventDrop" value="1" />
	</item>

Then, you just have to remove the charges attribute, so it would look like this:
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>
 
Back
Top