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

Skull Forever AOL

Gazzy

Server Owner
Joined
Sep 25, 2013
Messages
55
Reaction score
3
Hey guys!
I'm looking for a script for a Forever AOL that protects your items like an AOL even when you are skulled (red/black) and that never runs out. I'm using The Forgotten Server - Version 0.2.15 (Mystic Spirit).
Thanks!
 
creaturescripts.xml
Code:
<event type="preparedeath" name="Aol" script="aol.lua"/>

login.lua
Code:
registerCreatureEvent(cid, "Aol")

aol.lua
Code:
function onPrepareDeath(cid, killer)

     if getPlayerSlotItem(cid, CONST_SLOT_NECKLACE).itemid == 2173 then
         doSetCreatureDropLoot(cid, false)
     else
         doSetCreatureDropLoot(cid, true)
     end
     return true
end
 
Limos!, there is a problem!
When i wear the amulet it works and nothing fell, but when i don't wear it, "Nothing Fell" too!
Please, i've tryied to fix it but i couldn't.
 
Back
Top