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

Linux Aol

Rev? Datapack?

Set all loss_items = 100, loss_container = 100, loss_equip~ = 100. in database too

and take a look on onprepareDeath~ in creatureevents.

and in items.xml look if its charges = 1 and if you do the aol with a god it can be 100 charges, do /i amulet of loss, 1
 
LUA:
function onPrepareDeath(cid, deathList)
	if getPlayerSlotItem(cid, CONST_SLOT_NECKLACE).itemid == 2196 then
    doCreatureSetDropLoot(cid, false)
    doRemoveItem(cid, uid)
       end
     return true
end
Test this one
 
Back
Top