07.09.2015, 00:53
PHP код:
#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;
}