[Ajuda] Warning Irritante
#1

No caso o warning й essa na print: http://imgur.com/a/aHArm
C:\Users\USER\Desktop\GM NWD 1\gamemodes\PF.pwn(47683) : warning 217: loose indentation
~~~~~~~~~~~~~~~~~~
IP : 198.50.195.143:7794 Sua diversгo com o Pй direito!
Reply
#2

Use tabulador de codigos da iPs Team
http://tabulador.medianewsonline.com/
Reply
#3

Manda o code q eu resolvo
Reply
#4

code bro
Reply
#5

if( !strcmp( cmd, "/veiculo", true ))
{
if( !IsPlayerInAnyVehicle( playerid ))
{
SendClientMessage( playerid, COLOR_ERRO, "[ x ] Vocк nгo estб em um veнculo !" );
return 1;
}
ShowPlayerDialog(playerid, VEICULO_CMDS, DIALOG_STYLE_LIST, "» Seu Veiculo","» Trancar\n» Destrancar\n» Farol Ligado\n» Farol Desligado","Selecionar","Cancelar");
SendClientMessage(playerid, COLOR_AMARELO, "» Mais opзхes estгo sendo feitas.. Aguarde!");
return 1;
} // Linha do comando
// ----------------------------------------------------------------------------------------------- //
if(dialogid == VEICULO_CMDS)
{
if(response)
{
if(listitem == 0)
{
new
v = GetPlayerVehicleID( playerid )
;
new
Float:i_x, Float:i_y, Float:i_z
;
GetPlayerPos( playerid, i_x, i_y, i_z );
{
foreach(Player, i )
{
if( i != playerid )
{
SetVehicleParamsForPlayer( v, i, 0, 1 );
}
}
SendClientMessage(playerid, COLOR_AMARELO,"| INFO | Veнculo trancado!");
return 1;
}
}
if(listitem == 1)
{
foreach(Player, i )
{
SetVehicleParamsForPlayer( playerid, i, 0, 0 );
}
SendClientMessage( playerid, COLOR_AMARELO, "| INFO | Veнculo destrancado!" );
//PlayerPlaySound( playerid, 1056, i_x, i_y, i_z );
return 1;
} // Trancar veiculo ou destrancar .
}
if(listitem == 2) // aqui a linha do warning .
{
new mot, lu, alar, por, cap, porma, ob;
new carroa = GetPlayerVehicleID( playerid );
if( carroa != INVALID_VEHICLE_ID )
{
GetVehicleParamsEx( carroa, mot, lu, alar, por, cap, porma, ob );
SetVehicleParamsEx( carroa, mot, VEHICLE_PARAMS_ON, alar, por, cap, porma, ob );
SendClientMessage( playerid, COLOR_SISTEMA, "| INFO | Farol Ligado com sucesso!" );
//return 1;
}
}
if(listitem == 3)
{
new mot, lu, alar, por, cap, porma, ob;
new carroa = GetPlayerVehicleID( playerid );
if( carroa != INVALID_VEHICLE_ID )
{
GetVehicleParamsEx( carroa, mot, lu, alar, por, cap, porma, ob );
SetVehicleParamsEx( carroa, mot, VEHICLE_PARAMS_OFF, alar, por, cap, porma, ob );
SendClientMessage( playerid, COLOR_SISTEMA, "| INFO | Farol desligado com sucesso!" );
return 1;
}
}
}
Reply
#6

coloque entre [ PHP] ...code... [ /PHP]!
Reply
#7

Troque por esse:
PHP код:
if( !strcmpcmd"/veiculo"true ))
{
    if( !
IsPlayerInAnyVehicleplayerid ))
    {
        
SendClientMessageplayeridCOLOR_ERRO"[ x ] Vocк nгo estб em um veнculo !" );
        return 
1;
    }
    
ShowPlayerDialog(playeridVEICULO_CMDSDIALOG_STYLE_LIST"» Seu Veiculo","» Trancar\n» Destrancar\n» Farol Ligado\n» Farol Desligado","Selecionar","Cancelar");
    
SendClientMessage(playeridCOLOR_AMARELO"» Mais opзхes estгo sendo feitas.. Aguarde!");
    return 
1;
// Linha do comando
// ----------------------------------------------------------------------------------------------- //
if(dialogid == VEICULO_CMDS)
{
    if(
response)
    {
        if(
listitem == 0)
        {
            new
            
GetPlayerVehicleIDplayerid )
            ;
            new
            
Float:i_xFloat:i_yFloat:i_z
            
;
            
GetPlayerPosplayeridi_xi_yi_z );
            {
                foreach(
Player)
                {
                    if( 
!= playerid )
                    {
                        
SetVehicleParamsForPlayervi0);
                    }
                }
                
SendClientMessage(playeridCOLOR_AMARELO,"| INFO | Veнculo trancado!");
                return 
1;
            }
        }
        if(
listitem == 1)
        {
            foreach(
Player)
            {
                
SetVehicleParamsForPlayerplayeridi0);
            }
            
SendClientMessageplayeridCOLOR_AMARELO"| INFO | Veнculo destrancado!" );
            
//PlayerPlaySound( playerid, 1056, i_x, i_y, i_z );
            
return 1;
        } 
// Trancar veiculo ou destrancar .
        
if(listitem == 2// aqui a linha do warning .
        
{
            new 
motlualarporcappormaob;
            new 
carroa GetPlayerVehicleIDplayerid );
            if( 
carroa != INVALID_VEHICLE_ID )
            {
                
GetVehicleParamsExcarroamotlualarporcappormaob );
                
SetVehicleParamsExcarroamotVEHICLE_PARAMS_ONalarporcappormaob );
                
SendClientMessageplayeridCOLOR_SISTEMA"| INFO | Farol Ligado com sucesso!" );
                
//return 1;
            
}
        }
        if(
listitem == 3)
        {
            new 
motlualarporcappormaob;
            new 
carroa GetPlayerVehicleIDplayerid );
            if( 
carroa != INVALID_VEHICLE_ID )
            {
                
GetVehicleParamsExcarroamotlualarporcappormaob );
                
SetVehicleParamsExcarroamotVEHICLE_PARAMS_OFFalarporcappormaob );
                
SendClientMessageplayeridCOLOR_SISTEMA"| INFO | Farol desligado com sucesso!" );
                return 
1;
            }
        }
    }

@Edit
Quote:
Originally Posted by Whoo
Посмотреть сообщение
FallweN o erro vai persistir repare que o if(listitem == 2) esta fora do response
Vdd vlw por avisar, atualizado.
Reply
#8

FallweN o erro vai persistir repare que o if(listitem == 2) esta fora do response
Reply
#9

Quote:
Originally Posted by FallweN
Посмотреть сообщение
Troque por esse:
PHP код:
if( !strcmpcmd"/veiculo"true ))
{
    if( !
IsPlayerInAnyVehicleplayerid ))
    {
        
SendClientMessageplayeridCOLOR_ERRO"[ x ] Vocк nгo estб em um veнculo !" );
        return 
1;
    }
    
ShowPlayerDialog(playeridVEICULO_CMDSDIALOG_STYLE_LIST"» Seu Veiculo","» Trancar\n» Destrancar\n» Farol Ligado\n» Farol Desligado","Selecionar","Cancelar");
    
SendClientMessage(playeridCOLOR_AMARELO"» Mais opзхes estгo sendo feitas.. Aguarde!");
    return 
1;
// Linha do comando
// ----------------------------------------------------------------------------------------------- //
if(dialogid == VEICULO_CMDS)
{
    if(
response)
    {
        if(
listitem == 0)
        {
            new
            
GetPlayerVehicleIDplayerid )
            ;
            new
            
Float:i_xFloat:i_yFloat:i_z
            
;
            
GetPlayerPosplayeridi_xi_yi_z );
            {
                foreach(
Player)
                {
                    if( 
!= playerid )
                    {
                        
SetVehicleParamsForPlayervi0);
                    }
                }
                
SendClientMessage(playeridCOLOR_AMARELO,"| INFO | Veнculo trancado!");
                return 
1;
            }
        }
        if(
listitem == 1)
        {
            foreach(
Player)
            {
                
SetVehicleParamsForPlayerplayeridi0);
            }
            
SendClientMessageplayeridCOLOR_AMARELO"| INFO | Veнculo destrancado!" );
            
//PlayerPlaySound( playerid, 1056, i_x, i_y, i_z );
            
return 1;
        } 
// Trancar veiculo ou destrancar .
        
if(listitem == 2// aqui a linha do warning .
        
{
            new 
motlualarporcappormaob;
            new 
carroa GetPlayerVehicleIDplayerid );
            if( 
carroa != INVALID_VEHICLE_ID )
            {
                
GetVehicleParamsExcarroamotlualarporcappormaob );
                
SetVehicleParamsExcarroamotVEHICLE_PARAMS_ONalarporcappormaob );
                
SendClientMessageplayeridCOLOR_SISTEMA"| INFO | Farol Ligado com sucesso!" );
                
//return 1;
            
}
        }
        if(
listitem == 3)
        {
            new 
motlualarporcappormaob;
            new 
carroa GetPlayerVehicleIDplayerid );
            if( 
carroa != INVALID_VEHICLE_ID )
            {
                
GetVehicleParamsExcarroamotlualarporcappormaob );
                
SetVehicleParamsExcarroamotVEHICLE_PARAMS_OFFalarporcappormaob );
                
SendClientMessageplayeridCOLOR_SISTEMA"| INFO | Farol desligado com sucesso!" );
                return 
1;
            }
        }
    }

@Edit


Vdd vlw por avisar, atualizado.
VLW MANO !! DEU CERTIM AKI +
VLW A TODOS QUE TENTARAM ME ajudar
Reply
#10

Tem Quer Explicar o Por Quer Do Erro Assim Ele Vai Ele Nгo Vai Saber Resolver Erros Futuros
__________________________________________________ _______________________________________
O Erro Significa Quer Essa Linha Estar Fora Do Padrгo Das Outra - Simplificando voce precisa orgnaizala
Para Corrigir erros Futuros use esse site do @IPsBruno Quer Jб mim ajudou bastando o site й : tabulador.medianewsonline.com
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)