25.11.2011, 19:32
Don't double post.
https://sampwiki.blast.hk/wiki/NPC:OnRecordingPlaybackEnd
Add: Kick();
Something like this: (Not tested)
Edit: Forum messed identitation up
https://sampwiki.blast.hk/wiki/NPC:OnRecordingPlaybackEnd
Add: Kick();
Something like this: (Not tested)
pawn Код:
public OnRecordingPlaybackEnd()
{
for(new i; i = 0; i++)
{
new name; //maybe new name[MAX_PLAYER_NAME];
GetPlayerName(i, name, MAX_PLAYER_NAME);
If(name == "Your Npc Name")
{
Kick(i);
}
}
}

