27.02.2014, 21:11
Hello
What do you think about multi buttons in dialogs? Something like that:

Creating dialog (max 8 buttons):
OnDialogReponse:
If we have more than 4 buttons, next buttons ( 5 .. 8 ) will show in new line.
What do you think?
What do you think about multi buttons in dialogs? Something like that:

Creating dialog (max 8 buttons):
Код:
ShowPlayerDialog(playerid, dialogid, dialogtype, header[], text[], button1[], button2[], button3[], ...);
Код:
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
if(response == 0)
{
}
else if(response == 1)
{
}
else if(response == 2)
{
}
// etc
}
What do you think?


