Jump to content
MakeWebGames

iseeyou94056

Members
  • Posts

    691
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by iseeyou94056

  1. Re: if jail/if hosp still gettin the same error
  2. Re: [site tools] auto backup your site :|
  3. Re: [mccode] Mining mod can someone post the cron for this please :-D
  4. Re: if jail/if hosp Parse error: syntax error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in /home/ganssnet/public_html/header.php on line 118
  5. Re: Medical - Reduce Hospital Time can you make the same thing but for jail time
  6. how do i make it so my banner will change when in jail and hosp i did have it but i lost it
  7. Re: Is There Anyway I Can Change The Levels From 1 2 3.. To Like Scumbag, Civili it was just made after it get ppl on it it will b diff
  8. Re: Is There Anyway I Can Change The Levels From 1 2 3.. To Like Scumbag, Civili crazy if you want to learn go to http://www.dev-tuts.com/ sign up and look at stuff on there and try and learn from that there is not alot on there yet beacuse it is new but it is very very help full
  9. Re: [mccode] validation mod whats the file name for the cron that we add
  10. Re: [mccode] Register Page i took off the thing to click on the box for the agree to tos and it made it so players could not registerr can someone post it again with out the check box please
  11. Re: [Free] [v1] Quests (One Free Quest!) and -CrAzY- look at the code it is easy to find where that is
  12. Re: Counting (nr game) 1440 :evil:
  13. Re: Counting (nr game) 1439
  14. Re: Counting (nr game) 1438
  15. Re: [v1] [Free] Scuba Diving with out the ALTER TABLE `users` ADD `maxoxygen` INT( 11 ) NOT NULL DEFAULT '100'; for me it did not work
  16. Re: [mccode] Improved Estate Agents for v2.0 here for v1   <?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(); $mpq=mysql_query("SELECT * FROM houses WHERE hWILL={$ir['willmax']}",$c); $mp=mysql_fetch_array($mpq); $_GET['property']=abs((int) $_GET['property']); if($_GET['property']) { $npq=mysql_query("SELECT * FROM houses WHERE hID={$_GET['property']}",$c); $np=mysql_fetch_array($npq); if($np['hWILL'] < $mp['hWILL']) { print "You cannot go backwards in houses!"; } else if ($np['hPRICE'] > $ir['money']) { print "You do not have enough money to buy the {$np['hrNAME']}."; } else { mysql_query("UPDATE users SET money=money-{$np['hPRICE']},maxwill={$np['hWILL']},willmax={$np['hWILL']} WHERE userid=$userid",$c); print "Congrats, you bought the {$np['hNAME']} for \${$np['hPRICE']}!"; } } else if (isset($_GET['sellhouse'])) { $npq=mysql_query("SELECT * FROM houses WHERE hWILL={$ir['willmax']}",$c); $np=mysql_fetch_array($npq); if($ir['willmax'] == 100) { print "You already live in the lowest property!"; } else { mysql_query("UPDATE users SET money=money+{$np['hPRICE']},maxwill=100,willmax=100 WHERE userid=$userid",$c); print "You sold your {$np['hNAME']} and went back to your Coffin."; } } else { print "<center>Your current property: <font color=blue>[b]{$mp['hNAME']}[/b]</font> The houses you can buy are listed below. Click a house to buy it. "; if($ir['willmax'] > 100) { print "[url='estate.php?sellhouse']Sell Your Property[/url] "; } $hq=mysql_query("SELECT * FROM houses WHERE hWILL>{$ir['willmax']} ORDER BY hWILL ASC",$c); while($r=mysql_fetch_array($hq)) { print " <table cellspacing=1 class='table'><tr style='background:gray;'><th>House</th><th>House Price</th><th>House Will</th><th>Buy?</th></tr>"; $hq=mysql_query("SELECT * FROM houses WHERE hWILL>{$ir['willmax']} ORDER BY hWILL ASC",$c); while($r=mysql_fetch_array($hq)) { print "<tr><td>{$r['hNAME']}</a></td> <td>\$$t".money_formatter($r['hPRICE'],'')."</td> <td>{$r['hWILL']}</td> <td><a href='estate.php?property={$r['hID']}'>Buy</tr>"; } print "</table>"; } } $h->endpage(); ?>
  17. Re: Menu on Left and Right Side spooky could i get some help with it please
  18. Re: [FREE] DPS TO ITEMS V1 [MCCODES] [uPDATED] i dont get one it say it workes then dont
  19. Re: [v1] [Free] Scuba Diving thatnk when i did it the only thing i forgot was the ALTER TABLE `users` ADD `maxoxygen` INT( 11 ) NOT NULL DEFAULT '100';
  20. Re: [FREE] DPS TO ITEMS V1 [MCCODES] [uPDATED] lol how do u place that wrong
  21. Re: [v1] [Free] Scuba Diving how do i get it to show how much on the header like energy beacuse i tryed and it would not work
  22. Re: [FREE] DPS TO ITEMS V1 [MCCODES] [uPDATED] this did not work for me
  23. Re: [mccode] Advanced Warning System anyone?
  24. Re: [mccode] Advanced Warning System i added that myself and it did not work so i asked on here i might have just put it in the wrong place but ya also just like how it is on tc
  25. Re: [mccode] Advanced Warning System can u make it so when the user is given a warning that it tells then that soeone game them a warrning and what for
×
×
  • Create New...