08.08.2011, 03:08
Never tried Drebin's method, but it should be like this:
pawn Код:
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
if(response == 1)
{
switch(dialogid)
{
case 0:
{
ShowPlayerDialog(listitem 1 stuff here);
}
case 1:
{
ShowPlayerDialog(listitem 2 stuff here);
}
}
}
}