[Ajuda] Colocando em DIALOG_STYLE_LIST
#3

pawn Код:
if (strcmp("/veiculo", cmdtext, true, 10) == 0)
    {
        if(pAdmin[playerid] >= 5)
        {
            ShowPlayerDialog(playerid, ID, DIALOG_STYLE_LIST, "Meu carro", "Modelocarro/nRespawnccar", "Selecionar", "Fechar");
        }
        else
        {
            SendClientMessage(playerid, 1, "{0099FF}[x]{CCCCFF} Vocк nгo tem permissгo.");
        }
        return 1;
    }
em "public OnDialogResponse" ...
pawn Код:
if(dialogid == ID)
    {
        if(response) //Ao Clickar no primeiro botгo
        {
            if(listitem == 0) //Ao clickar no primeiro item
            {
                //Bota aqui a funзгo do "/modelocarro"
            }
            if(listitem == 1) //Ao clickar no segundo item
            {
                for(new c = 0; c < MAX_CARROS; c++)
                {
                    format(string, sizeof(string), "carro%d.ini", c);
                }
                if(dini_Exists(string))
                {
                    if(GetPlayerVehicleID(playerid) == dini_Int(string, "Id"))
                    {
                        new pname[MAX_PLAYER_NAME];
                        GetPlayerName(playerid, pname, sizeof(pname));
                        new carroid;
                        DestroyVehicle(dini_Int(string, "Id"));
                        carroid = AddStaticVehicle(dini_Int(string, "Modelo"), dini_Float(string, "CordX"), dini_Float(string, "CordY"), dini_Float(string, "CordZ"), dini_Float(string, "Angulo"), dini_Int(string, "Cor1"), dini_Int(string, "Cor2"));
                        dini_IntSet(string, "Id", carroid);
                    }
            }
            if(listitem == 2)
            {
            }
        }
    }
bota a funзгo do "/modelocarro" alн :
pawn Код:
if(response) //Ao Clickar no primeiro botгo
        {
            if(listitem == 0) //Ao clickar no primeiro item
            {
                //Bota aqui a funзгo do "/modelocarro"
            }
como Arakuta disse :
https://sampforum.blast.hk/showthread.php?tid=119297

nгo testei o code ae em cima.. e acho que tб errado.. corrija-me se estiver errado .
Reply


Messages In This Thread
Colocando em DIALOG_STYLE_LIST - by costadd - 10.10.2013, 09:33
Re: Colocando em DIALOG_STYLE_LIST - by arakuta - 10.10.2013, 13:27
Re: Colocando em DIALOG_STYLE_LIST - by HatedS - 10.10.2013, 13:43

Forum Jump:


Users browsing this thread: 1 Guest(s)