Jump to content
MakeWebGames

Solid Snake

Members
  • Posts

    184
  • Joined

  • Last visited

    Never

Everything posted by Solid Snake

  1. Re: ***FREE POKER SCRIPT FOR MCCODES V1*** yer and ill be making a chip exchanger so you can swap it for money
  2. Solid Snake

    Happy Birthday

    Re: Happy Birthday PMSL i sound crazy :lol:lol
  3. Solid Snake

    Happy Birthday

    Re: Happy Birthday <song> HAPPY HAPPY HAPPY BIRTHDAY TO YOU HAVE HAPPY DAY TODAY 'CLAP CLAP' EVERYBODY AT CE WISHES YOU A HAPPY BIRTHDAY, SO HAVE A HAPPY DAY TODAY 'CLAP CLAP' ARE YOU 1 ARE YOU 2 ARE YOU 3,4,5 OR MAYBE MORE :-D EVERYBODY HERE AT CE HOPES YOU GET CARDS THROUGH THE DOOR </song> DAMN if you recognize this song dont blame me i got a BABY BRO :lol:
  4. Re: ***FREE POKER SCRIPT FOR MCCODES V1***   no ill be making CHIPS and they use CHIPS in casinos lol
  5. Re: ***FREE POKER SCRIPT FOR MCCODES V1*** im going to try and edit it so that it uses chips and chips are basically money only for these games so its like dollars but only for the casino games
  6. Re: ***FREE POKER SCRIPT FOR MCCODES V1***   lol
  7. Re: ***FREE POKER SCRIPT FOR MCCODES V1*** could you make it so that you can play other players
  8. Re: [mccode] Streets for v2.0   lol i used the lite version and it just nicked everything off of you so im not going to use these unless i can find one that actually works lol :-D
  9. Re: stockmarket SQL   i only know one stockmarket.php
  10. Re: stockmarket SQL   the stock market that comes with V2 codes
  11. Is there a stockmarket SQL at all cos my game is asking for a SQL
  12. Re: [mccode] Register Page as soon as you took the screen shot open up paint and click paste and then save it
  13. Re: Personal Detals [free][V2]   its cos i got V1 codes and im wanting this and i have and got confused lol
  14. Re: [mccode] Register Page   on your keyboard press "Prt Scrn"
  15. Re: [mccode] Annoucement Mod this mod could be modified more so that it says Announcements(0) when there isnt no new announcements and when theres a new announcement it says Announcements(1)
  16. Re: [mccode] Register Page yeh wouldnt mind having the same style for the login page but for V1
  17. Re: Personal Detals [free][V2] when you say resiter.php did you mean register.php
  18. Re: [mccode] Supporter Packs what like lol :-)
  19. Re: ill try it yer how on earth you get this working
  20. Re: gym pass create file called vipgympass.php<?php   // VIP Gym Pass Mod // Coded and Tested by LostOne (made into VIP only by madogdan) // Not to be sold as a paid mod but free to use for C.E. members. 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); if($ir['vipdays'] == 0) } die("This feature is for VIPs only."); { //Set below as the price you want to charger per level. $pass = $ir['level'] * 500; echo "<center><h3>Gym Counter</h3>"; if($_POST['submit']) { if($ir['vipgymp'] > 0) { echo "You dont need to by a VIP gym pass right now."; exit; } if($ir['money'] < $pass) { echo "You dont have enough money to get a VIP gym pass, You need \$".$pass.""; exit; } if($ir['gymp'] == 0) { mysql_query("UPDATE users SET money = money - ".$pass." , vipgymp=7 WHERE userid=".$ir['userid']."",$c); echo "Congratulations, you bought a VIP gym pass for ".money_formatter("$pass")." [url='vipgym.php']Start using your pass.[/url]"; } } else { echo "Would you like to by a VIP gym pass for ".money_formatter("$pass")." [i]A VIP gym pass lasts for 7 days from the date of purchase.[/i] <form action='getvippass.php' method='post'> <input type='hidden' name='submit' value='submit'> <input type='submit' value='Yes' /></form> <form action='index.php' method='post'> <input type='submit' value='No' /></form>"; } $h->endpage(); ?> and save more coming later
  21. Re: gym pass vipdone.php <?php /*----------------------------------------------------- -- World Killers Codes -- Created by madogdan -- Copyright held 2007 by madogdan -- 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(); if($_GET['action'] == "cancel") { print "You have cancelled your VIP Status. Please become a VIP later..."; } else if($_GET['action'] == "done") { if(!$_GET['tx']) { die ("Get a life."); } mysql_query("INSERT INTO vip_process VALUES ('',$userid,unix_timestamp(),'{$_GET['type']}');",$c); print "Your donation has been processed. An admin will check it and you should be credited in about 24-48 hours."; } $h->endpage(); ?>
  22. Re: gym pass   <?php /*----------------------------------------------------- -- World Killers Codes -- Created by madogdan -- Copyright held 2005 by madogdan -- vipdays.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(); print <<<EOF <h3>VIP Information Page</h3> <table align='left'> [/b] <td> <img src=paypal.gif> If you become a VIP to World Killers, you will receive [b] [/b]: [b]1st Offer ($10):[/b]<ul>[*]$1000000 game money [*]1000 crystals [*]200 IQ, the hardest stat to get in the game! [*]30 days VIP Status: Green name + cross next to your name[*] Friend and Black Lists[*] 30% Energy every 5 mins instead of 8%[/list] <form action="https://www.paypal.com/cgi-bin/webscr" method="post"> <input type=hidden name=cmd value=_xclick> <input type="hidden" name="business" value="[email protected]"> <input type="hidden" name="item_name" value="WorldKillers|VIP|1|{$ir['userid']}"> <input type="hidden" name="amount" value="10.00"> <input type="hidden" name="no_shipping" value="1"> <input type="hidden" name="return" value="http://world-killers.justfreespace.com/vipdone.php?action=done"> <input type="hidden" name="cancel_return" value="http://world-killers.justfreespace.com/vipdone.php?action=cancel"> <input type="hidden" name="notify_url" value="http://world-killers.justfrespace.com/ipn/ipn_vip.php"> <input type="hidden" name="cn" value="Your Player ID"> <input type="hidden" name="currency_code" value="USD"> <input type="hidden" name="tax" value="0"> <input type="image" src="https://www.paypal.com/en_US/i/btn/x-click-but21.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!"> </form> </table> EOF; $h->endpage(); ?>   theres a VIP pack
  23. Re: gym pass VIP days wont even be hard to do
  24. Re: gym pass   all you need is the gym pass and call this one dgympass.php or summit like that what ever and add i think its require require ['donatordays'] print "This is for donators only"   its summit like that so dont be a div about it lol :-D
  25. Re: gym pass   lol nice try mate buts its easily done lol
×
×
  • Create New...