Перейти к основному содержимому

ConnectNPC

Description

Connect an NPC to the server.

NameDescription
const name[]The name the NPC should connect as. Must follow the same rules as normal player names.
const script[]The NPC script name that is located in the npcmodes folder (without the .amx extension).

Returns

This function always return 1.

Examples

public OnGameModeInit()
{
ConnectNPC("[BOT]Pilot", "pilot");
return 1;
}

Notes

подсказка

NPCs do not have nametags. These can be scripted with Attach3DTextLabelToPlayer.

  • IsPlayerNPC: Check if a player is an NPC or an actual player.