
Tysoon
Members-
Posts
43 -
Joined
-
Last visited
Content Type
Profiles
Forums
Events
Everything posted by Tysoon
-
Looking to hire 5 Web Developers & Designer's!! PAYING!!
Tysoon replied to MyGunWars's topic in Paid Modifications
This guy is a time waster, dont do business with him. He has no funds. -
Cronus's mods are terrible His marriage system when you marry and divorse, they both lose houses etc. Buggggggy!
-
Thats my standard home connection, i have a seperate fibre optic connection ill test with that later ;)
-
Go to the database for game in phpmyadmin And find the table userstats Then click structure in phpmydmin Then click change on all the stats EXCEPT userid 65,4 is what it should be, that will keep you going for a while.
-
I dont need to provide proof, ask peter w3theory, he hates me, but he knows exactly what ben did with me, i hired him to code/design a new layout and he posted on the forums offering to pay people for them to fix errors/ intergrate it for him He falsely advertised that he could FULLY intergrate/code/ design a template/layout with ease.. And, failed to do so, peter will back me up that ben nash is a complete fraud.
-
I'm interested, add me on msn, [email protected]
-
Dont team up with ben nash, he is well known for being a crook and a scam artist.
-
i dont think i like your attitude bert, firstly do not speak to me like im a child, you do not know everything. Secondly, this isnt the first time you've done it, have some respect, admin or no admin, i have peter on msn and his personal cell, i dont need to wait a few days Thank's. P,S dont be so damn cocky
-
I'd need to discuss it with peter, he's not online right now, i've called him and left a voicemail.
-
Indeed Yes, your correct peter, i havnt released any funds to him as of yet, i'm still fixing alot of stuff, that needs doing. I'll make a decision on the payment to him in due course.
-
crons suddenly stopped working, im running a dedicated server, will not give you root access etc, ill give you the cron files, the error codes, and ill upload what you give me $5-$10 paypal!! googletalk [email protected] msn [email protected]
-
peter could you send me the coded files? xhtml or whatever please? :)
-
[MCCODES V2] Fully Customise your game layout
Tysoon replied to Uridium's topic in Free Modifications
Illusion, you need to edit your first post on the very first page... and make it clear how to install, not post codes on different pages of the threads, it makes it difficult to follow... Thank's -
[MCCODES V2] Fully Customise your game layout
Tysoon replied to Uridium's topic in Free Modifications
gamelayout.php is BLANK -
[MCCODES V2] Fully Customise your game layout
Tysoon replied to Uridium's topic in Free Modifications
PHP Parse error: syntax error, unexpected T_STRING in /var/www/html/layoutinstall.php on line 324 -
its not worth buying the licence to be honest, so many bugs, so many exploits!
-
if($_SESSION['loggedin']==0) { header("Location: login.php");exit; } thats the line 21 in globals.php the code i posted above this post is authenticate.php im willing to pay a couple dollars for a fix...
-
<?php session_start(); if(get_magic_quotes_gpc() == 0) { foreach($_POST as $k => $v) { $_POST[$k]=addslashes($v); } foreach($_GET as $k => $v) { $_GET[$k]=addslashes($v); } } include "config.php"; global $_CONFIG; define("MONO_ON", 1); require "class/class_db_{$_CONFIG['driver']}.php"; $db=new database; $db->configure($_CONFIG['hostname'], $_CONFIG['username'], $_CONFIG['password'], $_CONFIG['database'], $_CONFIG['persistent']); $db->connect(); $c=$db->connection_id; $set=array(); $settq=$db->query("SELECT * FROM settings"); while($r=$db->fetch_row($settq)) { $set[$r['conf_name']]=$r['conf_value']; } if ($_POST['username'] == "" || $_POST['password'] == "") { die("<h3>{$set['game_name']} Error</h3> You did not fill in the login form!<br> <a href=login.php>> Back</a>"); } $uq=$db->query("SELECT userid FROM users WHERE login_name='{$_POST['username']}' AND `userpass`=md5('{$_POST['password']}')"); if ($db->num_rows($uq)==0) { die("<h3>{$set['game_name']} Error</h3> Invalid username or password!<br> <a href=login.php>> Back</a>"); } else { $_SESSION['loggedin']=1; $mem=$db->fetch_row($uq); $_SESSION['userid']=$mem['userid']; $IP = $_SERVER['REMOTE_ADDR']; $IP = mysql_real_escape_string($IP); $db->query("UPDATE users SET lastip_login='$IP',last_login=unix_timestamp() WHERE userid={$mem['userid']}"); if($set['validate_period'] == "login" && $set['validate_on']) { $db->query("UPDATE users SET verified=0 WHERE userid={$mem['userid']}"); } header("Location: loggedin.php"); } ?>
-
well, i would really appreciate some help please! :(
-
<?php /*--------------------------------- -- MCCODES V2 -- ---------------------------------*/ session_start(); ob_start(); if(get_magic_quotes_gpc() == 0) { foreach($_POST as $k => $v) { $_POST[$k]=addslashes($v); } foreach($_GET as $k => $v) { $_GET[$k]=addslashes($v); } } require "global_func.php"; if($_SESSION['loggedin']==0) { header("Location: login.php");exit; } $userid=$_SESSION['userid']; require "header.php"; include "config.php"; global $_CONFIG; define("MONO_ON", 1); require "class/class_db_{$_CONFIG['driver']}.php"; $db=new database; $db->configure($_CONFIG['hostname'], $_CONFIG['username'], $_CONFIG['password'], $_CONFIG['database'], $_CONFIG['persistent']); $db->connect(); $c=$db->connection_id; $set=array(); $settq=$db->query("SELECT * FROM settings"); while($r=$db->fetch_row($settq)) { $set[$r['conf_name']]=$r['conf_value']; } $domain=$_SERVER['HTTP_HOST']; global $jobquery, $housequery; if($jobquery) { $is=$db->query("SELECT u.*,us.*,j.*,jr.* FROM users u LEFT JOIN userstats us ON u.userid=us.userid LEFT JOIN jobs j ON j.jID=u.job LEFT JOIN jobranks jr ON jr.jrID=u.jobrank WHERE u.userid=$userid"); } else if($housequery) { $is=$db->query("SELECT u.*,us.*,h.* FROM users u LEFT JOIN userstats us ON u.userid=us.userid LEFT JOIN houses h ON h.hWILL=u.maxwill WHERE u.userid=$userid"); } else { $is=$db->query("SELECT u.*,us.* FROM users u LEFT JOIN userstats us ON u.userid=us.userid WHERE u.userid=$userid"); } $ir=$db->fetch_row($is); if($ir['force_logout']) { $db->query("UPDATE users SET force_logout=0 WHERE userid=$userid"); session_unset(); session_destroy(); header("Location: login.php"); exit; } global $macropage; if($macropage && !$ir['verified'] && $set['validate_on']==1) { header("Location: macro1.php?refer=$macropage"); exit; } check_level(); $h = new headers; $h->startheaders(); $fm=money_formatter($ir['money']); $cm=money_formatter($ir['crystals'],''); $lv=date('F j, Y, g:i a',$ir['laston']); global $atkpage; if($atkpage) { $h->userdata($ir,$lv,$fm,$cm,0); } else { $h->userdata($ir,$lv,$fm,$cm); } global $menuhide; if(!$menuhide) { $h->menuarea(); } //Shoutbox function anti_inject($campo) { foreach($campo as $key => $val) { $val = mysql_real_escape_string($val); // store it back into the array $campo[$key] = $val; } return $campo; //Returns the the var clean } //the next two lines make sure all post and get vars are filtered through this function $_POST = anti_inject($_POST); $_GET = anti_inject($_GET); ?>
-
i can provide free mccodes hosting message me! or email me [email protected]
-
Hello! my usersonline.php doesnt show online users, doesnt show on profile either, there is no coding errors etc, PHP Notice: Undefined index: loggedin in /var/www/html/globals.php on line 21 thats the only error i got in ssh root putty. I've got NO idea of what is causing this ? i would really appreciate some help about now:confused:
-
i have a dedicated server lying around spare.