OnDialogResponse does nothing
#1

Hello, i'm trying to make a dialog, but when I press "Ok", nothing happens...

I did return 0 at the end of OnDialogResponse

There is my dialog code:
Код:
 if(dialogid == DIALOG_SHOP)
	{
		switch(listitem)
         {
            case 0:
            {
                ShowPlayerDialog(playerid, DIALOG_SHOPSTUFF,DIALOG_STYLE_LIST, "Game Shop" , "{FFFFFF}Game Money\nstuff2add", "Select", "Close");
            }
}
}
Код:
if(dialogid == DIALOG_SHOPSTUFF)
	{
		switch(listitem)
         {
            case 6:
            {
          		ShowPlayerDialog(playerid, DIALOG_MONEY, DIALOG_STYLE_MSGBOX, "Game Shop" ,"{FFFFFF}Do you want to buy this item?\nItem: {FF0080}24 millions" , "Ok", "Close");
            }
            }
}
Код:
if(dialogid == DIALOG_MONEY)
    {
        if(response) 
        {
		GivePlayerMoney(playerid, 24000000);
		ShowPlayerDialog(playerid, DIALOG_SUCCESS, DIALOG_STYLE_MSGBOX, "Success!", "{24FB00}You successfully got some cash", "Thanks!", "Close");
	}
    }
However, when I paste all the above in a single command, everything works...
Код:
CMD:moneytest(playerid, params[])
{
	GivePlayerMoney(playerid, 24000000);
	ShowPlayerDialog(playerid, DIALOG_SUCCESS, DIALOG_STYLE_MSGBOX, "Success!", "{24FB00}You successfully purchased this item", "Thanks!", "Close");
	return 1;
}
Has anybody got an idea?
Thanks in advance!

// EDIT
Also forgot to mention that, if I don't use the DIALOG_MONEY and put its content directly into DIALOG_SHOPSTUFF case 6 it works.
Reply


Messages In This Thread
OnDialogResponse does nothing - by Adamoneoone - 22.06.2018, 19:38
Re: OnDialogResponse does nothing - by grymtn - 22.06.2018, 19:58
Re: OnDialogResponse does nothing - by Adamoneoone - 22.06.2018, 20:16
Re: OnDialogResponse does nothing - by AlexMSK - 22.06.2018, 21:14
Re: OnDialogResponse does nothing - by Lokii - 22.06.2018, 21:22
Re: OnDialogResponse does nothing - by Adamoneoone - 22.06.2018, 21:41
Re: OnDialogResponse does nothing - by Lokii - 22.06.2018, 22:09
Re: OnDialogResponse does nothing - by Adamoneoone - 23.06.2018, 07:18
Re: OnDialogResponse does nothing - by JasonRiggs - 23.06.2018, 07:29
Re: OnDialogResponse does nothing - by Adamoneoone - 23.06.2018, 07:33
Re: OnDialogResponse does nothing - by JasonRiggs - 23.06.2018, 08:04
Re: OnDialogResponse does nothing - by AmigaBlizzard - 23.06.2018, 08:47
Re: OnDialogResponse does nothing - by Adamoneoone - 23.06.2018, 09:00

Forum Jump:


Users browsing this thread: 1 Guest(s)