[Ajuda] 4 Erros
#1

Erros:
Code:
..\scriptfiles\Corridas\corrida.pwn(11) : warning 213: tag mismatch
..\scriptfiles\Corridas\corrida.pwn(11) : warning 213: tag mismatch
..\scriptfiles\Corridas\corrida.pwn(11) : warning 213: tag mismatch
..\scriptfiles\Corridas\corrida.pwn(22) : error 029: invalid expression, assumed zero
..\scriptfiles\Corridas\corrida.pwn(23) : error 001: expected token: ";", but found "{"
..\scriptfiles\Corridas\corrida.pwn(29) : warning 202: number of arguments does not match definition
..\scriptfiles\Corridas\corrida.pwn(29) : warning 202: number of arguments does not match definition
..\scriptfiles\Corridas\corrida.pwn(29) : warning 202: number of arguments does not match definition
..\scriptfiles\Corridas\corrida.pwn(36) : warning 225: unreachable code
..\scriptfiles\Corridas\corrida.pwn(36) : error 029: invalid expression, assumed zero
..\scriptfiles\Corridas\corrida.pwn(37) : error 001: expected token: ";", but found "{"
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


4 Errors.
Cуdigo
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 CheckPoints[1][3] =
{
    {
956.1308,-969.3929,38.4609}
};
new 
Player_CheckPoint[MAX_PLAYERS];
new 
bool:IsRaceRunning false;
new 
WinnerName[MAX_PLAYER_NAME];
new 
stringwin[64];
public 
OnGameModeInit()
{
    for(new 
0MAX_PLAYERSi++)
    {
        if(
IsPlayerConnected(i))
        {
            
Player_CheckPoint[i] = 0;
            
SetPlayerRaceCheckpoint(i,0,CheckPoints[0][0],CheckPoints[0][1],CheckPoints[0][2],9.7);
            
IsRaceRunning true;
        }
    }
    return 
1;
}
public 
OnPlayerEnterRaceCheckpoint(playerid)
{
    if(
IsRaceRunning == true) { Player_CheckPoint[playerid]++; }
    
    if(
Player_CheckPoint[playerid] == && IsRaceRunning == true)
    {
        for(new 
0MAX_PLAYERSi++)
        {
            
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;

Eu "chamei" o arquivo por meio de uma dialog:
PHP Code:
        case 2:
                {
            
#include "..\scriptfiles\Corridas\corrida.pwn"
                
}
                case 
3:
                {
                   
//Alguma coisa para o item 3
                   
return 1;
                } 
Nгo faзo ideia do que seja,se alguйm quiser me ajudar jб agradeзo
Meu discord: wooZ#0992
Reply


Messages In This Thread
4 Erros - by Noppet - 17.03.2019, 19:26
Re: 4 Erros - by Malandrin - 17.03.2019, 19:38
Re: 4 Erros - by Noppet - 17.03.2019, 19:59
Re: 4 Erros - by Malandrin - 17.03.2019, 20:23
Re: 4 Erros - by Noppet - 17.03.2019, 20:49
Re: 4 Erros - by Malandrin - 17.03.2019, 21:01
Re: 4 Erros - by Noppet - 17.03.2019, 21:04
Re: 4 Erros - by Malandrin - 17.03.2019, 22:06
Re: 4 Erros - by Noppet - 17.03.2019, 23:10

Forum Jump:


Users browsing this thread: 1 Guest(s)