25.03.2013, 04:22
Use semi-colons, not commas! There's a BIG difference between the two, especially in programming!
should be:
pawn Code:
for(new i = 0, i < MAX_PLAYERS, i++)
pawn Code:
for(new i = 0; i < MAX_PLAYERS; i++)