SA-MP Forums Archive
[ajuada] meu /gps nao funfa no carro - 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: [ajuada] meu /gps nao funfa no carro (/showthread.php?tid=280742)



[ajuada] meu /gps nao funfa no carro - vitorpedro - 02.09.2011

Pq meu /gps nao funfa dentro do veiculo aki esta o script

PHP код:
if (strcmp("/gps"cmdtexttrue10) == 0)
    {
        if(
PlayerTied[playerid] == 1){
            
SendClientMessage(playeridCOLOR_YELLOW"Vocк nгo pode usar este comando no sequestro!");
             return 
0;
        }
        else if(
PlayerCONGELADO[playerid] == 1){
            
SendClientMessage(playeridCOLOR_YELLOW"Vocк nгo pode usar este comando quando congelado!");
             return 
0;
        }
        else if(
PlayerCuffed[playerid] > 0){
            
SendClientMessage(playeridCOLOR_YELLOW"Vocк nгo pode usar este comando algemado!");
             return 
0;
        }else if(
IsPlayerInAnyVehicle(playerid)){        
            new 
vId GetPlayerVehicleID(playerid);
                
            if(
vId==AluguelCar[0]||vId==AluguelCar[1]||vId==AluguelCar[2]||vId==AluguelCar[3]||vId==AluguelCar[4]||vId==AluguelCar[5]||vId==AluguelCar[6]||vId==AluguelCar[7]||vId==AluguelCar[8]||vId==AluguelCar[9])
            {
                
SendClientMessage(playeridRED"Nгo pode usar este comando em carros de aluguel!");
            }
        }else{
            new 
listitems[] = "Empregos\nHQs\nGoverno\n";
            
ShowPlayerDialog(playerid,617,DIALOG_STYLE_LIST,"Lista de lugares:",listitems,"Selecionar","Sair");
            return 
1



Re: [ajuada] meu /gps nao funfa no carro - FireCat - 02.09.2011

pawn Код:
if (strcmp("/gps", cmdtext, true, 10) == 0)
    {
        if(PlayerTied[playerid] == 1){
            SendClientMessage(playerid, COLOR_YELLOW, "Vocк nгo pode usar este comando no sequestro!");
             return 0;
        }
        else if(PlayerCONGELADO[playerid] == 1){
            SendClientMessage(playerid, COLOR_YELLOW, "Vocк nгo pode usar este comando quando congelado!");
             return 0;
        }
        else if(PlayerCuffed[playerid] > 0){
            SendClientMessage(playerid, COLOR_YELLOW, "Vocк nгo pode usar este comando algemado!");
             return 0;
        }else if(IsPlayerInAnyVehicle(playerid)){        
            new vId = GetPlayerVehicleID(playerid);
                 
            if(vId==AluguelCar[0]||vId==AluguelCar[1]||vId==AluguelCar[2]||vId==AluguelCar[3]||vId==AluguelCar[4]||vId==AluguelCar[5]||vId==AluguelCar[6]||vId==AluguelCar[7]||vId==AluguelCar[8]||vId==AluguelCar[9])
            {
                SendClientMessage(playerid, RED, "Nгo pode usar este comando em carros de aluguel!");
            }
        else
       {
            new listitems[] = "Empregos\nHQs\nGoverno\n";
            ShowPlayerDialog(playerid,617,DIALOG_STYLE_LIST,"Lista de lugares:",listitems,"Selecionar","Sair");
        }
            return 1;



Re: [ajuada] meu /gps nao funfa no carro - vitorpedro - 02.09.2011

O QUE MUDOU AI ?


Re: [ajuada] meu /gps nao funfa no carro - FireCat - 02.09.2011

Quote:
Originally Posted by vitorpedro
Посмотреть сообщение
O QUE MUDOU AI ?
Os {}


Re: [ajuada] meu /gps nao funfa no carro - FireCat - 02.09.2011

Quote:
Originally Posted by Nathy.SA-MP
Посмотреть сообщение
tenta:

pawn Код:
if(!strcmp(cmdtext, "/gps", true))
    {
        if(PlayerTied[playerid] == 1)
            return SendClientMessage(playerid, COLOR_YELLOW, "Vocк nгo pode usar este comando no sequestro!");
           
        if(PlayerCONGELADO[playerid] == 1)
            return SendClientMessage(playerid, COLOR_YELLOW, "Vocк nгo pode usar este comando quando congelado!");
           
        if(PlayerCuffed[playerid] > 0)
            return SendClientMessage(playerid, COLOR_YELLOW, "Vocк nгo pode usar este comando algemado!");

        if(IsPlayerInAnyVehicle(playerid))
        {
            new vId = GetPlayerVehicleID(playerid);
            if(vId==AluguelCar[0]||vId==AluguelCar[1]||vId==AluguelCar[2]||vId==AluguelCar[3]||vId==AluguelCar[4]||vId==AluguelCar[5]||vId==AluguelCar[6]||vId==AluguelCar[7]||vId==AluguelCar[8]||vId==AluguelCar[9])
               return  SendClientMessage(playerid, RED, "Nгo pode usar este comando em carros de aluguel!");
        }
        ShowPlayerDialog(playerid,617,DIALOG_STYLE_LIST,"Lista de lugares:",Empregos\nHQs\nGoverno\n,"Selecionar","Sair");
        return 1;
    }
Pois tambem podia ser assim :b


Re: [ajuada] meu /gps nao funfa no carro - Joao_VS - 02.09.2011

Vai usando o BSL... O da Nathy aparentemente ta certo!


Re: [ajuada] meu /gps nao funfa no carro - vitorpedro - 04.09.2011

Quote:
Originally Posted by FireCat
Посмотреть сообщение
pawn Код:
if (strcmp("/gps", cmdtext, true, 10) == 0)
    {
        if(PlayerTied[playerid] == 1){
            SendClientMessage(playerid, COLOR_YELLOW, "Vocк nгo pode usar este comando no sequestro!");
             return 0;
        }
        else if(PlayerCONGELADO[playerid] == 1){
            SendClientMessage(playerid, COLOR_YELLOW, "Vocк nгo pode usar este comando quando congelado!");
             return 0;
        }
        else if(PlayerCuffed[playerid] > 0){
            SendClientMessage(playerid, COLOR_YELLOW, "Vocк nгo pode usar este comando algemado!");
             return 0;
        }else if(IsPlayerInAnyVehicle(playerid)){        
            new vId = GetPlayerVehicleID(playerid);
                 
            if(vId==AluguelCar[0]||vId==AluguelCar[1]||vId==AluguelCar[2]||vId==AluguelCar[3]||vId==AluguelCar[4]||vId==AluguelCar[5]||vId==AluguelCar[6]||vId==AluguelCar[7]||vId==AluguelCar[8]||vId==AluguelCar[9])
            {
                SendClientMessage(playerid, RED, "Nгo pode usar este comando em carros de aluguel!");
            }
        else
       {
            new listitems[] = "Empregos\nHQs\nGoverno\n";
            ShowPlayerDialog(playerid,617,DIALOG_STYLE_LIST,"Lista de lugares:",listitems,"Selecionar","Sair");
        }
            return 1;
MAN EU COLOQUEI MAS SO FUNFA O /GPS SE ENTRAR NO CARRO TIPO EU QUERIA UM QUE FUNCIONACE DENTRO E FORA DO CARRO AJUDA ?


Re: [ajuada] meu /gps nao funfa no carro - Vai_Besta - 04.09.2011

assim
pawn Код:
if (strcmp("/gps", cmdtext, true, 10) == 0)
{
            new listitems[] = "Empregos\nHQs\nGoverno\n";
            ShowPlayerDialog(playerid,617,DIALOG_STYLE_LIST,"Lista de lugares:",listitems,"Selecionar","Sair");
            return 1;
}



Re: [ajuada] meu /gps nao funfa no carro - vitorpedro - 04.09.2011

tipo e so apegar o resto e deixar o que vc colocou ai ?


Re: [ajuada] meu /gps nao funfa no carro - StrondA_ - 04.09.2011

Pronto
pawn Код:
if(strcmp("/gps", cmdtext, true, 10) == 0)
    {
        if(PlayerTied[playerid] == 1) return SendClientMessage(playerid, COLOR_YELLOW, "Vocк nгo pode usar este comando no sequestro!");
        if(PlayerCONGELADO[playerid] == 1) return SendClientMessage(playerid, COLOR_YELLOW, "Vocк nгo pode usar este comando quando congelado!");
        if(PlayerCuffed[playerid] > 0) return SendClientMessage(playerid, COLOR_YELLOW, "Vocк nгo pode usar este comando algemado!");
        new listitems[] = "Empregos\nHQs\nGoverno\n";
        ShowPlayerDialog(playerid,617,DIALOG_STYLE_LIST,"Lista de lugares:",listitems,"Selecionar","Sair");
        return true;
    }