02.02.2014, 06:56
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.
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.