16.01.2013, 17:18
Quote:
This is the 1st user ID possible
pawn Код:
pawn Код:
Thanks for answering. |
PHP код:
for(new i; i < MAX_PLAYERS; i++){
}
0 1 2 3 .. until 499
the new set the value for i only 0
you can define i also out of the loop
[php]new i;
PHP код:
for(; i < MAX_PLAYERS; i++){
PHP код:
#undef MAX_PLAYERS
#define MAX_PLAYERS 100
ok now we look at your for-loop
PHP код:
#define MIN_PLAYERID 0
new MAX_PLAYERS_CURRENT = 0;
PHP код:
for(; i < 0; i++){