Jump to content
MakeWebGames

AlabamaHit

Members
  • Posts

    1,308
  • Joined

  • Last visited

Everything posted by AlabamaHit

  1. Re: cmarket.php HELP Mother Board Same processor. As you probarly know from picture lol. You will love the copmuter when you get it built. I don't care what anyone says..I'll take AMD over Intel anyday.
  2. Re: cmarket.php HELP Most parts from Tiger Direct. You?
  3. Re: Attack Script made by us one that works Hopefully. It don't cause it don't say anything...One might think CE make an attack.php? Or CE make a game engine...THats what I mean.... Nothing will ever come of it... Is what I mean.
  4. Re: cmarket.php HELP Cool. thats how you got it cheap :-P.
  5. Re: cmarket.php HELP Don't go cheap on mother board.
  6. Re: cmarket.php HELP the computer i built was right at $700 with all extended warretny on all parts..(All my main parts 4 year warrenty)...Um...That was just the tower. And no OS. case processor 8 gig ram dvd drive mother board 2 extra fans 500 gig sata hard drive
  7. Re: cmarket.php HELP I just built a new computer 2 weeks ago....Didn't lose anything. Obviously new hard drive on mine as well...
  8. Re: [McCodes V2] Private Helth Care (Donator Only) Yeah I do lol.. And it seems everyone is having trouble..... Here is v1   <?php // //Free mod...Modified by AlabamaHit. //Idea From Dayo // session_start(); require "global_func.php"; if($_SESSION['loggedin']==0) { header("Location: login.php");exit; } $userid=$_SESSION['userid']; require "header.php"; $h = new headers; $h->startheaders(); include "mysql.php"; global $c; $is=mysql_query("SELECT u.*,us.* FROM users u LEFT JOIN userstats us ON u.userid=us.userid WHERE u.userid=$userid",$c) or die(mysql_error()); $ir=mysql_fetch_array($is); check_level(); $fm=money_formatter($ir['money']); $cm=money_formatter($ir['crystals'],''); $lv=date('F j, Y, g:i a',$ir['laston']); $h->userdata($ir,$lv,$fm,$cm); $h->menuarea(); echo "<h3>Hospital</h3>"; if(isset($_POST['hc'])) { if($ir['donatordays'] == 0) { echo "Sorry, this is for donators only."; echo " "; echo "[url='hospital.php']> Go Back[/url]"; $h->endpage(); exit; } if($ir['money'] < 4999) { echo "Sorry, you need at leaset \$5,000 to get Private Health Care."; echo " "; echo "[url='hospital.php']> Go Back[/url]"; $h->endpage(); exit; } if($ir['hospital'] == 1) { echo "Sorry, you can not get any more health care."; echo " "; echo "[url='hospital.php']> Go Back[/url]"; $h->endpage(); exit; } $hosptime = $ir['hospital'] / 2; $newtime = round($hosptime); $do = sprintf("UPDATE users SET hospital = %u, money = money - 5000 WHERE userid = %u",($newtime),($ir['userid'])); mysql_query($do); echo sprintf("You get Private Health Care you save %u minutes.",($newtime)); echo " "; echo "[url='hospital.php']> Go Back[/url]"; } else { if($ir['donatordays'] > 0) { if ($ir['hospital']) { echo "<form action='hospital.php' method='post'>"; echo "<input type='hidden' name='hc' />"; echo "<input type='submit' value='Get Private Health Care' />"; echo "</form>"; echo " "; } } echo "<table width='75%' class=\"table\" border=\"0\" cellspacing=\"1\"> <tr bgcolor=gray> <th>Name</th> <th>Level</th> <th>Time</th> <th>Reason</th> </tr>"; $q=mysql_query("SELECT u.userid, u.username, u.level, u.hospital, u.hospreason, u.gang, c.* FROM users u LEFT JOIN gangs c ON u.gang=c.gangID WHERE u.hospital > 0 ORDER BY u.hospital DESC",$c); while($r=mysql_fetch_array($q)) { echo " <tr> <td>{$r['gangPREFIX']} [url='viewuser.php?u={$r[']{$r['username']}[/url] [{$r['userid']}]</td> <td>{$r['level']}</td> <td>{$r['hospital']} minutes</td> <td>{$r['hospreason']}</td> </tr>"; } echo "</table>"; } $h->endpage(); ?>   Here is v2   <?php // //Free mod...Modified by AlabamaHit. //Idea From Dayo // include_once("globals.php"); echo "<h3>Hospital</h3>"; if(isset($_POST['hc'])) { if($ir['donatordays'] == 0) { echo "Sorry, this is for donators only."; echo " "; echo "[url='hospital.php']> Go Back[/url]"; $h->endpage(); exit; } if($ir['money'] < 4999) { echo "Sorry, you need at leaset \$5,000 to get Private Health Care."; echo " "; echo "[url='hospital.php']> Go Back[/url]"; $h->endpage(); exit; } if($ir['hospital'] == 1) { echo "Sorry, you can not get any more health care."; echo " "; echo "[url='hospital.php']> Go Back[/url]"; $h->endpage(); exit; } $hosptime = $ir['hospital'] / 2; $newtime = round($hosptime); $do = sprintf("UPDATE users SET hospital = %u, money = money - 5000 WHERE userid = %u",($newtime),($ir['userid'])); $db->query($do); echo sprintf("You get Private Health Care you save %u minutes.",($newtime)); echo " "; echo "[url='hospital.php']> Go Back[/url]"; } else { if($ir['donatordays'] > 0) { if ($ir['hospital']) { echo "<form action='hospital.php' method='post'>"; echo "<input type='hidden' name='hc' />"; echo "<input type='submit' value='Get Private Health Care' />"; echo "</form>"; echo " "; } } echo "<table width='75%' class=\"table\" border=\"0\" cellspacing=\"1\"> <tr bgcolor=gray> <th>Name</th> <th>Level</th> <th>Time</th> <th>Reason</th> </tr>"; $q=$db->query("SELECT u.userid, u.username, u.level, u.hospital, u.hospreason, u.gang, c.* FROM users u LEFT JOIN gangs c ON u.gang=c.gangID WHERE u.hospital > 0 ORDER BY u.hospital DESC",$c); while($r=$db->fetch_row($q)) { echo " <tr> <td>{$r['gangPREFIX']} [url='viewuser.php?u={$r[']{$r['username']}[/url] [{$r['userid']}]</td> <td>{$r['level']}</td> <td>{$r['hospital']} minutes</td> <td>{$r['hospreason']}</td> </tr>"; } echo "</table>"; } $h->endpage(); ?>
  9. Re: cmarket.php HELP If....and Hugh IF...you paid for that v2 script ($300) You WOULD have backed up the files on hard drive...So....I'm not sure your going to get help around here.
  10. Re: Marriage Proposal if($ir['married'] > 1) { echo "No"; exit; }
  11. Re: [McCodes V2] Private Helth Care (Donator Only) His v1 error is he still has $db-> on that page.
  12. Re: Attack Script made by us one that works Hopefully. This topic does not make any since. Why bump it?
  13. Re: [McCodes V2] Private Helth Care (Donator Only) Little bit better version..All on one page... Just replace your hospital.php with this one. No disrespect to anyone. Just got bored and saw that this could be done in the same page...so Here ya go...   <?php include_once("globals.php"); echo "<h3>Hospital</h3>"; if(isset($_POST['hc'])) { if($ir['donatordays'] == 0) { echo "Sorry, this is for donators only."; echo " "; echo "[url='hospital.php']> Go Back[/url]"; $h->endpage(); exit; } if($ir['money'] < 4999) { echo "Sorry, you need at leaset \$5,000 to get Private Health Care."; echo " "; echo "[url='hospital.php']> Go Back[/url]"; $h->endpage(); exit; } if($ir['hospital'] == 1) { echo "Sorry, you can not get any more health care."; echo " "; echo "[url='hospital.php']> Go Back[/url]"; $h->endpage(); exit; } $hosptime = $ir['hospital'] / 2; $newtime = round($hosptime); $do = sprintf("UPDATE users SET hospital = %u, money = money - 5000 WHERE userid = %u",($newtime),($ir['userid'])); $db->query($do); echo sprintf("You get Private Health Care you save %u minutes.",($newtime)); echo " "; echo "[url='hospital.php']> Go Back[/url]"; } else { if($ir['donatordays'] > 0) { if ($ir['hospital']) { echo "<form action='hospital.php' method='post'>"; echo "<input type='hidden' name='hc' />"; echo "<input type='submit' value='Get Private Health Care' />"; echo "</form>"; echo " "; } } echo "<table width='75%' class=\"table\" border=\"0\" cellspacing=\"1\"> <tr bgcolor=gray> <th>Name</th> <th>Level</th> <th>Time</th> <th>Reason</th> </tr>"; $q=$db->query("SELECT u.userid, u.username, u.level, u.hospital, u.hospreason, u.gang, c.* FROM users u LEFT JOIN gangs c ON u.gang=c.gangID WHERE u.hospital > 0 ORDER BY u.hospital DESC",$c); while($r=$db->fetch_row($q)) { echo " <tr> <td>{$r['gangPREFIX']} [url='viewuser.php?u={$r[']{$r['username']}[/url] [{$r['userid']}]</td> <td>{$r['level']}</td> <td>{$r['hospital']} minutes</td> <td>{$r['hospreason']}</td> </tr>"; } echo "</table>"; } $h->endpage(); ?>   EDIT: I have tested. Just not a lot. So you have find errors post here. I will help you with them.
  14. Re: [mccodes] Pay To Click Addon [$20] Ah, thats cool 1 click per day :). You don't hae to appoligize for short reply...It answered my reply perfect :)
  15. Re: Wanting to purchase a few mods Their is a Free Newspaper as well.
  16. Re: [MCCODES V2] Order an FBI investigation. $10 I have never got help on a script and sold it No. I haven't. Now as far as asking for help then using that later to sell...No I haven't. I have taught mysefl from reading tutorials. Not asking for help on here. Their are a couple times i asked questions won't deny that. Also your problem was from a Copy and paste from a Staff page using a defualt switch to kill the page. So this yoru selling is nothing more than a Recode of a page.... Agreed though that was a very small part of a page. And IF you could have done it without my/CE help then why did you ask? Google is by far faster than this site.
  17. Re: [mccodes] Pay To Click Addon [$20] This sounds unfair to the people Paying for these adds..... THey will have 200 peple everyday clicking there add 2 times..and costing them $100s of dollars everyday.. This mod to me is unethicaly.. Your screwing over the person Paying for Advertising. This is reason Google. and big places like that if they see you clicking like that or people clicking like that they Ban your account cuase its waisting the advertisers money. They are paying to get people to use their account Not for you to have people just open new tabs then close them for a game mod.
  18. Re: [MCCODES V2] Order an FBI investigation. $10 So...you asked for help...then made this and sold it...So basically CE helped you amke this now your selling? I mean Heck...that simple problem with switches i bet it was for this mod...if i knew you where sellin it i wouldn't have helped..
  19. Re: this scrpit requires an action Your making it say that...with the Default switch sounds like you took it from a staff page cuase thats what they do if you go straight to the page it says that. You need to set a default for the apge.
  20. Re: [MCCODES V2] Stop Users Refreshing attack pages / Leaving Fight what happends if they are over level 100?
  21. Re: Suicide Bombing THis is script is terrible.....there are so many loop holes and exploits in it its not even funny.. If someone would have bought this you would have had charge backs on Every purchase...
  22. Re: Important Security Issue For All McCode Owners ! Yeah its what you said. lol....But i put it in simple terms for peole cuase they had no clue that you told them how to fix it lol
  23. Re: Windows XP 64 bit Nvidia 9600 GT Mobile drivers? Ahh....No biggie, lol. I know a few people like that. It all just boils down to a persaonl preference. :) I just know from running test on my computer specs in signature. that vista 64 is alot faster than xp64.. But every system is differnt though..
  24. Re: Important Security Issue For All McCode Owners ! Simplest fix to this people is Open and look at all files...ones i can think of off hand are.. authenicate.php, header.php, global_func.php, login.php, register.php just find this code.   $IP = ($_SERVER['HTTP_X_FORWARDED_FOR']) ? $_SERVER['HTTP_X_FORWARDED_FOR'] : $_SERVER['REMOTE_ADDR'];   chagne it to   $IP = $_SERVER['REMOTE_ADDR'];
  25. Re: Important Security Issue For All McCode Owners ! Those are functions...It will take more than just having them on a file to work. You have to call them up.
×
×
  • Create New...