Jump to content
MakeWebGames

krownx

Members
  • Posts

    14
  • Joined

  • Last visited

    Never

Everything posted by krownx

  1. Re: itembuy.php Im glad I could be of some help!
  2. Re: throw an object at the top poster *KrownX tosses a toothpick @ xJOSHx*
  3. Re: sms billing no problem at all!!
  4. Re: MC Code Mailbox Exploit? the exploit I fixed only took a couple of quick and easy lines of code... and I haven't had anymore problems from that end.
  5. Re: throw an object at the top poster *throws a nuke @ twist_killer* :evil:
  6. Re: Fav command   I cant remember for sure which is which, but I think that only marquee will work with IE and blink with Firefox... but this was before IE7 and firefox 1.5
  7. Re: 3 Word Game city park and
  8. Re: Guess the next poster not me!! walker
  9. Re: [FREE] Bodyguard V2.0 thanks for the mod.
  10. Re: itembuy.php what was happening is that it would print the "you dont have enough money" and then finish through the script... what you need is to stop the script there... here is the edit: <?php /*----------------------------------------------------- -- Mono Country v1.0 BETA -- A product of DBS-entertainment -- Copyright held 2005 by Dabomstew -- INDEX.php -----------------------------------------------------*/ 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(); $_GET['ID']= abs((int) $_GET['ID']); $_POST['qty']= abs((int) $_POST['qty']); if(!$_GET['ID'] || !$_POST['qty']) { print "Invalid use of file"; } else if($_POST['qty'] <= 0) { print "You have been added to the delete list for trying to cheat the game."; } else { $q=mysql_query("SELECT * FROM items WHERE itmid={$_GET['ID']}",$c); if(mysql_num_rows($q) == 0) { print "Invalid item ID"; } else { $itemd=mysql_fetch_array($q); $totalm = ($itemd['itmbuyprice']*$_POST['qty']); $itemn=mysql_fetch_array($q); $totaln = ($itemn['itmnugbuy']*$_POST['qty']); if($ir['money'] < $totalm) { print("You don't have enough money to buy this item!"); $h->endpage(); exit; } if($ir['crystals'] < $totaln) { print("You don't have enough nuggets to buy this item!"); $h->endpage(); exit; } else { $itemd=mysql_fetch_array($q); if($ir['crystals'] < $itemd['itmnugbuy']*$_POST['qty']) { print "You don't have enough nuggets to buy this item!"; $h->endpage(); exit; } if($itemd['itmbuyable'] == 0) { print "This item can't be bought!"; $h->endpage(); exit; } } $price=($itemd['itmbuyprice']*$_POST['qty']); $pricen=($itemd['itmnugbuy']*$_POST['qty']); mysql_query("INSERT INTO inventory VALUES('',{$_GET['ID']},$userid,{$_POST['qty']});",$c); mysql_query("UPDATE users SET money=money-$price WHERE userid=$userid",$c); mysql_query("UPDATE users SET crystals=crystals-$pricen WHERE userid=$userid",$c); mysql_query("INSERT INTO itembuylogs VALUES ('', $userid, {$_GET['ID']}, $price, {$_POST['qty']}, unix_timestamp(), '{$ir['username']} bought {$_POST['qty']} {$itemd['itmname']}(s) for {$price}')", $c); { print "You bought {$_POST['qty']} {$itemd['itmname']}(s) for \$$price and $pricen Nuggets"; } } } $h->endpage(); ?>   Hope this helps! I also re-enabled the nuggets
  11. Re: Best Freebies   Never modest are you GZ? Anyway, for one who cannot read someone elses code, you arent that bad of a coder
  12. Re: MC Code Mailbox Exploit? I know of the mailbox bug for v1. Deadlytown went down because someone used XSS the game through the mailbox system. I dont know about the patches and such that have come out since I got my version but if its the same as before, its an easy fix
  13. Re: sms billing havent tried it yet for myself but here's another company doing that: http://www.onebip.com/merchant/?page=56
  14. Re: SQL Injections stryker, I understand you are still trying to save face. There was a point in time that I had been looking around for some "magical" program that I could steal php scripts from, and none exist. As deathstar, Hack3rmatt and the others say, it is impossible to use a program (without a valid username and password) to steal PHP scripts, all you will get when you get the script to download is a filename.php.html file, which in itself is an html file no PHP will be in the script. IF by any chance you do/did have a program like that, SOMEONE would have been able to support your theories... and I know that many have been in the scene long enough to know about a program like that.
×
×
  • Create New...