Dialog Not showing
#1

The first dialog shows, but once I click on a listed choice, the dialog doesn't show
pawn Код:
public OnPlayerClickTextDraw(playerid, Text:clickedid)
{
    if(clickedid == CRText) {
        format(istring, sizeof(istring), "%s\n%s\n%s\n%s\n%s\n%s\n%s\n%s\n%s\n%s", sText[0], sText[1], sText[2], sText[3], sText[4], sText[5], sText[6], sText[7], sText[8], sText[9]);
        ShowPlayerDialog(playerid, THATDIALOG, DIALOG_STYLE_LIST, "Los Santos Police Department" ,istring, "Select", "Cancel");
    }
    return 1;
}
// THIS DIALOG SHOWS
pawn Код:
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
    if(dialogid == THATDIALOG)
    {
        if(response)
        {
            if(listitem == 0)
            {
                ShowPlayerDialog(playerid, SNAME, DIALOG_STYLE_INPUT, " Information", " Some Info Here", "Next", "Stop");
                               // THIS DIALOG DOES NOT
            }
        }
    }
    return 1;
}
Reply


Messages In This Thread
Dialog Not showing - by Lynn - 07.04.2012, 22:37
Re: Dialog Not showing - by .FuneraL. - 07.04.2012, 22:41
Re: Dialog Not showing - by Lynn - 07.04.2012, 22:52
Re: Dialog Not showing - by Kitten - 07.04.2012, 22:54
Re: Dialog Not showing - by Lynn - 07.04.2012, 23:06
Re: Dialog Not showing - by Lynn - 08.04.2012, 02:07
Re: Dialog Not showing - by Kitten - 08.04.2012, 02:16
Re: Dialog Not showing - by Lynn - 08.04.2012, 02:44

Forum Jump:


Users browsing this thread: 1 Guest(s)