[Share] Flyff account creator (web)(update V1.2)

Newbie Spellweaver
Joined
May 20, 2007
Messages
7
Reaction score
0
its is my first release of flyff account creator (web) xd
(sry my english)

installation guide:
open config.php with notepad or dreamweaver or another text editor
PHP:
$host = "localhost"; // host mysql
$user = "root"; // mysql username
$pass = "root"; // mysql password
$db = "flyff"; // mysql db

Attention!

u need modify the following with navicat to this site work!
1) select account db and press design table
pechuga - [Share] Flyff account creator (web)(update V1.2) - RaGEZONE Forums

2)make these boxes
pechuga - [Share] Flyff account creator (web)(update V1.2) - RaGEZONE Forums
 

Attachments

Re: [Share] Flyff account creator (web)

k ill test :P
EDIT: make it look nice like a real web if u can and make it english unless u leched
 
Re: [Share] Flyff account creator (web)

these files can't be used to host a server so no offense but u wasted your time
 
It would actually look more like this:

Code:
<form action="register_do.php" method="post">

  <div align="center"><br />

  </div>

  <table width="338" border="0" align="center">

    <tr>

      <td width="132" height="20" class="b01">*Username:</td>

      <td width="196"><label>

        <input name="user" type="text" class="liteoption" id="user" size="15" maxlength="15" />

      </label></td>

    </tr>

    <tr>

      <td height="25" class="b01">*Password:</td>

      <td><input name="pass1" type="password" class="liteoption" id="pass1" size="15" maxlength="15" /></td>

    </tr>

    <tr>

      <td height="24" class="b01">*Repeat Password: </td>

      <td><input name="pass2" type="password" class="liteoption" id="pass2" size="15" maxlength="15" /></td>

    </tr>

    <tr>

      <td height="24" class="b01">*Bank Password: </td>

      <td><input name="bpass" type="password" class="liteoption" id="bpass" size="15" maxlength="4" /></td>

     </tr>

  </table>

  <p align="center"> </p>

  <p align="center">

    <input name="submit" type="submit" class="liteoption" value="Register" />

  </p>

</form>

<div align="center">

</div>

And then register_do.php:

Code:
  <?php

if(isset($_POST['submit'])) {

if(!$_POST['user'] || !$_POST['pass1'] || !$_POST['pass2'] || !$_POST['bpass']) {

die('You must fill in all of the required (*) fields!<BR>');

}

if(!get_magic_quotes_gpc()) {

$user = addslashes($_POST['user']);

$pass = md5($_POST['pass1']);

$bpass = md5($_POST['bpass']);

} else {

$user = $_POST['user'];

$pass = md5($_POST['pass1']);

$bpass = md5($_POST['bpass']);

}

$pass2 = md5($_POST['pass2']);

$check = mysql_query("SELECT * FROM accounts WHERE username = '$user'");

$check2 = mysql_num_rows($check);

if($check2 != '0') {

die("Username: '".$user."' is in use!");

}

if($pass != $pass2) {

die('Passwords dont match!');

}



$insert_member = mysql_query("INSERT INTO accounts (username, password, logged_in, bankpassword) VALUES ('$user', '$pass', '0', '$bpass')");

if($insert_member) {

echo("<p class='b01'>Registration Complete!");

} else {

echo("<p class='b01'>Registration Failed!</p>");

}}

?>

And then you'd need a config file to define the MySQL settings...
It might look like this:

Code:
   <?php

//-----------Database Details------------------------------------



$host['naam'] = 'localhost';                // my host

$host['gebruikersnaam'] = 'root';       // my database username

$host['wachtwoord'] = '';   // my database password

$host['databasenaam'] = 'FlyFF';       // my database name



//-----------Status Details--------------------------------------



$serverip = "localhost";     //Replace with your WAN IP if public

$loginport = "23000";	     //Don't change

$worldport = "15400";		//Don't Change

$charport = "28000";		//Don't Change

$sql_db = "FlyFF";		     //DB Name

$sql_host = "localhost";     //DB Host

$sql_user = "root";	     	 //DB User

$sql_pass = "";		     	 //DB Password

$logserv_name = "<b>Login Server</b>: ";		 //Login Status Server Name

$worldserv_name = "<b>World Server</b>: ";			// World Status Name

$offline = "<font color =red>Offline</font>";  //Displays Offline Status

$online = "<font color = green>Online</font>";	//Displays Online Status



//-----------Dont Touch This-------------------------------------



$db = mysql_connect($host['naam'], $host['gebruikersnaam'], $host['wachtwoord']) OR die ('Cant connect to the database');

mysql_select_db($host['databasenaam'], $db);

?>

lol my leet web coding >:D
 
People can spam accounts like this....
Anyone know how to create the php that causing people only to register 1 account?? & after registration auto return to the normal page?? that would be better.
 
This script is fail. There is no protection from sql injection what-so-ever.
He should be using mysql_real_escape_string on the username.
 
This script is fail. There is no protection from sql injection what-so-ever.
He should be using mysql_real_escape_string on the username.

you are full of fail. dont criticize someones script if you can post your own to back up what you say
 
Hey anyone can tell me how can i create new characters???

I've tried but everytime it blocks!
In game i cant open with G the Guild Window and with H the charachter window, can anyone help me?
(sry for my english, im italian.=)
 
Hey anyone can tell me how can i create new characters???

I've tried but everytime it blocks!
In game i cant open with G the Guild Window and with H the charachter window, can anyone help me?
(sry for my english, im italian.=)

I had the "G" bug, I just got my old .res and .a and it worked, I was using the most uptodate eFlyFF .res and .a
 
yea i got a site i picked i just gta know how to make it public
i did EVERYTHING! xD

port forward with router (linksys)
got xampp working
got all files put correctly

not sure on what i did last time to make it work xD

can anyone help?

if works then i got it xD
 
Back