30.09.2009, 15:27
Код:
for(new i=0; i<MAX_PLAYERS; i++) { DisablePlayerCheckpoint(); }
for(new i=0; i<MAX_PLAYERS; i++) { DisablePlayerCheckpoint(); }
for(new i = 0; i < MAX_PLAYERS; i++)
{
DisablePlayerCheckpoint(i);
}
Originally Posted by SpiderPork
You haven't used any parameters in the function:
pawn Код:
|
for(new i = 0; i < MAX_PLAYERS; i++) { if(IsPlayerConnected(i)) { DisablePlayerCheckpoint(i); } }