Help with DialogResponse
#4

ik know now you want a responce for more than one dialog.

pawn Код:
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
    if(dialogid == DIALOG_EXAMPLE1)
    {
        if(!response) return 0;
        {
            switch(listitem)
            {
                case 0:
                {
                    // CODE HERE
                }
                case 1:
                {
                    // CODE HERE
                }
                case 2:
                {
                    // CODE HERE
                }
            }
        }
    }
   
    if(dialogid == DIALOG_EXAMPLE2)
    {
        if(!response) return 0;
        {
            switch(listitem)
            {
                case 0:
                {
                    // CODE HERE
                }
                case 1:
                {
                    // CODE HERE
                }
                case 2:
                {
                    // CODE HERE
                }
            }
        }
    }
    return 1;
}
Reply


Messages In This Thread
Help with DialogResponse - by LeXuZ - 24.11.2014, 17:37
Re: Help with DialogResponse - by Jakwob - 24.11.2014, 17:48
Re: Help with DialogResponse - by LeXuZ - 24.11.2014, 17:51
Re: Help with DialogResponse - by Jakwob - 24.11.2014, 18:02
Re: Help with DialogResponse - by LeXuZ - 24.11.2014, 18:47

Forum Jump:


Users browsing this thread: 1 Guest(s)