Jump to content
MakeWebGames

houndbite

Members
  • Posts

    38
  • Joined

  • Last visited

Everything posted by houndbite

  1. Re: Whorehouse for V.2 screnny
  2. Again just a whore house for V2 Ok first create a page called whore.php then insert this code   <?php include "globals.php"; if(!$_GET['spend']) { print "<h2>5th Street Whore House</h2> Welcome, we have many fine prostitutes here, both male and female. Prices and payment options are listed below. <h3>For The Guys</h3> <table border='1' width='90%' bordercolor='#939393'><tr background='header.jpg'><th>Prostitute</th><th>Age</th><th>Sex</th><th>Price</th><th><center>Hire</th></tr><tr> <td><center>April</td><td><center>19</td><td><center>Female</td><td><center>$1,000,000</td><td><center>[url='whorehouse.php?spend=april']Hire April[/url]</td></tr><tr> <td><center>Kelly</td><td><center>18</td><td><center>Female</td><td><center>$5,000,000</td><td><center>[url='whorehouse.php?spend=kelly']Hire Kelly[/url]</td></tr><tr> <td><center>Shaniqua</td><td><center>23</td><td><center>Female</td><td><center>$7,000,000</td><td><center>[url='whorehouse.php?spend=shan']Hire Shaniqua[/url]</td></tr><tr> <td><center>Rhonda</td><td><center>20</td><td><center>Female</td><td><center>$10,000,000</td><td><center>[url='whorehouse.php?spend=rhonda']Hire Rhonda[/url]</td></tr></table>"; print " <h3>For The Ladies</h3> <table border='1' width='90%' bordercolor='#939393'><tr background='header.jpg'><th>Prostitute</th><th>Age</th><th>Sex</th><th>Price</th><th><center>Hire</th></tr><tr> <td><center>Mark</td><td><center>26</td><td><center>Male</td><td><center>$1,000,000</td><td><center>[url='whorehouse.php?spend=mark']Hire Mark[/url]</td></tr><tr> <td><center>Jason</td><td><center>23</td><td><center>Male</td><td><center>$5,000,000</td><td><center>[url='whorehouse.php?spend=jason']Hire Jason[/url]</td></tr><tr> <td><center>Jaquez</td><td><center>20</td><td><center>Male</td><td><center>$7,000,000</td><td><center>[url='whorehouse.php?spend=jaq']Hire Jaquez[/url]</td></tr><tr> <td><center>Matthew</td><td><center>29</td><td><center>Male</td><td><center>$10,000,000</td><td><center>[url='whorehouse.php?spend=matt']Hire Matthew[/url]</td></tr></table>"; print " <h3>Gay And Lesbian Only</h3> <table border='1' width='90%' bordercolor='#939393'><tr background='header.jpg'><th>Prostitute</th><th>Age</th><th>Sex</th><th>Price</th><th><center>Hire</th></tr><tr> <td><center>Tommy</td><td><center>22</td><td><center>Male</td><td><center>$1,000,000</td><td><center>[url='whorehouse.php?spend=tom']Hire Tommy[/url]</td></tr><tr> <td><center>Tina</td><td><center>18</td><td><center>Female</td><td><center>$5,000,000</td><td><center>[url='whorehouse.php?spend=tina']Hire Tina[/url]</td></tr><tr> <td><center>Riko</td><td><center>20</td><td><center>Male</td><td><center>$7,000,000</td><td><center>[url='whorehouse.php?spend=riko']Hire Riko[/url]</td></tr><tr> <td><center>Michelle</td><td><center>18</td><td><center>Female</td><td><center>$10,000,000</td><td><center>[url='whorehouse.php?spend=mich']Hire Michelle[/url]</td></tr></table>"; } else { if($_GET['spend'] == 'april') { if($ir['money'] <1000000) { print "You don't have enough money to hire a April!"; } else { mysql_query("UPDATE users SET will=will+35,energy=0,money=money-1000000 WHERE userid=$userid",$c); mysql_query("UPDATE users SET will=maxwill WHERE will > maxwill",$c); print "<center>You payed a April \$1,000,000, took her to the back room and had your way with her. You feel some of your will comming back to you. [url='index.php']>Home[/url]</center>"; } } else if($_GET['spend'] == 'kelly') { if($ir['money'] <5000000) { print "You don't have enough money to hire a Kelly!"; } else { mysql_query("UPDATE users SET will=will+70,energy=0,money=money-5000000 WHERE userid=$userid",$c); mysql_query("UPDATE users SET will=maxwill WHERE will > maxwill",$c); print "<center>You payed a Kelly \$5,000,000, took her to the back room and had your way with her. You feel some of your will comming back to you. [url='index.php']>Home[/url]</center>"; } } else if($_GET['spend'] == 'shan') { if($ir['money'] <7000000) { print "You don't have enough money to hire a Shaniqua!"; } else { mysql_query("UPDATE users SET will=will+140,energy=0,money=money-7000000 WHERE userid=$userid",$c); mysql_query("UPDATE users SET will=maxwill WHERE will > maxwill",$c); print "<center>You payed a Shaniqua \$7,000,000, took her to the back room and had your way with her. You feel some of your will comming back to you. [url='index.php']>Home[/url]</center>"; } } else if($_GET['spend'] == 'rhonda') { if($ir['money'] <10000000) { print "You don't have enough money to hire a Rhonda!"; } else { mysql_query("UPDATE users SET will=will+250,energy=0,money=money-10000000 WHERE userid=$userid",$c); mysql_query("UPDATE users SET will=maxwill WHERE will > maxwill",$c); print "<center>You payed a Rhonda \$10,000,000, took her to the back room and had your way with her. You feel some of your will comming back to you. [url='index.php']>Home[/url]</center>"; } } else if($_GET['spend'] == 'mark') { if($ir['money'] <1000000) { print "You don't have enough money to hire a Mark!"; } else { mysql_query("UPDATE users SET will=will+35,energy=0,money=money-1000000 WHERE userid=$userid",$c); mysql_query("UPDATE users SET will=maxwill WHERE will > maxwill",$c); print "<center>You payed a Mark \$1,000,000, took him to the back room and had your way with him. You feel some of your will comming back to you. [url='index.php']>Home[/url]</center>"; } } else if($_GET['spend'] == 'jason') { if($ir['money'] <5000000) { print "You don't have enough money to hire a Jason!"; } else { mysql_query("UPDATE users SET will=will+70,energy=0,money=money-5000000 WHERE userid=$userid",$c); mysql_query("UPDATE users SET will=maxwill WHERE will > maxwill",$c); print "<center>You payed a Jason \$5,000,000, took him to the back room and had your way with him. You feel some of your will comming back to you. [url='index.php']>Home[/url]</center>"; } } else if($_GET['spend'] == 'jaq') { if($ir['money'] <7000000) { print "You don't have enough money to hire a Jaquez!"; } else { mysql_query("UPDATE users SET will=will+140,energy=0,money=money-7000000 WHERE userid=$userid",$c); mysql_query("UPDATE users SET will=maxwill WHERE will > maxwill",$c); print "<center>You payed a Jaquez \$7,000,000, took him to the back room and had your way with him. You feel some of your will comming back to you. [url='index.php']>Home[/url]</center>"; } } else if($_GET['spend'] == 'matt') { if($ir['money'] <10000000) { print "You don't have enough money to hire a Matthew!"; } else { mysql_query("UPDATE users SET will=will+250,energy=0,money=money-10000000 WHERE userid=$userid",$c); mysql_query("UPDATE users SET will=maxwill WHERE will > maxwill",$c); print "<center>You payed a Matthew \$10,000,000, took him to the back room and had your way with him. You feel some of your will comming back to you. [url='index.php']>Home[/url]</center>"; } } else if($_GET['spend'] == 'tommy') { if($ir['money'] <1000000) { print "You don't have enough money to hire a Tommy!"; } else { mysql_query("UPDATE users SET will=will+35,energy=0,money=money-1000000 WHERE userid=$userid",$c); mysql_query("UPDATE users SET will=maxwill WHERE will > maxwill",$c); print "<center>You payed a Tommy \$1,000,000, took him to the back room and had your way with him. You feel some of your will comming back to you. [url='index.php']>Home[/url]</center>"; } } else if($_GET['spend'] == 'tina') { if($ir['money'] <5000000) { print "You don't have enough money to hire a Tina!"; } else { mysql_query("UPDATE users SET will=will+70,energy=0,money=money-5000000 WHERE userid=$userid",$c); mysql_query("UPDATE users SET will=maxwill WHERE will > maxwill",$c); print "<center>You payed a Tina \$5,000,000, took her to the back room and had your way with her. You feel some of your will comming back to you. [url='index.php']>Home[/url]</center>"; } } else if($_GET['spend'] == 'riko') { if($ir['money'] <7000000) { print "You don't have enough money to hire a Riko!"; } else { mysql_query("UPDATE users SET will=will+140,energy=0,money=money-7000000 WHERE userid=$userid",$c); mysql_query("UPDATE users SET will=maxwill WHERE will > maxwill",$c); print "<center>You payed a Riko \$7,000,000, took him to the back room and had your way with him. You feel some of your will comming back to you. [url='index.php']>Home[/url]</center>"; } } else if($_GET['spend'] == 'mich') { if($ir['money'] <10000000) { print "You don't have enough money to hire a Michelle!"; } else { mysql_query("UPDATE users SET will=will+250,energy=0,money=money-10000000 WHERE userid=$userid",$c); mysql_query("UPDATE users SET will=maxwill WHERE will > maxwill",$c); print "<center>You payed a Michelle \$10,000,000, took her to the back room and had your way with her. You feel some of your will comming back to you. [url='index.php']>Home[/url]</center>"; } } } $h->endpage(); ?>
  3. Re: Updated Explore V.2 ty :D
  4. Re: Updated Explore V.2 Thanks forbidden
  5. Re: Updated Explore V.2 This is old codes dude im getting to the new ones :)
  6. Re: Updated Explore V.2 OK I HAVE THE SCRENNY!!
  7. Re: Updated Explore V.2 Ive got a screenshot here some were Ill find it then show u
  8. Nothing special just an updated Explore for V.2   <?php include "globals.php"; $tresder=(int) rand(100,999); if($ir['jail'] > 0) { die("[b]<font color=red size=+1>You are in Jail for {$ir['jail']} more minute(s). Until you are out you can't view this page</font>[/b] [url='jail.php']Return to Jail[/url]"); } if($ir['hospital'] > 0) { die("[b]<font color=red size=+1>You are in the Hospital for {$ir['hospital']} more minute(s). Until you are out you can't view this page</font>[/b] [url='hospital.php']Return to Hospital[/url]"); } print " <center><table width='715' height='385' border='1' cellpadding='2' class='tablejf1'><center></font><font color=red></font>This is your referal link: http://game-name.com/register.php?REF=$userid Every signup from this link earns you 5 valuable Bullets! <tr background='header.gif'></font><font color=red></font> <td height='25'><div align='center'>[b] <font color=white><u></font><font color=red>Market Place</u></u>[/b]</div></td> <td><div align='center'>[b] <font color=white><u></font><font color=red>Northern IsIe<u/>[/b]</u></div></td> <td><div align='center'>[b] <font color=white><u></font><font color=red>Dark Side</u></font>[/b]</u></div> <td><div align='center'>[b] <font color=white><u></font><font color=red>Dark Side<u/>[/b]</u></div></td></td> </tr> <tr> !NEW! <td><div align='center'>[b] [url='shops.php']Shops[/url] [url='dday.php']Donator Day Market[/url] ".//[url='stepsmarket.php']Steps Market[/url] "[url='itemmarket.php']Item Market[/url] [url='auctions.php']Auction Market[/url] [url='cmarket.php']Bullets Market[/url] </td> [/b]</div></td> <td><div align='center'>[b] [url='monorail.php']Sky Line[/url] [url='estate.php']Estate Agent[/url] ".//[url='bulletbank.php']Bullet Bank[/url] "[url='cyberbank.php']Cyber Bank[/url] [url='bank.php']City Bank[/url]</td> [/b]</div></td> <td><div align='center'>[b] [url='gangcentral.php']Gangs[/url] [url='gangwars.php']Gang Wars[/url] [url='fedjail.php']Federal Jail[/url] [/b]</div></td> <td><div align='center'>[b] [url='crystaltemple.php']Bullets Temple[/url] [url='hitmanagency.php']Hitman Agency[/url] [url='marital.php']Marital Agency[/url] [url='donatorlist.php']View Donators[/url] [url='bar.php']Bulls Club[/url] [url='games.php']Arcade[/url] </div>[/b]</td> </tr> <tr background='header.gif'> <td height='25'><div align='center'>[b] <font color=white><u></font><font color=red>Statistics Dept</u>[/b]</u></div></td> <td><div align='center'>[b] <font color=white><u></font><font color=red>Mysterious[/b]</u></div></td> "./*<td><div align='center'>[b] <font color=white><u></font><font color=red>Drugs Makers</font>[/b]</u></div></td> */"<td><div align='center'>[b] <font color=white><u></font><font color=red>Honor's/ Cars<u/>[/b]</u></div></td><td><div align='center'>[b] <font color=white><u></font><font color=red>Central<u/>[/b]</u></div></td> </tr> <tr> <td><div align='center'>[b] <a href='userlist.php'>Users list[b] <a href='stafflist.php'>Game Name Staff[b] [url='halloffame.php']Hall of Fame[/url] <a href='hallofshame.php'>Hall of Shame[b] <a href='stats.php'>Game Stats[b] [url='usersonline.php']Users Online[/url] [/b]</div></td> <td><div align='center'>[b] [url='missions.php']Missions[/url] [url='raffle.php']Raffle House[/url] [url='polling.php']Polling Station[/url] [url='staffapps.php']Appy For Staff[/url] [url='brothel.php']Brothel House[/url] [url='casino.php']The Casino[/url] [/b]</div></td> "./*<td><div align='center'>[b] [url='drugfarm.php']Drug Farm[/url] [url='drugsmarket.php']Drugs Market[/url] [url='drugfarm.php?action=premade']Buy Drugs[/url] [url='drugfarm.php?action=mydrugs']Your Drugs[/url] [/b]</div></td> */"<td><div align='center'>[b] [url='caryard.php']Car Yard[/url] [url='carmarket.php']Car Market[/url] [url='carcentral.php']Car Central[/url] [url='honorawards.php']Honor Corner[/url] [url='HonorExchange.php']Honor Exchange[/url] </div>[/b]</td> <td><div align='center'>[b] [url='mailbox.php']Mailbox[/url] [url='events.php']Events[/url] [url='forums.php']Forums[/url] [url='gamerules.php']Rules[/url] [url='breport.php']Bug Report[/url] </div>[/b]</td> </tr> </table>"; $h->endpage(); ?>
×
×
  • Create New...