OnNPCDeath

From Onset Developer Wiki
Revision as of 07:08, 13 December 2019 by 28days (talk | contribs)
OnNPCDeath

Type: Event
Context: Server
Introduced: v1.0

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

<syntaxhighlight lang="Lua"> AddEvent("OnNPCDeath", function(npcId, playerId)

   if playerId != 0 then
       -- If the death is inspected by a real player
   end

end) <syntaxhighlight>

See also