<event type="preparedeath" name="Aol" script="aol.lua"/>
registerCreatureEvent(cid, "Aol")
function onPrepareDeath(cid, killer)
if getPlayerSlotItem(cid, CONST_SLOT_NECKLACE).itemid == 2173 then
doSetCreatureDropLoot(cid, false)
else
doSetCreatureDropLoot(cid, true)
end
return true
end