23.02.2018, 15:12
You can put new variable at OnPlayerEnterRaceCheckpoint , for example
Код:
new pickedcheckpoint[MAX_PLAYERS];
}
And OnPlayerEnterRaceCheckpoint, if(InRace[playerid] == 1) pickedcheckpoint[playerid] = 1;
//
for(new i=0; i < MAX_PLAYERS; i++)
{
if(InRace[i] == 1 && pickedcheckpoint[playerid] != 1) // changable
{
InRace[i] = 0;
SpawnPlayer(i);
}

