01.07.2014, 05:31
pawn Код:
for(new i=0; i < MAX_PLAYERS; i++) //Start the loop looping through all players
{
if(i != playerid) //Make sure the 'i' variable is NOT your playerid
{
//Do stuff here, your playerid will NOT be used between these brackets
}
}

