Jump to content

Question

Posted

        case DIALOG_EMAIL: {
            if(!response)
                return Kick(playerid);

            if(strlen(inputtext) < 6 || strlen(inputtext) > 32)
                return ShowPlayerDialog(playerid, DIALOG_EMAIL, DIALOG_STYLE_INPUT, "Email", "Seteaza-ti adresa de email:", "Select", "Cancel");
                
            gQuery[0] = EOS;
            mysql_format(SQL, gQuery, sizeof(gQuery), "UPDATE `users` SET `Email`='%s' WHERE `ID`='%d'", inputtext, PlayerInfo[playerid][pSQLID]);
            mysql_tquery(SQL, gQuery, "", "");
            
            gString[0] = EOS;
            format(gString, sizeof(gString), "Email setat: %s.", inputtext);
            SCM(playerid, -1, gString);

            format(PlayerInfo[playerid][pEmail], 32, inputtext);
            
            ShowPlayerDialog(playerid, DIALOG_GENDER, DIALOG_STYLE_MSGBOX, "Gender", "Seteaza-ti sexul:", "Masculin", "Feminin");
        }
 

C:\Users\Lenovo\Desktop\samp server by KraPsY\gamemodes\tuts.pwn(161) : error 040: duplicate "case" label (value 1)

ce fel de eroare este?

2 answers to this question

Recommended Posts

  • 0
Posted

Ai mai definit/folosit odata dialogul.Sau daca folosesti macro uri vezi sa nu ai la dialog_email la fel ca dialog_gender sau tot asa

  • 0
Posted (edited)
On 2/28/2020 at 12:46 AM, KraPsY said:

Nu l-am mai folosit deloc, e prima oara ca il folosesc, doar ca imi da eroarea asta cand introduc asta:

        case DIALOG_ANSWER: {            
            if(!response) {
                SondajVotes[1] ++;
                SCM(playerid, COLOR_GOLD, "Votul tau este negativ!");
            }
            else {
                SondajVotes[0] ++;
                SCM(playerid, COLOR_GOLD, "Votul tau este pozitiv!");
            }
            SetPVarInt(playerid, "Voted", 1);
        }

Edited by KraPsY

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more details you can also review our Terms of Use and Privacy Policy.