fragreward.lua
local config = {item = 2152, count = 5, killers = 1}
function onDeath(creature, corpse, lasthitkiller)
for i = 1, config.killers do
doPlayerAddItem(lasthitkiller[i],config.item,config.count)
end
return true
end
creaturescripts.xml
<event type="death" name="Reward"...