23.02.2018, 15:00
Example:
Код:
Racestarted = 1;
if(Racestarted == 1)
{
SetTimer("racestop", 30000, false);
}
forward racestop();
public racestop()
{
for(new i=0; i < MAX_PLAYERS; i++)
{
if(InRace[i] == 1)
{
SpawnPlayer(i);
InRace[i] = 0;
RaceStarted = 0;
// you can add more things depends on the values you changed for players whom are in race
}
}
return 1;
}

