28.09.2012, 07:31
to stop use:
PauseRecordingPlayback();
to continue use:
ResumeRecordingPlayback();
pausing a singple NPC
i hope that helps
PauseRecordingPlayback();
to continue use:
ResumeRecordingPlayback();
pausing a singple NPC
pawn Код:
if(IsPlayerNpc(playerid))
{
new pName[MAX_PLAYER_NAME];
GetPlayerName(playerid, pName, sizeof(pName));
if(strcmp(pName, "Killer") == 0)
{
ResumeRecordingPlayback();
return 0;
}
}