18.01.2011, 14:21
Small example,
pawn Код:
new
exeption = someplayerid;// you would need to store the ignored players id in a var.
for(new i; i < MAX_PLAYERS; i++)//im not advising using this type of loop you should look at foreach.
{
if(exeption == i)continue;
else
{
//do stuff
}
}