-
Posts
2,667 -
Joined
-
Last visited
-
Days Won
75
Content Type
Profiles
Forums
Events
Everything posted by Uridium
-
brave not refilling could be a cron problem to test if brave is running create a new cron file give it a new name and take out anything else other than the brave and run it manually if it shows errors then you know it has problems.. is the time for jail going into minus ? and also does this also occur for hospital ?
-
Its not about what we think we wont be playing your game you should be asking your loyal players this question...
-
damn thats some weird **** coding
-
whats "ause" mean ? is that supposed to be something else
-
My guess Jibberish ;)
-
on line 3 of spudinskis code if you want the money too show correctly just overwrite that line with <td>' .money_formatter($r['money']) . '</td>
-
the Login button username and password part looks like its lost the will to live and the rest of the image doesnt want it to be there... you have a enough space under the logo to place your login button username and password inline which will make it look evened out..
-
Hi to All! A Text Based Mafia game - Trigger Happy Mafia!
Uridium replied to KashBFD's topic in Game Projects
keep it fair guys everyone is innocent till proven guilty and if you cant prove guilty keep your gob shut :) -
Code view "error"
Uridium replied to SilvaTungDevil's topic in Programming Tools, Software and much more
I also had the exact sam problem using filezilla except on some occasions when transferring from FTP to PC everything was on 1 line however this may have happened on the upload to server. the file was corrupt when opening in normal windows notepad and had square blocks instead of line breaks... -
NEVER compare your game against one thats already been done the reason TORN was a success is because it had originallity this is why so many games on here fail cos they always try to make them like something thats already been done
-
regards your first problem eregi() depreciated means no longer used so you need to change it to preg_match() Look at the following Query was INSERT INTO users (username, login_name, userpass, level, money, crystals, donatordays, user_level, energy, maxenergy, will, maxwill, brave, maxbrave, hp, maxhp, location, gender, signedup, email, bankmoney, lastip, lastip_signup) VALUES( 'Resistant', 'Resistant', md5(''), 1, 100, 0, 0, 2, 12, 12, 100, 100, 5, 5, 100, 100, 1, '', unix_timestamp(), '[email protected]', -1, '2.125.46.146', '2.125.46.146') now lets strip it username, login_name, userpass, level, money, crystals, donatordays, user_level, energy, maxenergy, will, maxwill, brave, maxbrave, hp, maxhp, location, gender, signedup, email, bankmoney, lastip, lastip_signup so thats 23 INSERTS now count the Values which are 23 also 'Resistant', 'Resistant', md5(''), 1, 100, 0, 0, 2, 12, 12, 100, 100, 5, 5, 100, 100, 1, '', unix_timestamp(), '[email protected]', -1, '2.125.46.146', '2.125.46.146' so from what im seeing your password nor gender are being inserted (unless you removed your pass before posting on here) your half way now to solving this problem, however if your trying to do this over an exsisting SQL on your phpmyadmin you may encounter errors so just for now create a new MYSQL dbase and see if a clean install will work if not then the problem lies in your INSERTS...
-
tom what error are you getting when uploading
-
Ive been using Avast for a fair few years now cant say ive had any problems with the free version supports a quiet mode for gaming so unlike others once gaming mode is on it wont update until youve finished playing your game example battlefield 3. Although as i say ive never encountered problems this may not be the case for others that have used it as everyone oppinion is different..
-
Spud.. not sure if your having same issue with me with Internet explorer but do you find when copying and pasting from any website even non forum types the text is all 1 line... compared to lets say about 20 that you copied
-
And guess who would need to be #1 to stay alive (answers on a postcard) :)
-
you deserve a lolly pop :)
-
Colster keep posting on the site and helping people out with coding or other issues and gain some rep from people within the forums and you may one day see your wishes full filled but at the moment asking for a staff position with 1 post isnt going to do you justice :)
-
then i guess hes talking out of his arse :)
-
I didnt understand a word of that can you take a deep breath and try explaining that again.. Thanks
-
try <?php class headers { function startheaders() { global $ir, $set; echo <<<EOF <html> <head> <style type="text/css"> body { background-color:#7F0172; font-family:Segoe Script; } #wrapper { width:900px; margin-right:auto; margin-left:auto; } #head { background-image:url("ingameimages/banner.png"); background-repeat:no-repeat; width:900px; height:130px; } #left { float:left; height:700px; width:130px; background-color:#f11ff4; border-right:solid 5px #000; } #right{ float:right; height:700px; width:130px; background-color:#f11ff4; border-left:solid 5px #000; } #content { height:700px; width:900px; background-color:#f11ff4; } #footer { clear:both; background-image:url("ingameimages/footer.png"); background-repeat:no-repeat; width:900px; height:130px; } </style> </head> <body> <div id="wrapper"> <div id="head"></div> <div id="left"> EOF; } } function userdata($ir,$lv,$fm,$cm,$dosessh=1) { global $db,$c,$userid, $set; $IP = $db->escape($_SERVER['REMOTE_ADDR']); $db->query("UPDATE `users` SET `laston` = ".$_SERVER['REQUEST_TIME'].",`lastip` = '$IP' WHERE `userid` = $userid"); if(!$ir['email']) { global $domain; die ("<body>Your account may be broken. Please mail help@{$domain} stating your username and player ID."); } if($dosessh && ($_SESSION['attacking'] || $ir['attacking'])) { echo "You lost all your EXP for running from the fight."; $db->query("UPDATE users SET exp=0,attacking=0 WHERE userid=$userid"); $_SESSION['attacking']=0; } $enperc=(int) ($ir['energy']/$ir['maxenergy']*100); $wiperc=(int) ($ir['will']/$ir['maxwill']*100); $experc=(int) ( $ir['exp']/$ir['exp_needed']*100); $brperc=(int) ($ir['brave']/$ir['maxbrave']*100); $hpperc=(int) ($ir['hp']/$ir['maxhp']*100); $enopp=100-$enperc; $wiopp=100-$wiperc; $exopp=100-$experc; $bropp=100-$brperc; $hpopp=100-$hpperc; $d=""; $u=$ir['username']; if($ir['donatordays']) { $u = "<font color=red>{$ir['username']}</font>";$d="<img src='donator.gif' alt='Donator: {$ir['donatordays']} Days Left' title='Donator: {$ir['donatordays']} Days Left' />"; } } $gn=""; global $staffpage; echo" <b>Name:</b> $gn{$u} [{$ir['userid']}] $d<br /> <b>Money:</b> {$fm}<br /> <b>Level:</b> {$ir['level']}<br /> <b>Crystals:</b> {$ir['crystals']}<br />"; function menuarea() { define('jdsf45tji', true, true); include 'mainmenu.php'; global $ir,$c; } function smenuarea() { define('jdsf45tji', true, true); include 'smenu.php'; global $ir,$c; } echo" </div> <div id=\"right\">"; echo" <b>Energy:</b> {$enperc}%<br /> <img src=greenbar.png width=$enperc height=10><img src=redbar.png width=$enopp height=10><br /> <b>Will:</b> {$wiperc}%<br /> <img src=bluebar.png width=$wiperc height=10><img src=redbar.png width=$wiopp height=10><br /> <b>Brave:</b> {$ir['brave']}/{$ir['maxbrave']}<br /> <img src=yellowbar.png width=$brperc height=10><img src=redbar.png width=$bropp height=10><br /> <b>EXP:</b> {$experc}%<br /> <img src=navybar.png width=$experc height=10><img src=redbar.png width=$exopp height=10><br /> <b>Health:</b> {$hpperc}%<br /> <img src=greenbar.png width=$hpperc height=10><img src=redbar.png width=$hpopp height=10><br />"; echo" </div> <div id=\"content\"> </div> <div id=\"footer\"></div> </div> </body> </html>"; function endpage() { global $db; } ?>
-
lmfbo sorry have to post this one lol http://redux.mccodes.com:80 Possible exploit detected
-
http://www.wizwych.com No exploit detected
-
Excellent programme Nick lyndhurst does this justice ;)
-
MCC have a large task on their hands to make V3 as usable as V2. In my eyes V2 set the standards even with its exploit issues so V3 needs to be worth 2 V2's to pull this off
-
Im more engrossed in Alains new engine has a lot going for it :)