17.03.2019, 19:38
Testa e me diz os erros que continuaram...
PHP Code:
// This is a comment
// uncomment the line below if you want to write a filterscript
//#define FILTERSCRIPT
#include <a_samp>
#define winner_money 10000
new Float:CheckPoints[1][3] =
{
{956.1308,-969.3929,38.4609}
};
new
Player_CheckPoint[MAX_PLAYERS],
bool:IsRaceRunning,
WinnerName[MAX_PLAYER_NAME],
stringwin[64];
public OnGameModeInit()
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
Player_CheckPoint[i] = 0;
SetPlayerRaceCheckpoint(i, 0, CheckPoints[0][0], CheckPoints[0][1], CheckPoints[0][2], 0, 0, 0, 9.7); // No 0,0,0 vocк deverб colocar a cordenada do prуximo CP
IsRaceRunning = true;
}
return 1;
}
public OnPlayerEnterRaceCheckpoint(playerid)
{
if(IsRaceRunning == true) Player_CheckPoint[playerid]++;
if(Player_CheckPoint[playerid] == 0 && IsRaceRunning == true)
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
DisablePlayerRaceCheckpoint(i);
}
GetPlayerName(playerid,WinnerName,sizeof(WinnerName));
format(stringwin, sizeof(stringwin), "[RACE] The race is over, %s has won and achieved $%d!", WinnerName, winner_money);
SendClientMessageToAll(0xFF0000FF, stringwin);
GivePlayerMoney(playerid, winner_money);
IsRaceRunning = false;
return 1;
}
return 1;
}
PHP Code:
case 2:
{
SendRconCommand("reloadfs corrida");
}
case 3:
{
//....
}

