Jump to content
MakeWebGames

Criminal

Members
  • Posts

    208
  • Joined

  • Last visited

    Never

Criminal's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Criminal

    EID MUBARAK

    Re: EID MUBARAK Eid mubarak to all muslims my eid is on wednesday am a muslim too so 1 fast left then eid yaa
  2. Re: Photoshop Vent Tutorial By me Sorry website down will be up soon
  3. Re: Hello Am back Thank you for welcoming me :-)
  4. Hello am back sorry internet wasent working now it is am happy to everyone again yaa
  5. Re: Playstation 3 Same here i still prefer xbox 360
  6. Re: Photoshop Vent Tutorial By me 70 views and no replys :oops:
  7. Re: Usersonline [V2] Ouch Jameoo why are you saying your girlfriend is ugly lol btw nice mod
  8. Re: Fatal Error If that doesent work then try this   <?php include "globals.php"; $ir['cybermoney'] = floor($ir['cybermoney']); if($ir['jail'] or $ir['hospital']) { die("This page cannot be accessed while in jail or hospital."); } if($ir['location'] < 3) { die("You have to be in Neptune to access the Cyber Bank."); } $sql = ("SELECT * FROM `researchfund`"); $query = $db->query($sql); $row = $db->fetch_row($query); if($row['fund'] >= 35000000 OR $ir['screen'] == 1) { 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 10%. <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='cyberbank.php?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((float) $_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((float) $_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]"; } { } elseif($row['fund'] < 35000000 AND $ir['screen'] == 0) { die("You need to be screened first before you can access the Holiday Gym. Go <a href = 'screening.php' />HERE</a> to get screened."); } $h->endpage(); ?>
  9. Re: Fatal Error Try this   <?php include "globals.php"; $ir['cybermoney'] = floor($ir['cybermoney']); if($ir['jail'] or $ir['hospital']) { die("This page cannot be accessed while in jail or hospital."); } if($ir['location'] < 3) { die("You have to be in Neptune to access the Cyber Bank."); } $sql = ("SELECT * FROM `researchfund`"); $query = $db->query($sql); $row = $db->fetch_row($query); if($row['fund'] >= 35000000 OR $ir['screen'] == 1) { 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 10%. <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='cyberbank.php?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((float) $_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((float) $_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]"; } { } elseif($row['fund'] < 35000000 AND $ir['screen'] == 0) { die("You need to be screened first before you can access the Holiday Gym. Go <a href = 'screening.php' />HERE</a> to get screened."); } $h->endpage(); ?>
  10. Re: Fatal Error   <?php include "globals.php"; $ir['cybermoney'] = floor($ir['cybermoney']); if($ir['jail'] or $ir['hospital']) { die("This page cannot be accessed while in jail or hospital."); } if($ir['location'] < 3) { die("You have to be in Neptune to access the Cyber Bank."); } $sql = ("SELECT * FROM `researchfund`"); $query = $db->query($sql); $row = $db->fetch_row($query); if($row['fund'] >= 35000000 OR $ir['screen'] == 1) { 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 10%. <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='cyberbank.php?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((float) $_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((float) $_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]"; } } } elseif($row['fund'] < 35000000 AND $ir['screen'] == 0) { die("You need to be screened first before you can access the Holiday Gym. Go <a href = 'screening.php' />HERE</a> to get screened."); } $h->endpage(); ?>   Try that mate
  11. Re: Photoshop Vent Tutorial By me You dont have to singup just enter the code on the site and and click download then wait 45 and seconds then click free download ok if not tomw i will upload it to my cpanel and will post a lnik here g2g cya tc
  12. Hello this is my first tutorial i decided to make a tutorial for Criminal-Existence uses i made it on photoshop more tutorials this is a video tutorial enjoy.. http://criminal-assassins.co.cc/Simpe-P ... -vents.wmv do you now dont need to dowload the video go to http://criminal-assassins.co.cc/Simpe-P ... -vents.wmv and it will open the video If there is a problam try opening it with windows media if that doesn't work then download camtasia the link is there to download it under my post . http://www.techsmith.com/download/camtasiatrial.asp Its basicly vent tutorial you can use it anytime and you can learn how to basic shading enjoy
  13. Re: Login Template Updated Image removed For safety
  14. Hi everyone   I have just made this login page just few minutes ago so i decided to try and sell it here i got the hitman render from planetrenders so i am selling it for £15 thats about $30 And i have sliced the images so you will get all the images with it and html the file if you want the psd file with it then the price will be $35 .. Screen shot Updated Changed text too ----- http://img366.imageshack.us/my.php?imag ... g11fp1.gif
  15. Re: MCCode v3 i say $250
×
×
  • Create New...