SA-MP Forums Archive
OnDialogResponse Error - 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: OnDialogResponse Error (/showthread.php?tid=308471)



OnDialogResponse Error - Swyft™ - 03.01.2012

pawn Код:
if(dialogid == DIALOG_DUTY)
    {
         switch(listitem)
         {
            case 0:
            {
                // removed to prevent copiers
            }
            case 1:
            {
                // removed to prevent copiers
            }
        }

    if(dialogid == DIALOG_DUTY1)
    {
        switch(listitem)
        {
            case 0:
            {
                if(OnDuty[playerid] == 0)
                {
                    // removed to prevent copiers
                }
                else if(OnDuty[playerid] == 1)
                {
                    // removed to prevent copiersFirefighter");
                }
            }
            case 1:
            {
                if(OnDuty[playerid] == 0)
                {
                    // removed to prevent copiers
                   
                }
                else if(OnDuty[playerid] == 1)
                {
                    // removed to prevent copiers
                }
            }
        }

    if(dialogid == DIALOG_DUTY2)
    {
        switch(listitem)
        {
            case 0:
            {
                // removed to prevent copiers
            }
            case 1:
            {
                // removed to prevent copiers
            }
        }
    if(dialogid == DIALOG_DUTY3)
    {
        switch(listitem)
        {
            case 0:
            {
                        //
            }
        }
       
    if(dialogid == DIALOG_DUTY4)
    {
        switch(listitem)
        {
            case 0:
            {
                    //
            }
        }
    }
    return 1;
}



Re: OnDialogResponse Error - Wesley221 - 03.01.2012

So, what is the problem here officer?


Re: OnDialogResponse Error - wildcookie007 - 03.01.2012

lol.. you are missing a closing bracket } for every if(dialogid..


Re: OnDialogResponse Error - Swyft™ - 03.01.2012

Quote:
Originally Posted by Wesley221
Посмотреть сообщение
So, what is the problem here officer?
I get errors, and missing bracket finder says there is missing brackets, but the lines are incorrect


Re: OnDialogResponse Error - KingHual - 03.01.2012

Quote:
Originally Posted by RockingCamman
Посмотреть сообщение
I get errors, and missing bracket finder says there is missing brackets, but the lines are incorrect
Didn't you read the post above? You're missing a closing bracket after every if (dialogid == ...)

It should be:
pawn Код:
if(dialogid == DIALOG_DUTY)
    {
         switch(listitem)
         {
            case 0:
            {
                // removed to prevent copiers
            }
            case 1:
            {
                // removed to prevent copiers
            }
        }
   }

    if(dialogid == DIALOG_DUTY1)
    {
        switch(listitem)
        {
            case 0:
            {
                if(OnDuty[playerid] == 0)
                {
                    // removed to prevent copiers
                }
                else if(OnDuty[playerid] == 1)
                {
                    // removed to prevent copiersFirefighter");
                }
            }
            case 1:
            {
                if(OnDuty[playerid] == 0)
                {
                    // removed to prevent copiers
                   
                }
                else if(OnDuty[playerid] == 1)
                {
                    // removed to prevent copiers
                }
            }
        }
    }

    if(dialogid == DIALOG_DUTY2)
    {
        switch(listitem)
        {
            case 0:
            {
                // removed to prevent copiers
            }
            case 1:
            {
                // removed to prevent copiers
            }
        }
    }
    if(dialogid == DIALOG_DUTY3)
    {
        switch(listitem)
        {
            case 0:
            {
                        //
            }
        }
    }
       
    if(dialogid == DIALOG_DUTY4)
    {
        switch(listitem)
        {
            case 0:
            {
                    //
            }
        }
    }
    return 1;
}



Re: OnDialogResponse Error - Swyft™ - 03.01.2012

Quote:
Originally Posted by wildcookie007
Посмотреть сообщение
lol.. you are missing a closing bracket } for every if(dialogid..
Now my compiler just crashed -,-


Re: OnDialogResponse Error - KingHual - 03.01.2012

Quote:
Originally Posted by RockingCamman
Посмотреть сообщение
Now my compiler just crashed -,-
Umm... lrn2read?


Re: OnDialogResponse Error - [ABK]Antonio - 03.01.2012

Quote:
Originally Posted by RockingCamman
Посмотреть сообщение
I get errors, and missing bracket finder says there is missing brackets, but the lines are incorrect
..You really don't see the missing brackets?


Re: OnDialogResponse Error - Swyft™ - 03.01.2012

Quote:
Originally Posted by [ABK]Antonio
Посмотреть сообщение
..You really don't see the missing brackets?
Nope, here add me on steam, Camman616 or add my MSN rockingcamman@live.com, and maybe u can help me with it


Re: OnDialogResponse Error - KingHual - 04.01.2012

Quote:
Originally Posted by RockingCamman
Посмотреть сообщение
Nope, here add me on steam, Camman616 or add my MSN rockingcamman@live.com, and maybe u can help me with it
Are you joking?! There's nothing more simple than finding missing brackets, especially when your tabs are perfectly done....