20.07.2013, 14:22
To kick all
Thats an example of a loop, that will kick all players except RCON admin
pawn Код:
for(new i = 0; i < MAX_PLAYERS; i++) {
if(IsPlayerConnected(i) && (i != playerid) && i != IsPlayerAdmin(playerid))
{
Kick(i);
}