Rules Dialog Part 2
#7

here's the OnDialogResponse
pawn Код:
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
    switch( dialogid )
    {
        case DIALOG_REGISTER:
        {
            if (!response) return Kick(playerid);
            if(response)
            {
                if(!strlen(inputtext)) return ShowPlayerDialog(playerid, DIALOG_REGISTER, DIALOG_STYLE_INPUT, ""COL_WHITE"Registering...",""COL_RED"You have entered an invalid password.\n"COL_WHITE"Type your password below to register a new account.","Register","Quit");
                new INI:File = INI_Open(UserPath(playerid));
                INI_SetTag(File,"data");
                INI_WriteInt(File,"Password",udb_hash(inputtext));
                INI_WriteInt(File,"Money",0);
                INI_WriteInt(File,"Score",0);
                INI_WriteInt(File,"AdminLvl",0);
                INI_WriteInt(File,"Kills",0);
                INI_WriteInt(File,"Deaths",0);
                INI_Close(File);

                ShowPlayerDialog(playerid, DIALOG_SUCCESS_1, DIALOG_STYLE_MSGBOX,""COL_WHITE"Success!",""COL_GREEN"Great! You're now Registered on your Community!","Ok","");
            }
        }

        case DIALOG_LOGIN:
        {
            if ( !response ) return Kick ( playerid );
            if( response )
            {
                if(udb_hash(inputtext) == PlayerInfo[playerid][pPass])
                {
                    INI_ParseFile(UserPath(playerid), "LoadUser_%s", .bExtra = true, .extra = playerid);
                    GivePlayerMoney(playerid, PlayerInfo[playerid][pCash]);
                    ShowPlayerDialog(playerid, DIALOG_SUCCESS_2, DIALOG_STYLE_MSGBOX,""COL_WHITE"Success!",""COL_GREEN"You have successfully logged in!","Ok","");
                }
                else
                {
                    ShowPlayerDialog(playerid, DIALOG_LOGIN, DIALOG_STYLE_INPUT,""COL_WHITE"Login",""COL_RED"You have entered an incorrect password.\n"COL_WHITE"Type your password below to login.","Login","Quit");
                }
                return 1;
            }
        }
    }
    return 1;
}
Reply


Messages In This Thread
Rules Dialog Part 2 - by Andre02 - 30.07.2014, 07:53
Re: Rules Dialog Part 2 - by MacT - 30.07.2014, 08:12
Re: Rules Dialog Part 2 - by Dignity - 30.07.2014, 08:15
Re : Rules Dialog Part 2 - by Andre02 - 30.07.2014, 08:26
Re : Rules Dialog Part 2 - by Andre02 - 30.07.2014, 08:50
Re: Rules Dialog Part 2 - by IceBilizard - 30.07.2014, 08:54
Re : Rules Dialog Part 2 - by Andre02 - 30.07.2014, 08:56
Re: Rules Dialog Part 2 - by KayJ - 30.07.2014, 09:05
Re : Rules Dialog Part 2 - by Andre02 - 30.07.2014, 09:25
Re: Rules Dialog Part 2 - by KayJ - 30.07.2014, 09:42

Forum Jump:


Users browsing this thread: 1 Guest(s)