05.09.2015, 16:23
pessoal eu criei uma prof Taxista Mais Nгo Consigo Botar Ela Pra Quando Selecionar Ela No Dialog Setar a PROF Taxista Como Seto A Prof Apois Selecionar ela no Dialog ?
Profissao[playerid] = escolhida;
ShowPlayerDialog(playerid,0,DIALOG_STYLE_LIST,"Emp regos","Cantor\nTexte2\nTexte3\nTexte4","OK","Fech ar"); |
if(dialogid == 0){ if(response){ if(listitem == 0){ } if(listitem == 1){ } if(listitem == 2){ } if(listitem == 3){ } if(listitem == 4){ } } else{ } } |
new Profissao[MAX_PLAYERS];
#include <a_samp>
#include <zcmd>
#define DIALOG_EMPREGOS 100
#define PROF_CANTOR 10
enum pInfo {
Profissao
}
new PlayerInfo[MAX_PLAYERS][pInfo];
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
if(dialogid == DIALOG_EMPREGOS)
{
if(response)
{
if(listitem == 0)
{
if(PlayerInfo[playerid][Profissao] != PROF_CANTOR)
{
PlayerInfo[playerid][Profissao] = PROF_CANTOR;
SendClientMessage(playerid, 0x00FF80AA, "Parabйns: Agora vocк й um cantor!");
return 1;
}
}
if(listitem == 1)
{
}
if(listitem == 2)
{
}
if(listitem == 3)
{
}
if(listitem == 4)
{
}
}
}
return 1;
}
CMD:empregos(playerid)
{
ShowPlayerDialog(playerid, DIALOG_EMPREGOS, DIALOG_STYLE_LIST,"Empregos","Cantor\nTexte2\nTexte3\nTexte4","Aceitar","Fechar");
return 1;
}