Erro no compilar
#1

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
Reply
#2

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;
    }
Reply
#3

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 ..
Reply
#4

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 
Reply
#5

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


TAB resolve Tudo
Reply
#6

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

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

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");
            }
         
        }
Reply
#9

o warning continua

@@EDIT consegui u.u
Reply
#10

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;
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)