19.01.2011, 00:19
Your looping through all players.
Basicly you need something to check if the players are admin
pawn Код:
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(GetPVarInt(i, "Admin") > 0)
{
//code
}
}