[Ajuda] Colocando em DIALOG_STYLE_LIST
#1

Galera eu gostaria de tirar o comando esses comando e colocar em uma DIALOG_STYLE_LIST Alguem pode me ajudar? me encinando como coloca

Vamos dizer que a DIALOG_STYLE_LIST й essa:
pawn Код:
if(strcmp("/profissoes", cmdtext, true, 10) == 0)

{
    ShowPlayerDialog(playerid, profiss4o, DIALOG_STYLE_LIST , "{ffffff}Meu carro", "Respaw\nModelo", "OK", "Cancelar");
    }
    if(PlayerToPoint(1.0, playerid, 362.4499,173.8849,1008.3828))
    {
    return 1;
}

Aqui й os comando que quero colcoar em uma list
pawn Код:
if(strcmp(cmd, "/modelocarro", true) == 0) {
    new preco;
    new tmp[256];
    tmp = strtok(cmdtext, idx);
    if(!strlen(tmp)){
    SendClientMessage(playerid, Vermelho, "/modelocarro [novomodeloid]");
    return 1;
    }
    preco = strval(tmp);
    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")){
    if(pAdmin[playerid] >= 5){
    new pname[MAX_PLAYER_NAME];
    GetPlayerName(playerid, pname, sizeof(pname));
    dini_IntSet(string, "Modelo", preco);
    } else {
    SendClientMessage(playerid, Vermelho, "{0099FF}[x]{CCCCFF} Vocк nгo tem permissгo.");
    }
    } else {
    }
    }
    }
    return 1;
    }

if(strcmp(cmd, "/respawnccar", true) == 0) {
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")){
if(pAdmin[playerid] >= 5){
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);
} else {
SendClientMessage(playerid, Vermelho, "{0099FF}[x]{CCCCFF} Vocк nгo tem permissгo.");
}
}
}
}
return 1;
}
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)