15.11.2011, 02:48
PHP код:
for(new at = 0; at < MAX_PLAYERS; at++)
{
algumacoisa[at] = 1;
return 1;
}
Return dentro do loop! #FAIL
Esse funciona:
PHP код:
for(new i; i <= MAX_PLAYERS; i++) AlgumaCoisa[i] = 1; //Pronto!