#[ENG] Valhalla RolePlay Best Featured Server Fully Active 24/7 Players All Dynamic Systems!

2 messages · Page 1 of 1 (latest)

midnight pine
#

Thank You Developer ! ❤️

tall dove
#

player graphs look like the server is botted and i'm unable to find any real players on the server apart from 2 staff members online

also the whole server was for sale few days ago (with database with player accounts!) for $20 euros infinitylul

the gamemode used by this server doesn't even hash player passwords and i highly doubt that the owners implemented the hashing there, so your passwords are most likely stored in plain text

    case 1://Регистрация
    {
        if (!(6 <= strlen(inputtext) <= 20))
        {
            SendClientMessage(playerid, 0xF3EFA6FF, !"*{FFFFFF}Регистрация (пароль): {F3EFA6}Длина пароля должна быть не меньше \
                6 и не больше 20 символов");

            return ShowPlayer_RegistrationPassword(playerid);
        }

        OnPlayerRegister(playerid, inputtext);

        return ShowPlayer_RegistrationEmail(playerid);
    }
stock OnPlayerRegister(playerid, password[])
{
    mysql_format(mysql,stringer,sizeof(stringer),"INSERT INTO `accounts` (`Name`, `pKey`) VALUES ('%s', '%e')", PlayerInfo[playerid][pNames], password);
    mysql_function_query(mysql, stringer, false, "@MySQL__GetAccountID", "i", playerid);
    strmid(PlayerInfo[playerid][pKey], password, 0, strlen(password), 64);
    return 1;
}