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

How do i make Forever AOL?

GoD Xenix

Xenix- Mapper & Creator
Joined
Aug 23, 2009
Messages
33
Reaction score
0
Hey, i know how to make everything else but the forever aol. any ideas?
 
hm would be another aol? i have one with another id...
<item id="2196" article="a" name="Forever Aol">
<attribute key="weight" value="420"/>
<attribute key="slotType" value="necklace"/>
<attribute key="charges" value="999999"/>
<attribute key="preventDrop" value="1"/>
 
<attribute key="charges" value="999999"/>
Do not do this.
It may lead you to ugly bugs, since it only allows up to 65k

Just do it
Code:
<attribute key="charges" value="60000"/>
I guess noone will die that much
 
hm would be another aol? i have one with another id...
<item id="2196" article="a" name="Forever Aol">
<attribute key="weight" value="420"/>
<attribute key="slotType" value="necklace"/>
<attribute key="charges" value="999999"/>
<attribute key="preventDrop" value="1"/>

i changed the 999999 to 60000 thanks, that helped.
 
Back
Top