OnNPCStreamIn

From Onset Developer Wiki
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
OnNPCStreamIn

Type: Event
Context: Server & Client
Introduced: v1.0

Description

The event thats called when a NPC is streamed for a player.

Syntax

OnNPCStreamIn(npc, player)
Client Syntax
OnNPCStreamIn(npc)

Parameters

  • npc
    The NPC identifier for the other player is streamed in.
  • player
    The player that streams in for npc.

Example

-- client side example
AddEvent("OnNPCStreamIn", function(npcid)
	SetNPCOutline(npcid, true)
end)

See also