28.08.2011, 08:55
Use a loop that goes through all players
pawn Code:
for( new i = 0; i < MAX_PLAYERS; i++ ) // Loop through all players
{
if( !IsPlayerConnected( i ) ) continue; // They're not connected, goto the next player slot (iteration)
SetPlayerRaceCheckpoint( i, ... ); // Set the checkpoint
}