function onDeath(cid, corpse, deathList)
if getPlayerSlotItem(cid, CONST_SLOT_NECKLACE).itemid == 2173 then
doCreatureSetStorage(cid, 1, 1)
end
return true
end
function onLogin(cid)
registerCreatureEvent('death')
if getCreatureStorage(cid, 1) == 1 then
doCreatureSetStorage(cid, 1)
doPlayerAddItem(cid, 3303, 1)
end
return true
end