04.03.2015, 13:26
Quote:
Code:
new count; for(new i=0; i<MAX_PLAYERS; i++) { if(!IsPlayerConnected(i)) continue; count++; } |
You are making things complicated for nothing, What you are doing is pointless
Code:
new count; for(new i=0; i<MAX_PLAYERS; i++) { if(!IsPlayerConnected(i)) continue; count++; if(something) // code else(something) // code }