Whats wrong with this one +rep
#4

still same can you fix this one for me ? anyways here is my code

still show wrong password
-----------------------[ 1st experiment ]
pawn Код:
public LoadUser_data(playerid,name[],value[])
{
    INI_String("Password",pData[playerid][pPassword],100);
    return 1;
}

public OnPlayerLogin(playerid,password[])
{
    new string[128];
    if(strcmp(pData[playerid][pPassword],password,true,0))
    {
        INI_ParseFile(UserPath(playerid), "LoadUser_%s", .bExtra = true, .extra = playerid);
    }
    else
    {
        logattempts[playerid] += 1;
        switch(logattempts[playerid])
        {
            case 1: string = "Three more Login Attempts";
            case 2: string = "Two more Login Attempts";
            case 3: string = "One more Login Attempts";
            case 4:
            {
                SendClientMessage(playerid,C_WHITE,"You have been kicked because of ("CORANGE" Failure to Correct password ( 3x )"CWHITE" )");
                Kick(playerid);
            }
        }
        new ldialog[500];
        format(ldialog,sizeof(ldialog),""CWHITE"Welcome back to RicaNiel Role-Play\n\nUser: "CORANGE"%s"CWHITE"\n\nPlease Enter your password to login\n\n [ "CRED"%s"CWHITE" ]",RemoveUnderScore(playerid),string);
        SPD(playerid,D_LOGIN,PASSWORD,""CSERVER"RicaNiel Role-Play",ldialog,"Proceed","Cancel");
    }
    return 1;
}

public OnPlayerRegister(playerid,password[])
{
    if(!strlen(password)) return SPD(playerid,D_REGISTER,INPUT,""CSERVER"RicaNiel Role-Play",""CWHITE"Welcome to RicaNiel Role-Play\nThis Account is not registerd or ("CRED" Unknown To our data base"CWHITE" )\nPlease Enter your password bellow to register\n\nPlease Put a password","Proceed","Cancel");
    if(strlen(password) < 5 ) return SPD(playerid,D_REGISTER,INPUT,""CSERVER"RicaNiel Role-Play",""CWHITE"Welcome to RicaNiel Role-Play\nThis Account is not registerd or ("CRED" Unknown To our data base"CWHITE" )\nPlease Enter your password bellow to register\n\nPlease Enter at least 5 character of your password","Proceed","Cancel");
    new INI:data = INI_Open(UserPath(playerid));
    INI_SetTag(data,"RicaNiel");
    INI_WriteString(data,"Password",password);
    INI_Close(data);
    return 1;
}
my 2nd Experiment his is with hash now

pawn Код:
public LoadUser_data(playerid,name[],value[])
{
    INI_Int("Password",pData[playerid][pPassword]);
    return 1;
}

public OnPlayerLogin(playerid,password[])
{
    new string[128];
    if(udb_hash(password) == pData[playerid][pPassword])
    {
        INI_ParseFile(UserPath(playerid), "LoadUser_%s", .bExtra = true, .extra = playerid);
    }
    else
    {
        logattempts[playerid] += 1;
        switch(logattempts[playerid])
        {
            case 1: string = "Three more Login Attempts";
            case 2: string = "Two more Login Attempts";
            case 3: string = "One more Login Attempts";
            case 4:
            {
                SendClientMessage(playerid,C_WHITE,"You have been kicked because of ("CORANGE" Failure to Correct password ( 3x )"CWHITE" )");
                Kick(playerid);
            }
        }
        new ldialog[500];
        format(ldialog,sizeof(ldialog),""CWHITE"Welcome back to RicaNiel Role-Play\n\nUser: "CORANGE"%s"CWHITE"\n\nPlease Enter your password to login\n\n [ "CRED"%s"CWHITE" ]",RemoveUnderScore(playerid),string);
        SPD(playerid,D_LOGIN,PASSWORD,""CSERVER"RicaNiel Role-Play",ldialog,"Proceed","Cancel");
    }
    return 1;
}

public OnPlayerRegister(playerid,password[])
{
    if(!strlen(password)) return SPD(playerid,D_REGISTER,INPUT,""CSERVER"RicaNiel Role-Play",""CWHITE"Welcome to RicaNiel Role-Play\nThis Account is not registerd or ("CRED" Unknown To our data base"CWHITE" )\nPlease Enter your password bellow to register\n\nPlease Put a password","Proceed","Cancel");
    if(strlen(password) < 5 ) return SPD(playerid,D_REGISTER,INPUT,""CSERVER"RicaNiel Role-Play",""CWHITE"Welcome to RicaNiel Role-Play\nThis Account is not registerd or ("CRED" Unknown To our data base"CWHITE" )\nPlease Enter your password bellow to register\n\nPlease Enter at least 5 character of your password","Proceed","Cancel");
    new INI:data = INI_Open(UserPath(playerid));
    INI_SetTag(data,"RicaNiel");
    INI_WriteInt(data,"Password",udb_hash(password));
    INI_Close(data);
    return 1;
}
Reply


Messages In This Thread
Whats wrong with this one +rep - by RicaNiel - 28.04.2012, 13:55
Re: Whats wrong with this one +rep - by IstuntmanI - 28.04.2012, 13:57
Re: Whats wrong with this one +rep - by Niko_boy - 28.04.2012, 13:59
Re: Whats wrong with this one +rep - by RicaNiel - 28.04.2012, 14:07
Re: Whats wrong with this one +rep - by Niko_boy - 28.04.2012, 14:23
Re: Whats wrong with this one +rep - by RicaNiel - 28.04.2012, 14:27
Re: Whats wrong with this one +rep - by RicaNiel - 28.04.2012, 14:43
Re: Whats wrong with this one +rep - by Niko_boy - 28.04.2012, 14:43
Re: Whats wrong with this one +rep - by RicaNiel - 28.04.2012, 14:49
Re: Whats wrong with this one +rep - by RicaNiel - 28.04.2012, 15:04

Forum Jump:


Users browsing this thread: 4 Guest(s)