11.08.2014, 11:30
(
Последний раз редактировалось SpikY_; 11.08.2014 в 12:00.
Причина: Closed
)
Removed!!
i have fix it


public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
if(dialogid == 0) //modify dialog id
{
if(response) // If they clicked 'Select' or pressed enter
{
switch(listitem)
{
case 0: //do whatever (the first item in the list dialog)
case 1: //do whatever (the second item in the list dialog)
}
}
else // Pressed ESC or clicked back
{
//show the previous dialog
}
return 1;
}
return 0;
}