SA-MP Forums Archive
Convert this... - 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: Convert this... (/showthread.php?tid=294053)



Convert this... - TheBluec0de - 30.10.2011

how to convert this with a dialog switch ?

I SOLVED.


Re: Convert this... - Norn - 30.10.2011

pawn Код:
switch(dialogid)
{
    case    DIALOGO_REGISTRAZIONE:
    {
        switch(response) {
            case 0:
            {

            }
            case 1:
            {

            }
        }
    }
    case    DIALOGO_LOGIN:
    {

        switch(response) {
            case 0:
            {

            }
            case 1:
            {

            }
        }
    }
}



Re: Convert this... - TheBluec0de - 30.10.2011

Thank you, solved.