10.07.2010, 18:58
While in a loop, "continue;" is used to skip to the next looped whatever it is. For example
That will skip i when it equals 5. And not execute the code for it.
pawn Код:
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(i == 5) continue;
{
//code here
}
}