18.04.2015, 19:43
Hello All!
Hwo to fix this Errors

Line 18410
Hwo to fix this Errors

Line 18410

if(CreatingRace[playerid])
{
RemoveCreateRaceSpawnPickups(playerid);
DisablePlayerRaceCheckpoint(playerid);
CreatingRace[playerid]=false;
SendLanguageMessage(playerid,COLOR_RACE," Du hast dein Rennen verworfen!"," You have cleared the race!");
TextDrawHideForPlayer(playerid, BOX_TopTime);
TextDrawHideForPlayer(playerid, BOX_5NameTopTime);
TextDrawHideForPlayer(playerid, TopTime);
TextDrawHideForPlayer(playerid, Class_TopTime[playerid]);
PlayerInfo[playerid][InRace] = 0;
return 1;
}
if(MinigamePlayerInfo[playerid][mRace][mJoined] == true)
{
new srv_string[256];
TextDrawShowForPlayer(playerid, BOX_TopTime);
TextDrawShowForPlayer(playerid, BOX_5NameTopTime);
TextDrawShowForPlayer(playerid, TopTime);
for(new i=0;i<5;i++)
{
format(srv_string, sizeof(srv_string), " {F3F781}%d. {01DFA5}%s {FA5858}-> {FFFFFF}%s", i+1, TopRaceDrivers[raceid][i], GetTimeAsStringEx(TopRaceTimes[raceid][i]));
TextDrawSetString(Class_TopTime, srv_string);
TextDrawShowForPlayer(playerid, Class_TopTime);
}
PlayerInfo[playerid][InRace] = 1;
}