SA-MP Forums Archive
Link two dialogs - 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)
+--- Thread: Link two dialogs (/showthread.php?tid=450083)



Link two dialogs - martoivanov - 11.07.2013

I have one dialog and i want when some clicks The button More on the bottom to open another dialog. Can someone give an example and explanation?

Thanks in advance!


Re: Link two dialogs - ReVo_ - 11.07.2013

Код:
ShowPlayerDialog ( .. , dialog id , .. , "Close", "More" );
OnDialogResponse

Код:
...

if (dialogid == dialog id )
{
if (!response) 
{
// "more button"
ShowPlayerDialog ( .. , dialog id 2 , .. , "Close", "More" );

}
else
{
// ok button
}
}

...



Re: Link two dialogs - martoivanov - 11.07.2013

Thank you very much!! +1 Rep (it was easy to be done)