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

infinite AOL

tnecniiv

scripter to be
Joined
Jan 6, 2012
Messages
298
Solutions
3
Reaction score
25
hey guys i was wondering it there was a way to get an infinite aol on a different item like on a different amulet.
 
have you already looked in your Sourcode ?

Go to lua.cpp

search for


Code:
    setFieldBool(L, "preventLoss", item->abilities.preventLoss);
    setFieldBool(L, "preventDrop", item->abilities.preventDrop);
 
1. Attribute preventDrop in TFS isn't a normal attribute and will work ONLY with AoL item ID (2173). Think is a bug, what wasn't repaired from 8.5x
2. If you'd like to make an another amulet/item what will work like a AoL you have to make an movement script written by Imfreezing.
 
IN your movements put this

<movevent type="Equip" itemid="NECKLACE ID" slot="necklace" event="function" value="onEquipItem"/>
<movevent type="DeEquip" itemid="NECKLACE ID" slot="necklace" event="function" value="onDeEquipItem"/>
 
Back
Top