
jds137
Members-
Posts
402 -
Joined
-
Last visited
Content Type
Profiles
Forums
Events
Everything posted by jds137
-
Yes, I just realized that. See what I get from lack of sleep. lol
-
Let me clarify what I found: Magic's works just fine, its the next one I added that has the error. Great job on them both
-
I received this error message: What shall I do? "QUERY ERROR: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '%u)' at line 1 Query was SELECT * FROM `friendslist` WHERE (`fl_ADDED`=%u)"
-
$db->query("UPDATE `users` SET `money` = `money` - 250 WHERE `loan` > 0", $c); I added to the day cron. Does anyone know of a way to be sure its payed back. Like maybe a house repo after x amount of days?
-
I just tried propose.php and got this as well: All printed out on a white page. Which you add <?php and it works. But there is no redirect as far as I can see, and it says this: You are already married!Being redirected, Please Wait! /*----------------------------------------------------- -- Advanced Marriage Mod -- Product Copyright (c) Halo 2008 -- To be sold as freeware, do not re-sell -- Free for CE Members | Mccode V2 -----------------------------------------------------*/ include "globals.php"; if ($ir['married'] != 0) { print "You are already married![color=white]Being redirected, Please Wait![/color]"; $h->endpage(); exit; } switch($_GET['action']) { case 'propose': propose_form(); break; case 'proposesub': propose_submit(); break; default: index(); break; } function index() { global $db,$ir,$c,$h,$userid; if ($ir['married'] != 0) { print "You are already married![color=white]Being redirected, Please Wait![/color]"; $h->endpage(); exit; } else { print"Proposal Center Do you want to propose to someone? [url='propose.php?action=propose']> Yes[/url] [url='index.php']> No[/url]"; } } function propose_form() { global $db,$ir,$c,$h,$userid; if ($ir['married'] != 0) { print "You are already married![color=white]Being redirected, Please Wait![/color]"; $h->endpage(); exit; } else { print"Proposal Center Please enter the user id of the user you want to propose to: User: Message: "; } } function propose_submit() { global $db,$ir,$c,$h,$userid; if ($ir['married'] != 0) { print "You are already married![color=white]Being redirected, Please Wait![/color]"; $h->endpage(); exit; } else if ($ir['userid'] == $_POST['propose']) { print "You cannot marry yourself![color=white]Being redirected, Please Wait![/color]"; $h->endpage(); exit; } else { $ch=$db->query("SELECT * FROM proposals WHERE proPROPOSED={$_POST['propose']}"); if ($db->num_rows($ch)!=0) { print "This user already has a pending proposal, please try again later![color=white]Being redirected, Please Wait![/color]"; $h->endpage(); exit; } else { $m=$db->query("SELECT * FROM users WHERE userid={$_POST['propose']}"); $r=$db->fetch_row($m); if ($ir['gender'] == $r['gender']) { print "You cannot propose to someone the same gender as you![color=white]Being redirected, Please Wait![/color]"; $h->endpage(); exit; } else { $db->query("INSERT INTO proposals VALUES('', '{$ir['userid']}', '{$_POST['propose']}', '{$_POST['message']}')"); event_add($_POST['propose'],"[url='viewuser.php?u=$userid']{$ir['username']} [{$ir['userid']}][/url] proposed to you Click [url='decision.php'][u]here[/u][/url] to make your mind up ",$c); print"Proposal Center You proposed to {$r['username']} [{$r['userid']}], please wait for their decision[color=white]Being redirected, Please Wait![/color]"; } } } } $h->endpage(); ?>
-
How is this being redirected as it says? Also how secure is all this. I know print is being replaced by echo. print "You are already married![color=white]Being redirected, Please Wait![/color]"; $h->endpage(); exit; }
-
Wheres an example, screen shots etc. You cant expect people to just buy it, based on faith can you. Also why is there 16 files? We need details details details
-
mccode-v1 [mccode] delete gang after respect hit 0
jds137 replied to iseeyou94056's topic in Free Modifications
"$gangs=$db->query("SELECT * FROM gangs WHERE gangRESPECT<=0"); while($gang=$db->fetch_row($gangs)) { $delete=$gang['gangID']; $db->query("DELETE FROM gangwars WHERE warDECLARER=$delete OR warDECLARED=$delete"); $db->query("DELETE FROM gangs WHERE gangRESPECT<=0"); $db->query("UPDATE users SET gang='0' WHERE gang=$delete"); }" -
(CRIME*2)+(LEVEL/2) (CRIME*5)+(LEVEL/15)+(MINE*2)+(LABOUR*0.01) Both work well. I have also made use of oxygen, hunger, mining, and quite a few more things, in order for you to do a crime.
-
I will help if you need it.
-
referred link protection how does that work? I am new to securing, and feel so dumb. But I am trying to learn all I can by reading the posts here. Any advice would be good.
-
I got it figured out. It was on my hosts side. They were doing maint when I loaded the script. Below is the only error I get now Fatal error: Call to undefined function item_delete() in /home/church/ml/public/itemmarket.php on line 30
-
Retract statement
-
Heres what I have done so far. Since I cant find a good loan shark mod for the life of me. It works, but isnt secure, and has some bugs. Anyone wanna pitch in and help? For the record, I am not the best coder, I am still learning. And I thank all in MWG for their help so far since I became a member. Since I am not as brilliant as most of you, for repayment fees, I was gonna add a cron to debit $200 a day for the loan. <?php require_once('globals.php'); if($ir['jail'] or $ir['hospital']) { die("This page cannot be accessed while in the jail or hospital."); } switch($_GET['action']) { case 'borrow': borrow_money_start(); break; case 'borrowed': borrow_money(); break; case 'repay': repay_money_start(); break; case 'repayed': repay_money(); break; default: loanshark_main(); break; } function loanshark_main() { global $ir,$c,$userid,$h; $maxloan=$ir['level']*5000; echo"[img=images/loan-shark.jpg] <h3>Vinny Da Shark</h3>"; echo " How ya doin? I hear you are looking to borrow some money! Thats what I am here for. For using me services all I ask for is a small fee of $200 bucks a day. Dont line then GTFO!!! You currently have a loan of \${$ir['loan']} The max you can borrow is \$$maxloan - [url='loanshark.php?action=borrow']Borrow Money[/url] - [url='loanshark.php?action=repay']Repay Loan[/url] "; } function borrow_money_start() { global $ir,$c,$userid,$h; $maxloan=$ir['level']*5000; echo"The max amount you can borrow is \$$maxloan You currently have a loan of \${$ir['loan']} <form action='loanshark.php?action=borrowed' method='post'> Amount: <input type=text value='$maxloan' name=borrowed> <input type=submit value='Borrow'>"; } function borrow_money() { global $ir,$c,$userid,$h; $maxloan=$ir['level']*5000; $loan=$ir['loan']; if ($loan == $maxloan) { die("You have already taken out the max loan. You must pay it back before you can borrow more > [url='loanshark.php?action=repay']Repay[/url]"); } $db->query("UPDATE users SET loan=loan+{$_POST['borrowed']} where userid='".mysql_real_escape_string($userid)."'",$c); $db->query("UPDATE users SET money=money+{$_POST['borrowed']} where userid='".mysql_real_escape_string($userid)."'",$c); echo"You Borrowed from the loan shark > [url='loanshark.php']Back[/url]"; } function repay_money_start() { global $ir,$c,$userid,$h; echo"You have a loan of \${$ir['loan']} <form action='loanshark.php?action=repayed' method='post'> Amount: <input type=text value='{$ir['loan']}' name=repayed> <input type=submit value='Repay'>"; } function repay_money() { global $ir,$c,$userid,$h; if($ir['loan'] <= 0) { die("You are trying to payback more then u have to > [url='loanshark.php']Back[/url]"); } $db->query("UPDATE users SET loan=loan-{$_POST['repayed']} where userid='".mysql_real_escape_string($userid)."'",$c); $db->query("UPDATE users SET money=money-{$_POST['repayed']} where userid='".mysql_real_escape_string($userid)."'",$c); echo"You repayed the loan shark > [url='loanshark.php']Back[/url]"; } $h->endpage(); ?>
-
Not working as far as I am concerned...
-
Can anyone make it work with the actual item market update, as seen here: [MCcode V2] Item Market Revamped By Radio_active <?php /* Created by raDiO acTivE ~ Free script for CE users Please leave this notice here as courtesy Free Revamp of MCcode V2 Enjoy */ include "globals.php"; print "<h3>Item Market</h3>"; switch($_GET['action']) { case "buy": item_buy(); break; case "gift1": item_gift1(); break; case "gift2": item_gift2(); break; case "remove": itemm_remove(); break; default: imarket_index(); break; } function imarket_index() { global $db,$ir,$c,$userid,$h; print "Viewing all listings... <table width=75% cellspacing=1 class='table'> <tr style='background:gray'> <th>Adder</th> <th>Item</th> <th>Price</th> <th>Links</th> </tr>"; $q = $db->query("SELECT im.`imID`,`imITEM`,`imADDER`,`imPRICE`,`imCURRENCY`, i.`itmid`,`itmtype`,`itmname`, u.`userid`,`username`, it.`itmtypeid`,`itmtypename` FROM itemmarket im LEFT JOIN `items` i ON im.imITEM = i.itmid LEFT JOIN `users` u ON u.userid = im.imadder LEFT JOIN `itemtypes` it ON i.itmtype = it.itmtypeid ORDER BY i.itmtype, i.itmname ASC" ); // Created by raDiO acTivE ~ Free script for CE users $lt=""; while ( $r=$db->fetch_row($q) ) { if($lt!=$r['itmtypename']) { $lt=$r['itmtypename']; echo"\n <tr style='background: gray;'> <th colspan=4>{$lt}</th> </tr> "; } if($r['imCURRENCY']=="money") { $price="\$".number_format($r['imPRICE']); } else { $price = number_format($r['imPRICE'])." silvers"; } if($r['imADDER'] == $userid) { $link = "[[url='itemmarket.php?action=remove&ID=".$r[']Remove[/url]]"; } else { $link = " [[url='itemmarket.php?action=buy&ID=".$r[']Buy[/url]] [[url='itemmarket.php?action=gift1&ID=".$r[']Gift[/url]]"; } echo "\n <tr> <td> [url='viewuser.php?u={$r[']{$r['username']}[/url] [{$r['userid']}]</td> <td>{$r['itmname']}</td> <td>$price</td> <td>[[url='iteminfo.php?ID={$r[']Info[/url]] $link</td> </tr>"; } } function itemm_remove() { global $db,$ir,$c,$userid,$h; $r = sprintf(" SELECT im.`imID`,`imITEM`,`imADDER`,`imPRICE`,`imCURRENCY`, i.`itmid`,`itmtype`, FROM `itemmarket` im LEFT JOIN `items` i ON `im.imITEM` = %d WHERE `imID` = %u AND `imADDER` = %d", i.itmid, mysql_real_escape_string($_GET['ID']), $userid); $q = $db->query($r); if(!$db->num_rows($q)) { echo "Error, either this item does not exist, or you are not the owner. [url='itemmarket.php']> Back[/url]"; $h->endpage(); exit; } $r=$db->fetch_row($q); item_add($userid, $r['imITEM'], 1); $i=($db->insert_id()) ? $db->insert_id() : 99999; $delete = sprintf("DELETE FROM `itemmarket` WHERE imID= %u", mysql_real_escape_string($_GET['ID']) ); $db->query($delete); $insert = sprintf("INSERT INTO `imremovelogs` (imrID,imrITEM,imrADDER,imrREMOVE,imrIMID,imrINVID,imrTIME,imrCONTENT) VALUES (%d,%d,%d,%d,%d,%u,unix_timestamp(), {$ir['username']} removed a {$r['itmname']} from the item market.) ", '', $r['imITEM'], $r['imADDER'], $userid, $r['imID'] , $i, $ir['username'] ); echo " Item removed from the market. [url='itemmarket.php']> Back[/url]"; } // Created by raDiO acTivE ~ Free script for CE users function item_buy() { global $db,$ir,$c,$userid,$h; $q = $db->query(sprintf("SELECT `imID`,`imITEM`,`imADDER`,`imPRICE`,`imCURRENCY`, FROM `itemmarket` im LEFT JOIN `items` i ON i.itmid = %d WHERE imID = %u", im.imITEM, mysql_real_escape_string($_GET['ID']) ) ); if(!$db->num_rows($q)) { echo "Error, either this item does not exist, or it has already been bought. [url='itemmarket.php']> Back[/url]"; $h->endpage(); exit; } $r = $db->fetch_row($q); $curr = $r['imCURRENCY']; if($r['imPRICE'] > $ir[$curr]) { echo "Error, you do not have the funds to buy this item. [url='itemmarket.php']> Back[/url]"; $h->endpage(); exit; } item_add($userid, $r['imITEM'], 1); $i=($db->insert_id()) ? $db->insert_id() : 99999; $db->query(sprintf("DELETE FROM `itemmarket` WHERE `imID`=%u", mysql_real_escape_string($_GET['ID']) )); $db->query(sprintf("UPDATE`users` SET $curr = %d - %d WHERE userid=%d", $curr, $r['imPRICE'], $userid)); $db->query(sprintf("UPDATE `users` SET $curr = %d + %d WHERE userid = %u", $curr, $r['imprice'], $r['imADDER'] )); if($curr=="money") { event_add($r['imADDER'], "[url='viewuser.php?u=$userid']{$ir['username']}[/url] bought your {$r['itmname']} item from the market for \$".number_format($r['imPRICE']).". "); $db->query(sprintf("INSERT INTO `imbuylogs` (imbID,imbITEM,imbBUYER,imbADDER,imbREMOVE,imbIMID,imbINVID,imbTIME,imbCONTENT) VALUES (%u,%d,%d,%d,%d,%d,%u, unix_timestamp(), '{$ir['username']} bought a {$r['itmname']} from the item market for \${$r['imPRICE']} from user ID {$r['imADDER']}')", '', $r['imITEM'], $r['imADDER'], $userid, $r['imPRICE'], $r['imID'], $i) ); // Created by raDiO acTivE ~ Free script for CE users echo "You bought the {$r['itmname']} from the market for \$".number_format($r['imPRICE'])."."; } else { event_add( $r['imADDER'], "[url='viewuser.php?u=$userid']{$ir['username']}[/url] bought your {$r['itmname']} item from the market for ".number_format($r['imPRICE'])." crystals."); $db->query(sprintf("INSERT INTO `imbuylogs` (imbID,imbITEM,imbBUYER,imbADDER,imbREMOVE,imbIMID,imbINVID,imbTIME,imbCONTENT) VALUES (%u,%d,%d,%d,%d,%d,%u, unix_timestamp(), '{$ir['username']} bought a {$r['itmname']} from the item market for \${$r['imPRICE']} from user ID {$r['imADDER']}')", '', $r['imITEM'], $r['imADDER'], $userid, $r['imPRICE'], $r['imID'], $i) ); echo "You bought the {$r['itmname']} from the market for ".number_format($r['imPRICE'])." silvers."; } } function item_gift1() { global $db,$ir,$c,$userid,$h; $q = $db->query(sprintf("SELECT `imID`,`imITEM`,`imADDER`,`imPRICE`,`imCURRENCY`, FROM `itemmarket` im LEFT JOIN `items` i ON i.itmid = %d WHERE imID = %u", im.imITEM, mysql_real_escape_string($_GET['ID']) ) ); if(!$db->num_rows($q)) { echo "Error, either this item does not exist, or it has already been bought. [url='itemmarket.php']> Back[/url]"; $h->endpage(); exit; } $r = $db->fetch_row($q); $curr = $r['imCURRENCY']; if($r['imPRICE'] > $ir[$curr]) { echo "Error, you do not have the funds to buy this item. [url='itemmarket.php']> Back[/url]"; $h->endpage(); exit; } // Created by raDiO acTivE ~ Free script for CE users $get = $_GET['ID']; $var = "Buying the [b]%d[/b] for \$".number_format('%d')." as a gift... <form action='itemmarket.php?action=gift2' method='post'> <input type='hidden' name='ID' value='%d' /> Reciever: ".user_dropdown($c,'user')." <input type='submit' value='Buy Item and Send Gift' /> </form>"; $iab = "Buying the [b]%d[/b] for ".number_format('%d')." silvers as a gift... <form action='itemmarket.php?action=gift2' method='post'> <input type='hidden' name='ID' value='%d' /> Reciever: ".user_dropdown($c,'user')." <input type='submit' value='Buy Item and Send Gift' /> </form>"; if($curr=="money") { printf($var,$r['itmname'],$r['imPRICE'],$get); } else { printf($iab,$r['itmname'],$r['imPRICE'],$get); } } // Created by raDiO acTivE ~ Free script for CE users function item_gift2() { global $db,$ir,$c,$userid,$h; $q = $db->query(sprintf("SELECT `imID`,`imITEM`,`imADDER`,`imPRICE`,`imCURRENCY`, FROM `itemmarket` im LEFT JOIN `items` i ON i.itmid = %d WHERE imID = %u", im.imITEM, mysql_real_escape_string($_GET['ID']) ) ); if(!$db->num_rows($q)) { echo "Error, either this item does not exist, or it has already been bought. [url='itemmarket.php']> Back[/url]"; $h->endpage(); exit; } $r = $db->fetch_row($q); // Created by raDiO acTivE ~ Free script for CE users $curr = $r['imCURRENCY']; if($r['imPRICE'] > $ir[$curr]) { echo "Error, you do not have the funds to buy this item. [url='itemmarket.php']> Back[/url]"; $h->endpage(); exit; } item_add($_POST['user'], $r['imITEM'], 1); $i=($db->insert_id()) ? $db->insert_id() : 99999; $db->query(sprintf("DELETE FROM `itemmarket` WHERE `imID`=%u", mysql_real_escape_string($_GET['ID']) )); $db->query(sprintf("UPDATE`users` SET $curr = %d - %d WHERE userid=%d", $curr, $r['imPRICE'], $userid)); // Createed by raDiO acTivE ~ Free script for CE users $db->query(sprintf("UPDATE `users` SET $curr = %d + %d WHERE userid = %u", $curr, $r['imprice'], $r['imADDER'] )); if($curr=="money") { event_add($r['imADDER'], "[url='viewuser.php?u=$userid']{$ir['username']}[/url] bought your {$r['itmname']} item from the market for \$".number_format($r['imPRICE']).". "); event_add($_POST['user'], "<a href='viewuser.php?u=$userid'> {$ir['username']}</a> bought you a {$r['itmname']} from the item market as a gift."); $u = $db->query(sprintf("SELECT `username` FROM `users` WHERE `userid` = '%u' ", mysql_real_escape_string($_POST['user']))); $uname = $db->fetch_single($u); $db->query(sprintf("INSERT INTO `imbuylogs` (imbID,imbITEM,imbBUYER,imbADDER,imbREMOVE,imbIMID,imbINVID,imbTIME,imbCONTENT) VALUES (%u,%d,%d,%d,%d,%d,%u, unix_timestamp(), '{$ir['username']} bought a {$r['itmname']} from the item market for \${$r['imPRICE']} from user ID {$r['imADDER']}')", '', $r['imITEM'], $r['imADDER'], $userid, $r['imPRICE'], $r['imID'], $i) ); { event_add( $r['imADDER'], "[url='viewuser.php?u=$userid']{$ir['username']}[/url] bought your {$r['itmname']} item from the market for ".number_format($r['imPRICE'])." crystals."); event_add( $_POST['user'], "[url='viewuser.php?u=$userid']{$ir['username']}[/url] bought you a {$r['itmname']} from the item market as a gift."); $db->query(sprintf("INSERT INTO `imbuylogs` (imbID,imbITEM,imbBUYER,imbADDER,imbREMOVE,imbIMID,imbINVID,imbTIME,imbCONTENT) VALUES (%u,%d,%d,%d,%d,%d,%u, unix_timestamp(), '{$ir['username']} bought a {$r['itmname']} from the item market for \${$r['imPRICE']} from user ID {$r['imADDER']}')", '', $r['imITEM'], $r['imADDER'], $userid, $r['imPRICE'], $r['imID'], $i) ); echo "You bought the {$r['itmname']} from the market for ".number_format($r['imPRICE'])." silvers and sent the gift to $uname."; } } } $h->endpage(); ?>
-
I will try it out. I like stuff that works. :P
-
if($r['itmtypeid'] == 3) { if($ir['hunger'] > 20){ die("You are already full, are you trying to have a heart attack?");} $db->query("UPDATE users SET hunger=hunger+25 WHERE userid='" . mysql_real_escape_string($userid) . "' AND hunger < maxhunger", $c); $db->query("UPDATE users SET energy=energy+100 WHERE userid='" . mysql_real_escape_string($userid) . "' AND energy < maxenergy", $c); $db->query("UPDATE inventory SET inv_qty=inv_qty-1 WHERE inv_id={$_GET['ID']}",$c); $db->query("DELETE FROM inventory WHERE inv_qty=0",$c); echo "<table class='mailbox' width=555'><td align='center'><font color='orange'>You are starving, you wolf down the food and feel a little better.</font> "; event_add($ir['userid'],"You used the ".$r['itmname']." but remember it only lets you eat so much.",$c); }
-
Fatal error: Cannot redeclare item_add() (previously declared in /home/church/ml/public/global_func.php:561) in /home/church/ml/public/global_func.php on line 561 Is what I keep getting
-
NEW GAMES ONLY--SUPER Secure your Password System, Stop using Md5.
jds137 replied to Joshua's topic in Free Modifications
Two thumbs up :) -
Sorry to beat a dead horse. I was looking at this again, and wanted to know about making it so it doesnt go into the negative for money? Any help is great..
-
As for images, I didnt wanna add them, as I am trying to be original, as well as a good adult. Please feel free to search the web for yours, there is hundreds of them.
-
vip.php <?php include "globals.php"; $money=5000; $moneytaken=sprintf("UPDATE `users` SET `money` = `money` - '%d' WHERE `userid` = ('%u')", $money, $userid); mysql_query($moneytaken); ?> <meta http-equiv="refresh" content="1; url=vip_room.php"> vip_room.php <?php include "globals.php"; if($ir['jail'] or $ir['hospital']) { die("This page cannot be accessed while in prison or hospital."); } if($ir['refilled']>=2) { die("You have been to here already. Please be come back at a later date, you horn dog...y. [url='index.php']Head Home[/url]"); } if(!$_GET['spend']) { print "<h2>The Camel Toe </h2> Welcome, to the Camel Toe's Vip Room. In here we offer quite a show. Please take a look around and check our top of the line strippers. For just a little extra, you can get a private show. [img=cameltoe.jpg] [img=sexy/boobs.gif] [img=images/vip_room.jpg] <h3>House Special</h3> <table border='1' width='90%' bordercolor='#939393'><tr background='header.jpg'><th>Stripper</th><th>Age</th><th>Sex</th><th>Price</th><th><center>Go Private</th></tr><tr> <td><center>Bambi_Passion</td><td><center>18</td><td><center>Female</td><td><center>$4,000</td><td><center>[url='vip_room.php?spend=Bambi_Passion']Bambi_Passion is so warm, and desirable [/url]</td></tr><tr> <td><center>Candi_Cane</td><td><center>18</td><td><center>Female</td><td><center>$4,000</td><td><center>[url='vip_room.php?spend=Candi_Cane']Its Live Lickable Candi_Cane Cane[/url]</td></tr><tr> <td><center>Roxi_Sizzle</td><td><center>18</td><td><center>Female</td><td><center>$4,000</td><td><center>[url='vip_room.php?spend=Roxi_Sizzle']Roxi_Sizzle will make your temperature rise[/url]</td></tr><tr> <td><center>Busty_Moo-ve</td><td><center>18</td><td><center>Female</td><td><center>$4,000</td><td><center>[url='vip_room.php?spend=Busty_Moo-ve']A good ole fashoned farmers daughter[/url]</td></tr></table> "; print"You dont see anything you like. Feel free to head back in the club. [url='stripper.php']Re Enter Club[/url] "; } else { if($_GET['spend'] == 'Bambi_Passion') { if($ir['money'] <3999) { print "You don't have enough money to hire a Bambi_Passion!"; } else { mysql_query("UPDATE users SET brave=brave+20,energy=0,money=money-4000 WHERE userid=$userid",$c); mysql_query("UPDATE users SET will=maxbrave WHERE brave > maxbrave",$c); mysql_query("UPDATE users SET refilled=refilled+1 WHERE userid=$userid",$c); print "<center>[img=sexy/bambi_pasion.gif] </center> You pay Bambi_Passion $4,000, She slowly starts dancing in front of you, removing her top and exposing her breasts. She rubs your face all over them, then proceeds to turn around. Next she lifts up her tiny Skirt, and wiggles her ass in front of you. <br / > You are breathless, and gain some brave back [url='vip_room.php']>Back to the Club[/url]</center>"; } } else if($_GET['spend'] == 'Candi_Cane') { if($ir['money'] <3999) { print "You don't have enough money to hire a Candi_Cane!"; } else { mysql_query("UPDATE users SET will=will+10,energy=0,money=money-4000 WHERE userid=$userid",$c); mysql_query("UPDATE users SET will=maxwill WHERE will > maxwill",$c); mysql_query("UPDATE users SET refilled=refilled+1 WHERE userid=$userid",$c); print "<center>[img=sexy/candi_cane.gif] </center> You payed Candi_Cane $4,000, She slowly starts dancing in front of you, removing her top and exposing her breasts. She rubs your face all over them, then proceeds to turn around. Next she lifts up her tiny School Girl Skirt, and wiggles her ass in front of you. <br / > You are breathless, and gain some will back [url='vip_room.php']>Back to the Club[/url]</center>"; } } else if($_GET['spend'] == 'Roxi_Sizzle') { if($ir['money'] <3999) { print "You don't have enough money to hire a Roxi_Sizzle!"; } else { mysql_query("UPDATE users SET will=will+10,energy=0,money=money-4000 WHERE userid=$userid",$c); mysql_query("UPDATE users SET will=maxwill WHERE will > maxwill",$c); mysql_query("UPDATE users SET refilled=refilled+1 WHERE userid=$userid",$c); print "<center>[img=sexy/roxi_sizzle.gif] </center> You payed Roxi_Sizzle $4,000, She slowly starts dancing in front of you, removing her top and exposing her breasts. She rubs your face all over them, then proceeds to turn around. Next she lifts up her tiny School Girl Skirt, and wiggles her ass in front of you. <br / > You are breathless, and gain some will back [url='vip_room.php']>Back to the Club[/url]</center>"; } } else if($_GET['spend'] == 'Busty_Moo-ve') { if($ir['money'] <3999) { print "You don't have enough money to hire Busty_Moo-ve!"; } else { mysql_query("UPDATE users SET will=will+15,energy=0,money=money-4000 WHERE userid=$userid",$c); mysql_query("UPDATE users SET will=maxwill WHERE will > maxwill",$c); mysql_query("UPDATE users SET refilled=refilled+1 WHERE userid=$userid",$c); print "<center>[img=sexy/busty-moo-ve.gif] </center> You pay Busty $4,000, She slowly starts dancing in front of you, removing her top and exposing her breasts. She rubs your face all over them, then proceeds to turn around. she gyrates, and does a belly dance for you as she wiggles her ass in front of you. <br / > You are breathless, and gain some will back [url='vip_room.php']>Back to the Club[/url]</center>"; } } } $h->endpage; ?>
-
New Version Do with it as you wish. <?php include "globals.php"; if($ir['jail'] or $ir['hospital']) { die("This page cannot be accessed while in prison or hospital."); } if($ir['refilled']>=2) { die("You have been to here already. Please be come back at a later date, you horn dog...y. [url='index.php']Head Home[/url]"); } if(!$_GET['spend']) { print "<h2>The Camel Toe </h2> Welcome, to the Camel Toe. We have quite a selection of strippers for you. Please pull up a chair, or sit at the bar, and feel free to stay a while. Choose from the list below. [img=cameltoe.jpg] <center>[img=sexy/badabing1.jpg] [img=sexy/_o4w0221_1.jpg][img=sexy/6638e325b19891d009ca3266162daa9f.gif] <h3>Slutty Strippers</h3> <table border='1' width='90%' bordercolor='#939393'><tr background='header.jpg'><th>Stripper</th><th>Age</th><th>Sex</th><th>Price</th><th><center>Watch</th></tr><tr> <td><center>Candy</td><td><center>18</td><td><center>Female</td><td><center>$500</td><td><center>[url='stripper.php?spend=Candy']The best Candy in Town [/url]</td></tr><tr> <td><center>Autum</td><td><center>19</td><td><center>Female</td><td><center>$1,000</td><td><center>[url='stripper.php?spend=Autum']Watch A Naughty Nurse[/url]</td></tr><tr> <td><center>Lacey</td><td><center>20</td><td><center>Female</td><td><center>$2,500</td><td><center>[url='stripper.php?spend=Lacey']Teach a lesson to Lacey[/url]</td></tr><tr> <td><center>Mystique</td><td><center>21</td><td><center>Female</td><td><center>$5,000</td><td><center>[url='stripper.php?spend=Mystique']Watch Mystique[/url]</td></tr></table> "; print"Want something more exotic? For only \$5000 you can visit our V.I.P. Suite where you will get a private show. [url='vip.php']Get Ticket[/url] "; } else { if($_GET['spend'] == 'Candy') { if($ir['money'] <499) { print "You don't have enough money to hire a Candy!"; } else { mysql_query("UPDATE users SET brave=brave+2,energy=0,money=money-500 WHERE userid=$userid",$c); mysql_query("UPDATE users SET will=maxbrave WHERE brave > maxbrave",$c); mysql_query("UPDATE users SET refilled=refilled+1 WHERE userid=$userid",$c); print "<center>[img=sexy/697371-1.jpg] </center> You pay Candy $500 She slowly starts dancing in front of you, removing her top and exposing her breasts. She rubs your face all over them, then proceeds to turn around. Next she lifts up her tiny Skirt, and wiggles her ass in front of you. <br / > You are breathless, and gain some brave back [url='stripper.php']>Back to the Club[/url]</center>"; } } else if($_GET['spend'] == 'Autum') { if($ir['money'] <999) { print "You don't have enough money to hire a Autum!"; } else { mysql_query("UPDATE users SET will=0,energy=energy-100,hospital=hospital=10,hospital=100,hospreason='Lost a Kidney at the strip club',money=money-5000 WHERE userid=$userid",$c); mysql_query("UPDATE users SET energy=0 where energy<0"); print "<center>[img=sexy/514129-3.jpg] </center> You payed Autum $1000, then took her to the back room, thats the last thing you remember. When you come to your sitting in a Bathtub full of ice, you see a note taped to a phone saying Call 911 or else you will die. After you make the call you passout again. When you awake your in the Hospital missing a kidney.And you cant even remember how it happened. [url='hospital.php']>Hospital[/url]</center>"; } } else if($_GET['spend'] == 'Lacey') { if($ir['money'] <2499) { print "You don't have enough money to hire a Lacey!"; } else { mysql_query("UPDATE users SET will=will+1,energy=0,money=money-2500 WHERE userid=$userid",$c); mysql_query("UPDATE users SET will=maxwill WHERE will > maxwill",$c); mysql_query("UPDATE users SET refilled=refilled+1 WHERE userid=$userid",$c); print "<center>[img=sexy/516247-2.jpg] </center> You payed a Lacey $2500, She slowly starts dancing in front of you, removing her top and exposing her breasts. She rubs your face all over them, then proceeds to turn around. Next she lifts up her tiny School Girl Skirt, and wiggles her ass in front of you. <br / > You are breathless, and gain some will back [url='stripper.php']>Back to the Club[/url]</center>"; } } else if($_GET['spend'] == 'Mystique') { if($ir['money'] <4999) { print "You don't have enough money to hire Mother Earth!"; } else { mysql_query("UPDATE users SET will=will+3,energy=0,money=money-5000 WHERE userid=$userid",$c); mysql_query("UPDATE users SET will=maxwill WHERE will > maxwill",$c); mysql_query("UPDATE users SET refilled=refilled+1 WHERE userid=$userid",$c); print "<center>[img=motherearth.jpg] </center> You pay Mystique $5,000, She slowly starts dancing in front of you, removing her top and exposing her breasts. She rubs your face all over them, then proceeds to turn around. she gyrates, and does a belly dance for you as she wiggles her ass in front of you. <br / > You are breathless, and gain some will back [url='stripper.php']>Back to the Club[/url]</center>"; } } } $h->endpage; ?>