12.07.2007, 17:21
Thank you very much for this FS 
I think that there is bug in a \'/racemode\' command:
should be

I think that there is bug in a \'/racemode\' command:
Code:
if(tempmode == 2 && BCurrentCheckpoints[b(playerid)] < 3)
{
SendClientMessage(playerid, COLOR_YELLOW, "Can\'t set racemode 2 on races with only 2 CPs. Changing to mode 1 instead.");
Bracemode[b(playerid)] = tempmode;
return 1;
}
Code:
if(tempmode == 2 && BCurrentCheckpoints[b(playerid)] < 3)
{
SendClientMessage(playerid, COLOR_YELLOW, "Can\'t set racemode 2 on races with only 2 CPs. Changing to mode 1 instead.");
Bracemode[b(playerid)] = 1;
return 1;
}

