OnNPCDeath
From Onset Developer Wiki
Description
Event thats called when a NPC dies.
Syntax
OnNPCDeath(npc, player)
Parameters
- npc
The npc that died. - player
Instigator, 0 if not killed by a player.
Example
AddEvent("OnNPCDeath", function(npcId, playerId)
if playerId != 0 then
-- If the death is inspected by a real player
end
end)