Register Script Problem v15

Results 1 to 3 of 3
  1. #1
    Novice SecretFlyff is offline
    MemberRank
    Aug 2011 Join Date
    4Posts

    sad Register Script Problem v15

    Hi all

    I use this script (

    ------------------------------------------------
    <?php
    /* Copyright 2011 Aaron Roderigues */
    require_once "captcha/securimage.php";
    $securimage = new Securimage();

    function doesUsernameExist($name){
    $exit = FALSE;
    $result = @mssql_query("SELECT * FROM dbo.ACCOUNT_TBL WHERE account='$name'");
    if(mssql_num_rows($result) != 0){
    $exit = TRUE;
    }
    return $exit;
    }
    function cl($info){
    return strtolower(preg_replace("|[^\w]|", "", $info));
    }
    function check_email($email){
    $exit = FALSE;
    if(filter_var($email, FILTER_VALIDATE_EMAIL)){
    list($alias, $domain) = split("@", $email);
    if (checkdnsrr($domain, "MX")){
    getmxrr($domain, $mxhosts);
    if(in_array("0.0.0.0", $mxhosts)){
    return $exit;
    }
    return $exit = TRUE;
    }
    else {
    return $exit;
    }
    }
    else {
    return $exit;
    }
    }

    if(isset($_POST['submit'])){
    /* Start editing */
    $salt = "THE_HASH_YOU_USED_WITH_THE_CLIENT";
    $link = @mssql_connect("HOSTIP", "USER", "PASSWORD") or die ("Server is down!");

    $db = @mssql_select_db('ACCOUNT_DBF')..........................
    -------------------------------------

    And I dont know what I write here:

    $salt = "THE_HASH_YOU_USED_WITH_THE_CLIENT";
    $link = @mssql_connect("HOSTIP", "USER", "PASSWORD") or die ("Server is down!");

    Host Ip ok I Know but User ?? Password?? THE_HASH_YOU_USED_WITH_THE_CLIENT???? ( maybe Pc-sqlexpress? )

    Please in response to use an example
    Last edited by SecretFlyff; 23-08-11 at 12:58 PM.


  2. #2
    Account Upgraded | Title Enabled! flyffhelper is offline
    MemberRank
    Dec 2010 Join Date
    419Posts

    Re: Register Script Problem v15

    Salt should be what your flyff launcher use hex edit and find sometimes it's serus or sunkist

    Host should be your mssql like mypc/sqlexpress - user - sa - password - 1234

  3. #3
    MC Web Designs Matt Clarke is offline
    MemberRank
    Oct 2010 Join Date
    UKLocation
    933Posts

    Re: Register Script Problem v15

    Salt = Serus or kikugalanet.

    Host IP = Your IP (goto whattsmyip.org).
    .
    User = The Username you set up, should be "sa". (without quoations).

    Password = Password you set up in the first place.



Advertisement