Jump to content
MakeWebGames

rscott4581

Members
  • Posts

    30
  • Joined

  • Last visited

rscott4581's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Who knows why they are violent, I grew up in Florida, around the alligators, but knew not to go near them, why, because they are violent, they like pit bulls are evil creatures that will attack a human at any given time for no apparent reason other than that is just their nature. Example, my friend raised pit bulls to fight them, had 1 he loved dearly, one day he went to feed it and the dog bit him, had to get over 120 stitches in his arm where they sewed it back on, he had had that dog for 5 years and it had never bit any other person before that day. Why? Because that's how pit bulls are. Take it how you will and really try reading up on them, those animals deserve no more protection than a rattlesnake or an alligator deserves.
  2. These dogs you say are so helpless have been banned many places from their sheer violence, they have killed people, innocent people walking down the street even, and the saddest thing is they can rip a childs leg off in seconds. Have you even thought about what kind of dog you are wanting to defend? A Pit Bull is a killer plain and simple, in the USA they are banned in many places in the south because of the dog fighting and because of their violence towards humans. Do a bit of research, you want to help at least defend something worth defending that isn't in the habit of taking human lives.
  3. You have got to be kidding, people die everyday in the world from human violence and bleeding hearts are worried about ******* dogs. Are you perhaps a member of PETA too? EDIT: Be nice (Djkanna)
  4. Sure people do daily backups, but why should anyone have to babysit a website 24/7 maybe you enjoy doing that but nobody should be forced to because people like to play games... Respect each other and work together and you all could one day become great coders way beyond modding a game.
  5. Yet add your own name to that, you point the finger yet on my game find your name, IP and a log of an exploit attempt... Hypocrites amazing!
  6. Re: [mccodes]Make Items[$10] Will this Take Multiple Items and Make 1 item OR Take 1 item and make Multiple, or will it do both?
  7. Re: [V2] Advanced Template MOD $20 This is a Great Mod.. Very clean and fast... Definitely worth the $$$ Thanks POG~
  8. Re: [mccodes v2] Crons without the need of cronjobs I know this is a older post but do you still have this????
  9. Re: [mccodes v2] Crafting System Mod - players can craft items! ($65) What I want to know is this before I purchase this, I have bought 2 other mods that take multiple items and create 1, but what I have wanted is the reverse, one that takes 1 item and give multiple items or the other way, does this mod do that??
  10. Re: [mccodes v2] Crafting System Mod - players can craft items! ($65) New Item photos and crafting recipes all inclusive huh???
  11. Re: [mccodes v2] Crafting System Mod - players can craft items! ($65) Put the discount back on it and I may purchase it, but not for $65 as much as has to be done to add it to a game.
  12. Re: [mccode] Poker Script for v1 Try this..... Let me know how it works out for ya'll V2 it seems to work..   <?php include "gbs/globals.php"; print "<h1>Poker</h1>"; //-Configuration $ChipPrice=500; // Price Per Chip in Poker $times=350; //-- how many rounds the poker game should last if(!$_SESSION['chips']) { $chiptxt="no"; } else {$chiptext=$_SESSION['chips']; } if(!$_GET['action']) { if($_SESSION['game'] == 1) { die("You cannot visit here while in a game!"); } print "Welcome to the All-Stars Poker Room! This Place is either where you have your day or you don't! Warning: If you enter the game and decide to quit before finished, You lose all your chips You currently have $_SESSION[chips] chips! <table width=50% border=1 style=\"border:groove;\" bordercolor=orange> <tr><td> [url='poker.php?action=buychips']Buy Chips[/url]</td></tr> <tr><td>[url='index.php']Back to Game[/url]</td></tr>"; if($_SESSION['chips'] > 0) { print "<tr><td> [url='poker.php?action=startgame']Start Your Game[/url]</td></tr><tr><td> [url='poker.php?action=sellchips']Sell Chips[/url]</td></tr>"; } print "</table>"; } else if($_GET['action'] == "game" and $_SESSION['game'] == 1) { if($_SESSION['times'] == 0) { print "You have used up all your turns and have finished your Poker game! [url='poker.php']Click here to visit home and use up all your chips on whatever you want[/url] "; $_SESSION['game']=0; $h->endpage(); exit(); } if($_SESSION['chips'] < 1) { print "You have used up all your chips and your broke! You were sent out of the poker room! [url='poker.php']Back[/url] "; $_SESSION['chips']=0; $_SESSION['game']=0; $h->endpage(); exit(); } print "[img=images/pokerroommo8.png] "; if($_POST['chips_use'] < $_SESSION['chips'] and $_POST['chips_use'] > 0 and $_POST['chips_use']) { $chances=rand(150,750); if($chances > 450) { $used=$_POST['chips_use']*2; print "I'm sorry you lost $used chips! <hr />"; $_SESSION['chips']=$_SESSION['chips']-$used; } else { $won=$_POST['chips_use']*5; print "Congrats, You won and were credited $used chips! <hr />"; $_SESSION['chips']=$_SESSION['chips']+$won; } } else if(isset($_GET['gambleall'])) { $chipam=(int) rand(1,$_SESSION['chips']); $chances=rand(150,750); if($chances > 350) { $used=$chipam*2; print "I'm sorry you lost $used chips! <hr />"; $_SESSION['chips']=$_SESSION['chips']-$used; } else { $won=$chipam*5; print "Congrats, You won and were credited $used chips! <hr />"; $_SESSION['chips']=$_SESSION['chips']+$won; } } print "[b]What do you want to do[/b] You have <font color=orange>$_SESSION[chips]</font> chips left You have <font color=green>\$".number_format($ir['money'])."</font> money left You have <font color=teal>\$".number_format($_SESSION['chips']*$ChipPrice)."</font> money from chips <table width=50% border=1><tr><td>[b]Use My Turn[/b] <form action='poker.php?action=game' method='post'>Chips to Use :<input type='text' name='chips_use' value='$_SESSION[chips]'> <input type=submit value='-Take My Turn-'></form> </td></tr></table> [url='poker.php?action=game&gambleall']Gamble Random[/url] [url='poker.php?action=gamequit']Quit Game[/url] "; $_SESSION['game']=1; } else if($_GET['action'] == "gamequit" and $_SESSION['game'] == 1) { if($_GET['next'] == "confirmed") { $_SESSION['times']=0; $_SESSION['game']=0; print "You have left the tournament! [url='poker.php']Back[/url] [url='poker.php?action=gamequit&next=confirmed']Quit now![/url] [url='poker.php?action=game']No, stay in the poker room[/url] "; } } else if($_GET['action'] == "startgame") { if($_SESSION['game'] == 1) { print "You have already started the game [url='poker.php?action=game']Click here to go back to your table[/url] "; exit(); } if($_SESSION['chips'] == 0) { print "You have no chips, So you cannot enter! [url='poker.php?action=room']Back[/url] "; $h->endpage(); exit(); } print "You have started the game [url='poker.php?action=game']Click here to go to your table[/url] "; $_SESSION['game']=1; $_SESSION['times']=$times; } else if($_GET['action'] == "sellchips") { if($_SESSION['game'] == 1) { die("You cannot buy chips while you are in a game"); } if($_SESSION['chips'] == 0) { print "You don't have any chips to sell dude! [url='poker.php']Back[/url] "; } else if($_POST['chips'] > 0) { if($_POST['chips'] > $_SESSION['chips']) { print "I'm sorry you don't have that many chips in your command [url='poker.php']Back[/url] "; } else { $cashtopay=$_POST['chips']*$ChipPrice; mysql_query("UPDATE users SET money=money+$cashtopay WHERE userid=$userid"); $_SESSION['chips']=$_SESSION['chips']-$_POST['chips']; print "You have sold $_POST[chips] chip's and you have been paid \$$cashtopay! [url='poker.php']Back[/url] "; } } else { if($_POST['chips'] < 0) { if($_SESSION['abused'] == "ONCEA") { print "<font color=red>Thats it you've cheated twice, I'll just put you in hospital for 50 minutes and you get can lost cause i get all your chips, Your toasted fool!</font> "; mysql_query("UPDATE users SET hospital=50, hospreason='Tryed to Cheat at the Poker House' WHERE userid=$userid"); $_SESSION['chips']=0; $_SESSION['abused']=0; $h->endpage(); exit(); } print "<font color=red>Thats it, Cheat One more time and your toasted!</font> "; $_SESSION['abused']="ONCEA"; $h->endpage(); exit(); } print "You currently have $_SESSION[chips] You can sell <form action='poker.php?action=sellchips' method='post'> <table width=90% border=1><tr><th>Chips</th><td><input type='text' name='chips' value='$_SESSION[chips]'></td></tr> <tr><th>PPC [size="1"](Price Per Chip)[/size]</th><td>\$".number_format($ChipPrice)."</td></tr> <tr><td colspan=2><input type=submit value='Sell Chips'></td></tr> </table></form>"; } } else if($_GET['action'] == "buychips") { if($_SESSION['game'] == 1) { die("You cannot buy chips while you are in a game"); } if($_POST['chips']> 0) { $POKER['chipprice']=$_POST['chips']*$ChipPrice; if($POKER['chipprice'] > $ir['money']) { print "I'm sorry you don't have enough money to buy $_POST[chips] chips [url='poker.php']Back[/url] "; } else { $new['chips']=$_SESSION['chips']+$_POST['chips']; $_SESSION['chips']=$new['chips']; mysql_query("UPDATE users SET money=money-$POKER[chipprice] WHERE userid=$userid"); print "You bought <font color=orange>$_POST[chips]</font> chips for <font color=green>\$".number_format($POKER[chipprice])."</font>! You must not logout or you will lose all your chips, These chips are only allowed now during your session. [url='poker.php']Back[/url] "; } } else { if($_POST['chips'] < 0) { if($_SESSION['abused'] == "ONCE") { print "<font color=red>Thats it you've cheated twice, I'll just put you in hospital for 50 minutes and you get can lost cause i get all your chips, Your toasted fool!</font> "; mysql_query("UPDATE users SET hospital=50, hospreason='Tryed to Cheat at the Poker House' WHERE userid=$userid"); $_SESSION['chips']=0; $_SESSION['abused']=0; $h->endpage(); exit(); } print "<font color=red>Thats it, Cheat One more time and your toasted!</font> "; $_SESSION['abused']="ONCE"; $h->endpage(); exit(); } print "[b]Buy Chips[/b] <form action='poker.php?action=buychips' method='post' name='buychips'> <table width=50% border=1><tr><th>Chips</th><td> <input type='text' name='chips' size=6 maxlength=4></td></tr> <tr><td colspan=2> </td></tr> <tr><th>PPC [size="1"](Price Per Chip)[/size]</th><td>\$".number_format($ChipPrice)."</td></tr> <tr><td colspan=2><input type=submit value='-Purchase Chips-'></td></tr> </table></form>"; } } else { print "ERROR! You have selected an invalid function, Please check back or Go through the side menu [url='poker.php']Back[/url] "; } $h->endpage(); ?>
  13. Re: [mccode] Script For Header Both of these combined along with an SQL insert I have it to where now it shows where they are on their profiles.. So they both indeed are very useful especially together :) Don't fight about it you all can make some great stuff individually but if you'd combine your efforts instead of all the hating you definitely can do much more! Thank You Both
  14. Re: Workshop ($10) This is an Excellent Modification! And definitely Great Service. Well worth having for those of you that don't have this yet!
  15. Re: mccodes v2 newspaper Thank you so much, this is an Awesome Mod! Very appreciated...
×
×
  • Create New...