12.03.2009, 15:09
Quote:
|
Originally Posted by Finn
This loop will stop when i is 45, so it means it stops at player id 45, which is 46th player, because 45 ids + id 0 = 46.
pawn Код:
Break stops just the loop, return stops the whole function. In this example "YAY" will not be printed, but if you used break instead of return, "YAY" would be printed. pawn Код:
|
Quote:
|
Originally Posted by ******63
First is because it has 'j++' that is same as 'j += 1' so every time it loop add 1 to variable 'j' - if that was your question
|

