"You must be logged in to use the chat"
#5

This is where I think something is wrong:
pawn Код:
if(dialogid == dlogin) //If dialog id is a login dialog
    {//then
        if(!response) return Kick(playerid); //If they clicked the second button "Quit", we will kick them.
        if(response) //if they clicked the first button "Register"
        {//then
            new hashpass[129]; //Will create a new variable to hash his/her password
            WP_Hash(hashpass,sizeof(hashpass),inputtext); //Will hash inputted password
            if(!strcmp(hashpass, pInfo[playerid][Pass], false)) //If they have insert their correct password
            {//then
                INI_ParseFile(Path(playerid),"loadaccount_%s",.bExtra = true, .extra = playerid);//We will load his account's data from user's path
                SetPlayerScore(playerid,pInfo[playerid][Scores]);//We will get their score inside of his user's account and we will set it here
                GivePlayerMoney(playerid,pInfo[playerid][Money]);//As explained above
                SendClientMessage(playerid,-1,"Welcome back! You have successfully logged in");//Tell them that they've successfully logged in
                SpawnPlayer(playerid);
            }
            else //If they've entered an incorrect password
            {//then
                ShowPlayerDialog(playerid,dlogin,DIALOG_STYLE_INPUT,"Login","Welcome back. This account is registered. \nInsert your password to login to your account.\nIncorrect password!","Login","Quit");//We will tell to them that they've entered an incorrect password
                return 1;
            }
        }
    }
When typing the correct password, it now goes to the spawn, but it doesn't display the "You have been succesffuly logged in" message above.
Reply


Messages In This Thread
"You must be logged in to use the chat" - by HenrySunseri - 23.07.2014, 22:30
Re: "You must be logged in to use the chat" - by R4PlaY - 23.07.2014, 22:34
Re: "You must be logged in to use the chat" - by HenrySunseri - 23.07.2014, 22:36
Re: "You must be logged in to use the chat" - by HenrySunseri - 23.07.2014, 22:43
Re: "You must be logged in to use the chat" - by HenrySunseri - 23.07.2014, 22:58
Re: "You must be logged in to use the chat" - by HenrySunseri - 23.07.2014, 23:45
Re: "You must be logged in to use the chat" - by Virtual1ty - 25.07.2014, 12:30

Forum Jump:


Users browsing this thread: 1 Guest(s)