15.06.2010, 18:50
I tested some weeks ago and while loop was slower than for loop.
pawn Код:
new
i
;
while(i != MAX_PLAYERS)
{
// Your code inside the loop
i++;
}
pawn Код:
for(new i; i != MAX_PLAYERS; i++)
{
// Your code inside the loop
}