FlyFF Buffer v1! -Patch 1 released!

Joined
Dec 24, 2006
Messages
1,655
Reaction score
480
FlyFF Buffer v1!

Welcome to the FlyFF Buffer Release thread.

Well... I thought i would release this as the one Aybo released where very badly coded.
I've been working on this the last 2 days and i would really appreciate if you could
post all the bugs you could find. :tongue:

Screenshots:



Download:

v1(with template):
v1(for including purposes(without template)):
v1 Patch 1(works with both versions, just overwrite the existing.):

Small guide:

All you have to do is to configure you config.php and you are set to go.
What you will be able to do is to set the level capacity of the buffer and
the how long the buffs lasts. :D:

To include the include release, make sure you include the buffmain.php. Not the other ones.

Patch 1 Info:

This release includes some minor bug changes and a pretty big security update.

I fixed the unlimited buffs thing so it only updates the time and don't add new buffs.
Cleaned up a little bit in the code.

//Update of 2009
I have updated the links but i will no longer support this project at all so...
If the links go down or if anyone has problems, i won't help.
If anyone wants to carry on with the project, you can if you ask me by MSN.
You also got to provide appropriate credits supplied by me by MSN.
Contact me at "[email protected]".
 
Last edited:
Re: FlyFF Buffer v1

not to be rude but i fink u just copyed the other 1 and changed a few things ect like the logo on it and with other u can do the same
 
Re: FlyFF Buffer v1

not to be rude but i fink u just copyed the other 1 and changed a few things ect like the logo on it and with other u can do the same

Have you even taken a look at the code?
Btw, he copied and pasted from my Cashshop source.
This is completely coded from scratch. His buff list is based on arrays.
Mine isn't. -.-
 
Re: FlyFF Buffer v1

how do i make it put into my nav bar >_> cause i don't want it to be the site it self ._.

and draticus their both different ones and the other one is credited to spikensbror to on it.
 
Re: FlyFF Buffer v1

Nice release, people won't go around begging GM's for buffs at much. Can't wait till we get the pang buffer up and going though <3
 
Re: FlyFF Buffer v1

CAN U HELP ME? xD im new only to buff thing >.> so can u please tell me where to extract it please
 
Re: FlyFF Buffer v1

k i get this error o;

Code:
Warning: mysql_connect() [function.mysql-connect]: Access denied for user 'ODBC'@'localhost' (using password: NO) in C:\xampp\htdocs\charselect.php on line 20
Select the Character to buff:


Warning: mysql_close(): supplied argument is not a valid MySQL-Link resource in C:\xampp\htdocs\charselect.php on line 50

also when i click buff me after i logged in it says i got the buffs but it says

Code:
Warning: mysql_connect() [function.mysql-connect]: Access denied for user 'ODBC'@'localhost' (using password: NO) in C:\xampp\htdocs\buff.php on line 21

=d

Heres my Charselect file

<?php
/**
* @author JuZTiFY
* @copyright 2008
*/

$username = $_POST['uname'];
$rawpassw = $_POST['passw'];
$password = md5("kikugalanet$rawpassw");
$logged = 'false';

if($username == ""){
$verified = 'false';
} else {
$verified = 'true';
}
if($verified == "true")
{
include "config.php";
$con = mysql_connect($sqlserv, $sqluser, $sqlpass);
mysql_select_db($db);

$query = mysql_query("SELECT * FROM accounts WHERE username = '$username' AND password = '$password'");

$check = mysql_num_rows($query);
if($check != 1){
echo "<p><font color=\"#FF0000\">Could not log you in!<br>Please check your username or password and try again!</font></p>";
} else {
$logged = 'true';
}

if($logged == 'true'){
$query = mysql_query("SELECT * FROM characters WHERE accountname = '$username'");

echo "<form action=\"buff.php\" method=\"post\">";
echo "Select the Character to buff:<br>";
echo "<select name=\"character\">";

while($get = mysql_fetch_array($query)){
$cid = $get['id'];
$character = $get['charname'];

echo "<option value=\"$cid\">$character</option>";
}

echo "</select>";
echo "<input type=\"submit\" value=\"Buff Me Up!\" />";
echo "</form>";
}
mysql_close($con);
} else {
echo "<p><font color=\"#FF0000\">Please log in first.</font></p>";
}
?>
 
Re: FlyFF Buffer v1

k i get this error o;

Code:
Warning: mysql_connect() [function.mysql-connect]: Access denied for user 'ODBC'@'localhost' (using password: NO) in C:\xampp\htdocs\charselect.php on line 20
Select the Character to buff:


Warning: mysql_close(): supplied argument is not a valid MySQL-Link resource in C:\xampp\htdocs\charselect.php on line 50
also when i click buff me after i logged in it says i got the buffs but it says

Code:
Warning: mysql_connect() [function.mysql-connect]: Access denied for user 'ODBC'@'localhost' (using password: NO) in C:\xampp\htdocs\buff.php on line 21
=d

Heres my Charselect file

Have you even configured you config.php?
 
Back