21.07.2012, 17:30
Quote:
PHP Code:
|
PHP Code:
#define Veiculos 9000 // id dialog
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
if(dialogid == 9000)
{
if(response)
{
if(listitem == 0)
//Aviхes
else if(listitem == 1)
//Motos
else if(listitem == 2)
//Carros
}
else
{
}
}
return 1;
}
CMD:v(playerid)
{
ShowPlayerDialog(playerid,0,DIALOG_STYLE_LIST,"Veiculos","Aviхes\nMotos\nCarros","Escolher","Sair");
return 1;
}