[Ajuda] Ajuda a acabar com esses 7 warnings ?!
#4

Tenta ae

pawn Код:
if( !strcmp( cmdtext, "/ap1", true ))
{
    if( pInfo[ playerid ][ Prof ] == POL_RODOVIARIA || aInfo[ playerid ][ Dono ] == 1 || aInfo[ playerid ][ Admin ] == 1 || aInfo[ playerid ][ Moderador ] == 1 || aInfo[ playerid ][ Ajudante ] == 1 )
    {
        if(!IsPlayerInRangeOfPoint(playerid, 5.5, 49.0849, -1530.9667, 5.3143))
        {
            SendClientMessage(playerid, COLOR_ERRO, "[ x ] Vocк nгo estб perto do Pedagio!");
            return 1;
        }
        SendClientMessage( playerid, COLOR_AMARELO, "[ > ] Abrindo o portгo nъmero 1 do Pedбgio." );
        MoveDynamicObject( pp1, 45, -1530.3, 6, 3.0 ); /*( pp1, 45.6, -1525.8, 2, 3.0 ); // Caso queira colocar o portгo para abrir pra baixo*/
    }
    else
    {
        SendClientMessage( playerid, COLOR_ERRO, "[ x ] Vocк nгo tem permissгo!" );
    } // warning // ( LINHA 14185 )
}
if( !strcmp( cmdtext, "/fp1", true ))
{
    if( pInfo[ playerid ][ Prof ] == POL_RODOVIARIA || aInfo[ playerid ][ Dono ] == 1 || aInfo[ playerid ][ Admin ] == 1 || aInfo[ playerid ][ Moderador ] == 1 || aInfo[ playerid ][ Ajudante ] == 1 )
    {
        if(!IsPlayerInRangeOfPoint(playerid, 5.5, 49.0849, -1530.9667, 5.3143))
        {
            SendClientMessage(playerid, COLOR_ERRO, "[ x ] Vocк nгo estб perto do Pedagio!");
            return 1;
        }
        SendClientMessage( playerid, COLOR_AMARELO, "[ > ] Fechando o portгo nъmero 1 do Pedбgio." );
        MoveDynamicObject( pp1, 45.6,-1525.8,6, 3.0 ); /*( pp1, 45.6, -1525.8, 2, 3.0 ); // Caso queira colocar o portгo para abrir pra baixo*/
    }
    else
    {
        SendClientMessage( playerid, COLOR_ERRO, "[ x ] Vocк nгo tem permissгo!" );
    }
    return 1; // warning // ( LINHA 14203 )
}
if( !strcmp( cmdtext, "/ap2", true ))
{
    if( pInfo[ playerid ][ Prof ] == POL_RODOVIARIA || aInfo[ playerid ][ Dono ] == 1 || aInfo[ playerid ][ Admin ] == 1 || aInfo[ playerid ][ Moderador ] == 1 || aInfo[ playerid ][ Ajudante ] == 1 )
    {
        if(!IsPlayerInRangeOfPoint(playerid, 5.5, 49.0849, -1530.9667, 5.3143))
        {
            SendClientMessage(playerid, COLOR_ERRO, "[ x ] Vocк nгo estб perto do Pedagio!");
            return 1;
        }
        SendClientMessage( playerid, COLOR_AMARELO, "[ > ] Abrindo o portгo nъmero 2 do Pedбgio." );
        MoveDynamicObject( pp2, 52.7, -1531.7, 6, 3.0 ); /*( pp1, 45.6, -1525.8, 2, 3.0 ); // Caso queira colocar o portгo para abrir pra baixo*/
    }
    else
    {
        SendClientMessage( playerid, COLOR_ERRO, "[ x ] Vocк nгo tem permissгo!" );
    }
    return 1; // warning // ( LINHA 14221 )
}
if( !strcmp( cmdtext, "/fp2", true ))
{
    if( pInfo[ playerid ][ Prof ] == POL_RODOVIARIA || aInfo[ playerid ][ Dono ] == 1 || aInfo[ playerid ][ Admin ] == 1 || aInfo[ playerid ][ Moderador ] == 1 || aInfo[ playerid ][ Ajudante ] == 1 )
    {
        if(!IsPlayerInRangeOfPoint(playerid, 5.5, 49.0849, -1530.9667, 5.3143))
        {
            SendClientMessage(playerid, COLOR_ERRO, "[ x ] Vocк nгo estб perto do Pedagio!");
            return 1;
        }
        SendClientMessage( playerid, COLOR_AMARELO, "[ > ] Fechando o portгo nъmero 2 do Pedбgio." );
        MoveDynamicObject( pp2, 52, -1536.7998, 6, 3.0 ); /*( pp1, 45.6, -1525.8, 2, 3.0 ); // Caso queira colocar o portгo para abrir pra baixo*/
    }
    else
    {
        SendClientMessage( playerid, COLOR_ERRO, "[ x ] Vocк nгo tem permissгo!" );
    }
    return 1; // warning // ( LINHA 14239 )
}
pawn Код:
if( !strcmp( cmdtext, "/consertar", true ))
{
    if( pInfo[ playerid ][ Prof ] == MECANICO || aInfo[ playerid ][ Dono ] == 1 || aInfo[ playerid ][ Admin ] == 1 || aInfo[ playerid ][ Moderador ] == 1 || aInfo[ playerid ][ Ajudante ] == 1 )
    {
        if( !IsPlayerInAnyVehicle( playerid ))
        {
            SendClientMessage( playerid, COLOR_ERRO, "[ x ] Vocк nгo estб em um veнculo !" );
            return 1;
        }
        new
        v = GetPlayerVehicleID( playerid)
        ;
        if(Consertou[playerid] > gettime())
        {
            format(gStr, sizeof(gStr), "[ x ] Aguarde %d segundos para poder consertar um veнculo!", Consertou[ playerid ] - gettime( ));
            SendClientMessage(playerid, COLOR_ERRO, gStr);
            return 1;
        }
        SetVehicleHealth( v, 1000 );
        RepairVehicle( v );
        Consertou[playerid] = gettime() + 60;
        SendClientMessage( playerid, COLOR_AMARELO, "[ > ] Veнculo consertado !" );
        PlayerPlaySound( playerid, 1057, 0.0, 0.0, 10.0 );
    }
    else
    {
        SendClientMessage( playerid, COLOR_ERRO, "[ x ] Vocк nгo й um(a) Mecвnico(a) !" );
    }
    return 1; // warning // ( LINHA 17 )
}
E este warning
Код:
  warning 219: local variable "f" shadows a variable at a preceding level
estб falando que jб estб definida em algum lugar, й sу mudar o nome da variбvel para fa por exemplo
Reply


Messages In This Thread
Ajuda a acabar com esses 7 warnings ?! - by Jhur - 27.03.2015, 01:05
Re: Ajuda a acabar com esses 7 warnings ?! - by n0minal - 27.03.2015, 01:19
Re: Ajuda a acabar com esses 7 warnings ?! - by Jhur - 27.03.2015, 01:31
Re: Ajuda a acabar com esses 7 warnings ?! - by FStralioti - 27.03.2015, 11:25
Re: Ajuda a acabar com esses 7 warnings ?! - by Jhur - 27.03.2015, 17:51
Re: Ajuda a acabar com esses 7 warnings ?! - by RodrigoBsC - 27.03.2015, 19:02
Re: Ajuda a acabar com esses 7 warnings ?! - by Jhur - 28.03.2015, 05:39
Re: Ajuda a acabar com esses 7 warnings ?! - by FStralioti - 28.03.2015, 10:21
Re: Ajuda a acabar com esses 7 warnings ?! - by RodrigoBsC - 28.03.2015, 13:45
Re: Ajuda a acabar com esses 7 warnings ?! - by Jhur - 28.03.2015, 15:28

Forum Jump:


Users browsing this thread: 5 Guest(s)