Quote:
Originally Posted by CuervO
for(new i = 0; i < MAX_PLAYERS; i++)
This means to repeat the code i amount of times as long as i is less than MAX_PLAYERS, beginning at i = 0 and i being an incremental number. MAX_PLAYERS is by default 500, anything inside that code will be repeated 500 times.
|
Oh, good thing I removed it then. That was a usless 500 repeat all this time then...