16.07.2012, 20:50
in your /goto cmd
make a variable/bool check like
in order to use it you will need to do this
make a variable/bool check like
pawn Код:
if(IsPlayerInRace[playerid]==true) return //Player in the race
pawn Код:
//at the top
new IsPlayerInRace[MAX_PLAYERS];
//then when player enters the race add:
IsPlayerInRace[playerid]=1; //or "false" if using bool
//when the player leaves"
IsPlayerInRace[playerid]=0; //or "false" if using bool