Jump to content
MakeWebGames

YoungGold

Members
  • Posts

    937
  • Joined

  • Last visited

Everything posted by YoungGold

  1. Re: [v1] NEW - Weapon Stocks & Transport probably ive heard that this reddevil guy is also a hacker and hacks any sites if his mates ask him to.
  2. Re: [v1] NEW - Weapon Stocks & Transport lol you tell him deception.
  3. how do you block proxies and hackers and stuff like that, really make it hard for hackers. and make your security on your game really good. because far before i open my game i must ahve good security and if i dont have it i wont open. so if anyone could post it here for free then i would greatly appreciate it and i might even give you 1. of my own mods i made :D if not i might end up purhcasing it but if i do buy it it must work 100%
  4. Re: moneycap im not to sure about v2 i think you jsut go to your database go into users, then go to structure and edit money, instead of INT (11) chnage it to BIGINT (10) or something like that im not sure hevent been able to test it yet.
  5. Re: [Mccode][Free] House Pictures aha thanks for posting this was so close to buying it this morning lol shame me website has crashed o well ill add it later.
  6. Re: [mccode] FREE Criminal Record (advanced) ive never seen mods like this before is this like a advanced crimes page
  7. Re: New User Levels i think you go to staff_special and edit in thier jsut add another row
  8. would people like to have a downloadable tutorial of how to install mccodes v1.1 and mccodes v2.2 please give me your ideas on i this would be good or bad thanx
  9. Re: Mod Discussion i was stuck between two things the first option adn the last option even though i like big mods i had to go with anti piracy as that is a big thing atm.
  10. Re: [All] Remove Items from Shops i would add it but my arm is too lazy it cant reach the mouse i can only just manage to reach the keyboard. but nice mod :D
  11. Re: User Bars well i had a friggin bad time this morrnin fixing my stafflist it showed perfectly fine in IE and showed completely wrong in firefox so i was running up and down the room all the time untill i finally fixed it. and isomnerizer i think it might be with the code for your bars post it here and ill check it out for ya.
  12. Re: [v1] Maximum Users Online Counter gd mod mate was trying to make this a couple of days agi never got to completing it as other issues arrised anyways jsut a few tweaks and added it to my v2 game and it works great thanx might be a good idea on places to add the code as in some places where i added it it came up with an error. +1 for you. lol
  13. Re: Counting (nr game) 1411
  14. Re: 3 Word Game on his bottom
  15. Re: [V1] FREE! ID refiller/counter o no wonder it dont work im so dumb lol the reason it didn't work for me is because i dont have my crons wokring atm as im the only one on my game ocding it lol
  16. Re: [V1] FREE! ID refiller/counter it didn't work for me but then again im using v2 would ya mind converting :D i would do it but im a schedule
  17. Re: [V1] FREE! ID refiller/counter great mod +1 for u i was looking for one of these great addition just going to add it now
  18. Re: [mccode] for any version copyright code come on Crazy-t its a lil Challenge for you
  19. Re: [mccode] for any version copyright code hmmm i added this code buy its real annoying it wont allow me to copy my refferal lol is there anyway you can have this so you can copy text on page just not view source. i would help alot ill give +1 for anyone who gets me the code.
  20. Re: CrystalShop Mod!! Free!! for v2   <?php //Coded By Alan //Free Mod/Code session_start(); include "globals.php"; print "<h3>Welcome to the crystal shop this is were you can spend all you crystals on.</h3>"; print "You currently have {$ir['crystals']} crystals "; if($_GET['type'] == "") { Print "<h3>Armor</h3> Plasma Shield - 25 Crystals Rynax Plasma Shield - 45 Crystals "; Print "<h3>Guns</h3> Plasma Gun - 65 Crystals Plasma Rifle - 85 Crystals "; Print "<h3>Medical</h3> Will Potion - 30 Crystals Small Potion - 10 Crystals "; Print "<h3>Food</h3> Sack Lunch - 3 Crystals Hamburger - 5 Crystals "; } else if($_GET['type'] == "plashield") { if($ir['crystals'] <25) { die("You don't have enough crystals!"); } else { mysql_query("UPDATE users SET crystals=crystals-25 WHERE userid=$userid",$c); mysql_query("INSERT INTO inventory VALUES('',97,$userid,1)",$c); print "You successfully traded 25 crystals for a Plasma Shield and gone in to your items."; } } else if($_GET['type'] == "rynaxplasheild") { if($ir['crystals'] <45) { die("You don't have enough crystals!"); } else { mysql_query("UPDATE users SET crystals=crystals-45 WHERE userid=$userid",$c); mysql_query("INSERT INTO inventory VALUES('',98,$userid,1)",$c); print "You successfully traded 45 crystals for a Rynax Plasma Shield and gone in to your items."; } } else if($_GET['type'] == "plasmgun") { if($ir['crystals'] <65) { die("You don't have enough crystals!"); } else { mysql_query("UPDATE users SET crystals=crystals-65 WHERE userid=$userid",$c); mysql_query("INSERT INTO inventory VALUES('',99,$userid,1)",$c); print "You successfully traded 65 crystals for a Plasma Gun and gone in to your items."; } } else if($_GET['type'] == "plasmarifle") { if($ir['crystals'] <85) { die("You don't have enough crystals!"); } else { mysql_query("UPDATE users SET crystals=crystals-85 WHERE userid=$userid",$c); mysql_query("INSERT INTO inventory VALUES('',100,$userid,1)",$c); print "You successfully traded 65 crystals for a Plasma Rifle and gone in to your items."; } } else if($_GET['type'] == "willpot") { if($ir['crystals'] <30) { die("You don't have enough crystals!"); } else { mysql_query("UPDATE users SET crystals=crystals-30 WHERE userid=$userid",$c); mysql_query("INSERT INTO inventory VALUES('',34,$userid,1)",$c); print "You successfully traded 30 crystals for a Will Potion and gone in to your items."; } } else if($_GET['type'] == "smallhealth") { if($ir['crystals'] <10) { die("You don't have enough crystals!"); } else { mysql_query("UPDATE users SET crystals=crystals-10 WHERE userid=$userid",$c); mysql_query("INSERT INTO inventory VALUES('',3,$userid,1)",$c); print "You successfully traded 10 crystals for a Small Potion and gone in to your items."; } } else if($_GET['type'] == "sacklunch") { if($ir['crystals'] <3) { die("You don't have enough crystals!"); } else { mysql_query("UPDATE users SET crystals=crystals-3 WHERE userid=$userid",$c); mysql_query("INSERT INTO inventory VALUES('',1,$userid,1)",$c); print "You successfully traded 3 crystals for a Sack Lunch and gone in to your items."; } } //This is type like a function else if($_GET['type'] == "hamburger") { if($ir['crystals'] <5) { die("You don't have enough crystals!"); } else { mysql_query("UPDATE users SET crystals=crystals-5 WHERE userid=$userid",$c); mysql_query("INSERT INTO inventory VALUES('',5,$userid,1)",$c); print "You successfully traded 5 crystals for a Hamburger and gone in to your items."; } } $h->endpage(); ?>
  21. Re: [Free] [v1] Calculator Mod UCC you would be glad to know now know how to convert inever new it was so easy
  22. Re: Streets.php and cyberbank.php help now it works use this   <?php include "globals.php"; print "<h3>Cyber Bank</h3>"; if($ir['cybermoney']>-1) { switch($_GET['action']) { case "deposit": deposit(); break; case "withdraw": withdraw(); break; default: index(); break; } } else { if(isset($_GET['buy'])) { if($ir['money']>9999999) { print "Congratulations, you bought a bank account for \$10,000,000! [url='cyberbank.php']Start using my account[/url]"; $db->query("UPDATE users SET money=money-10000000,cybermoney=0 WHERE userid=$userid"); } else { print "You do not have enough money to open an account. [url='explore.php']Back to town...[/url]"; } } else { print "Open a bank account today, just \$10,000,000! [url='cyberbank.php?buy']> Yes, sign me up![/url]"; } } function index() { global $db,$ir,$c,$userid,$h; print "\n[b]You currently have \${$ir['cybermoney']} in the bank.[/b] At the end of each day, your bank balance will go up by 7%. <table width='75%' border='2'> <tr> <td width='50%'>[b]Deposit Money[/b] It will cost you 15% of the money you deposit, rounded up. The maximum fee is \$1,500,000.<form action='?action=deposit' method='post'> Amount: <input type='text' name='deposit' value='{$ir['money']}' /> <input type='submit' value='Deposit' /></form></td> <td> [b]Withdraw Money[/b] It will cost you 7.5% of the money you withdraw, rounded up. The maximum fee is \$750,000.<form action='cyberbank.php?action=withdraw' method='post'> Amount: <input type='text' name='withdraw' value='{$ir['cybermoney']}' /> <input type='submit' value='Withdraw' /></form></td> </tr> </table>"; } } function deposit() { global $db,$ir,$c,$userid,$h; $_POST['deposit']=abs((int) $_POST['deposit']); if($_POST['deposit'] > $ir['money']) { print "You do not have enough money to deposit this amount."; } else { $fee=ceil($_POST['deposit']*15/100); if($fee > 1500000) { $fee=1500000; } $gain=$_POST['deposit']-$fee; $ir['cybermoney']+=$gain; $db->query("UPDATE users SET cybermoney=cybermoney+$gain, money=money-{$_POST['deposit']} where userid=$userid"); print "You hand over \${$_POST['deposit']} to be deposited, after the fee is taken (\$$fee), \$$gain is added to your account. [b]You now have \${$ir['cybermoney']} in the Cyber Bank.[/b] [url='cyberbank.php']> Back[/url]"; } } function withdraw() { global $db,$ir,$c,$userid,$h; $_POST['withdraw']=abs((int) $_POST['withdraw']); if($_POST['withdraw'] > $ir['cybermoney']) { print "You do not have enough banked money to withdraw this amount."; } else { $fee=ceil($_POST['withdraw']*75/1000); if($fee > 750000) { $fee=750000; } $gain=$_POST['withdraw']-$fee; $ir['cybermoney']-=$gain; $db->query("UPDATE users SET cybermoney=cybermoney-$gain, money=money+$gain where userid=$userid"); print "You ask to withdraw $gain, the teller hands it over after she takes the bank fees. [b]You now have \${$ir['cybermoney']} in the Cyber Bank.[/b] [url='cyberbank.php']> Back[/url]"; } } $h->endpage(); ?>   * Editted by LostOne: Please use code tags on php pages * Like below (Without the stars): [code*] content [*/code]
  23. Re: Streets.php and cyberbank.php help i still get this error Parse error: syntax error, unexpected T_STRING, expecting T_VARIABLE or '$' in /home2/unitedcr/public_html/cyberbank.php on line 81 o well im working on it :D
  24. Re: DB Error!? o i see now originally it looked like you needed to fill in mysql.php agian but i guess i was wrong
  25. Re: FREE Bug Tracker Mod Parse error: syntax error, unexpected '(', expecting T_STRING or T_VARIABLE or '{' or '$' in /home2/unitedcr/public_html/bugtracker.php on line 11
×
×
  • Create New...