[HELP]Dialog question
#1

Hello, sorry for this, but, anibody know how i make a dialog with 2 menus
I mean, i create a VMENU, and then i put: MENU1 and MENU2

So when i press menu 1, i wanna show another dialog menu
Reply
#2

Tutorial on list dialogs here https://sampwiki.blast.hk/wiki/How_to_Create_a_Dialog
If menu1 is lets say listitem 0 (in Vmenu), when a player picks that listitem show another dialog.
Reply
#3

Simple

pawn Код:
if(dialogid == DIALOGID && response)
    {
        switch(listitem)
        {
            case 0:
            {
            ShowPlayerDialog(blabla);
            }

        }
        return 1;
    }
Reply
#4

thanks, very help full
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)