SA-MP Forums Archive
Erro no compilar - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: Erro no compilar (/showthread.php?tid=361675)



Erro no compilar - brunoboy - 21.07.2012

Alguem sabe qual e o erro?

Codigo:
PHP код:
//==============================================================================
//                                   Bikes
//==============================================================================
    
if(dialogid == CARMENU+1// Bikes
    
{
        if(
response)
        {
            if(
listitem == 0// BF-400
            
{
            
CreateVehicleEx(playerid,581X,Y,Z+1Anglerandom(126), random(126), -1);
            }
            
            
ShowPlayerDialog(playeridCARMENUDIALOG_STYLE_LIST"Vehicle Selection Menu","Bikes""Select""Cancel");
            }
        }
        return 
1;
    } 
Erro:
PHP код:
C:\Users\Vitor\Desktop\CarMenu_v1.2\CarMenu_v1.2.pwn(68) : warning 217loose indentation
Pawn compiler 3.2.3664              Copyright 
(c1997-2006ITB CompuPhase
1 Warning

Linha 68:
PHP код:
        return 1



Re: Erro no compilar - OpeN. - 21.07.2012

pawn Код:
//==============================================================================
//                                   Bikes
//==============================================================================
    if(dialogid == CARMENU+1) // Bikes
    {
        if(response)
        {
            if(listitem == 0) // BF-400
            {
               CreateVehicleEx(playerid,581, X,Y,Z+1, Angle, random(126), random(126), -1);
            }
               ShowPlayerDialog(playerid, CARMENU, DIALOG_STYLE_LIST, "Vehicle Selection Menu","Bikes", "Select", "Cancel");
            }
        }
        return 1;
    }



Re: Erro no compilar - Lukinhas_Ice - 21.07.2012

pawn Код:
//==============================================================================
//                                   Bikes
//==============================================================================
if(dialogid == CARMENU+1)                         // Bikes
{
    if(response) {
        if(listitem == 0) {                       // BF-400

            CreateVehicleEx(playerid,581, X,Y,Z+1, Angle, random(126), random(126), -1);
        }

        ShowPlayerDialog(playerid, CARMENU, DIALOG_STYLE_LIST, "Vehicle Selection Menu","Bikes", "Select", "Cancel");
    }
}


return 1;
}
Troca o teu pelo que eu coloquei, o cуdigo estava mal identado ..


Re : Erro no compilar - brunoboy - 21.07.2012

Tem um novo
Erro:
PHP код:
C:\Users\Vitor\Desktop\CarMenu_v1.2\CarMenu_v1.2.pwn(46) : warning 217loose indentation
Pawn compiler 3.2.3664              Copyright 
(c1997-2006ITB CompuPhase
1 Warning

Linha 46:
PHP код:
if(dialogid == CARMENU+1// Bikes 



Re: Erro no compilar - WaGnerLiima - 21.07.2012

Nao й erro,й aviso,motivo: mб indentaзao.


TAB resolve Tudo


Re : Erro no compilar - brunoboy - 21.07.2012

COmo assim ma identaзгo e o que quis dizer com "TAB resolve tudo?"


Re: Re : Erro no compilar - @Riichard - 21.07.2012

Quote:
Originally Posted by brunoboy
Посмотреть сообщение
COmo assim ma identaзгo e o que quis dizer com "TAB resolve tudo?"
Posta a public "OnPlayerDialogResponse" completa.


Re: Erro no compilar - Arthenry - 21.07.2012

Tenta assim:
pawn Код:
//==============================================================================
//                                   Bikes
//==============================================================================
    if(dialogid == CARMENU+1) // Bikes
    {
        if(response)
        {
            if(listitem == 0) // BF-400
            {

            CreateVehicleEx(playerid,581, X,Y,Z+1, Angle, random(126), random(126), -1);
            }
             
            ShowPlayerDialog(playerid, CARMENU, DIALOG_STYLE_LIST, "Vehicle Selection Menu","Bikes", "Select", "Cancel");
            }
         
        }



Re : Erro no compilar - brunoboy - 21.07.2012

o warning continua

@@EDIT consegui u.u


Re: Erro no compilar - sanalex - 21.07.2012

Sу eu mermo

pawn Код:
if(dialogid == CARMENU+1) // Bikes
{
    if(response)
    {
        if(listitem == 0) // BF-400
        {
            CreateVehicleEx(playerid,581, X,Y,Z+1, Angle, random(126), random(126), -1);
        }
        ShowPlayerDialog(playerid, CARMENU, DIALOG_STYLE_LIST, "Vehicle Selection Menu","Bikes", "Select", "Cancel");
        }
    }
    return 1;
}