[HELP]Dialog question - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (
https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: [HELP]Dialog question (
/showthread.php?tid=171633)
[HELP]Dialog question -
Thebest96 - 27.08.2010
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
Re: [HELP]Dialog question -
iggy1 - 27.08.2010
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.
Re: [HELP]Dialog question -
Jochemd - 27.08.2010
Simple
pawn Код:
if(dialogid == DIALOGID && response)
{
switch(listitem)
{
case 0:
{
ShowPlayerDialog(blabla);
}
}
return 1;
}
Re: [HELP]Dialog question -
Thebest96 - 27.08.2010
thanks, very help full