IsNPCStreamedIn

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.
IsNPCStreamedIn

Type: Function
Context: Server
Introduced: v1.0

Description

Checks if stated NPC is streamed in for the player

Syntax

IsNPCStreamedIn(player, npc)

Parameters

  • player
    Player which you want to check
  • npc
    NPC which you want to check

Return Value

  • Returns true on success.

Example

function npcCheck(player)
   local x, y, z = GetPlayerLocation(player)
   local npc = CreateNPC(1, x, y, z, 0)

   if IsNPCStreamedIn(player, npc) then
      AddPlayerChat('npc has been created and streamed in')
   end
end


See also