23.12.2011, 00:42
I don't quite get why your first code didn't work? Would it help if you reversed it? Instead of if(!response) -> else
then use if(response) -> else if (!response)
Just an idea. Like I said, I don't see why it wouldn't work... It makes sense.
Like so...
then use if(response) -> else if (!response)
Just an idea. Like I said, I don't see why it wouldn't work... It makes sense.
Like so...
Код:
case 356: { if(response) { ShowPlayerDialog(playerid, 94, DIALOG_STYLE_LIST, "{33FF33}Clover", "Slot 1\nSlot 2\nSlot 3", "Select", "Cancel"); return 1; } else if(!response) { //next dialog ShowPlayerDialog(playerid, 345, DIALOG_STYLE_MSGBOX, "Test", "Test", "Test", ""); } }