10.12.2010, 18:41
Well you must know what is your npc ID and change playerid with NPCid
Maybe you will use something like these
Thats about kick
Maybe you will use something like these
pawn Код:
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);
}
}