04.03.2015, 13:22
Quote:
Your mistake is : if(i > MAX_PLAYERS)
should be if(i < MAX_PLAYERS) I guess |
if(i < MAX_PLAYERS) goto loop_stop = if I is smaller than MAX PLAYERS go to label called loop stop.
You are incorrect sadly.
I dont need to 'break' it as I send the code to somewhere else and it should STOP counting when it reaches MAX PLAYERS, but it don't.