IsPlayerNPC

From NPC for VCMP 0.4 Servers
Revision as of 16:34, 1 April 2022 by Habi (talk | contribs)
Jump to navigation Jump to search


Description:
Checks if a player is an NPC


Parameters:

(playerid)

playerid: The id of the player to be check.


Return Values:
*1 The player is an NPC

  • 0 The player is not an NPC


Example

function onPlayerJoin(player)
{
	if(IsPlayerNPC(player.ID))
		print("An NPC connected");
}

Related Functions

The following functions may be helpful as they relate to this function in one way or another.