Jump to content
MakeWebGames

rscott4581

Members
  • Posts

    30
  • Joined

  • Last visited

Everything posted by rscott4581

  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...
  16. Re: mccodes v2 newspaper It is asking for a postad.php that doesn't exist..
  17. Re: mccodes v2 newspaper It takes me to a blank page asking for postad.php?action=added After I try to post an add that is.   if($_GET['action'] == "add") { print "<h3>Add Advertisement ($10,000)</h3> <form action='postad.php?action=added' method='post'> Ad Title: <input type='text' name='npTITLE' class='textbox'> Ad Body: <textarea rows=5 cols=18 name='npBODY' class='textbox'></textarea> <input class='textbox' type='submit' value='Place Ad ($10,000)' /> </form>
  18. Re: Levels OK I know there is a better way but this works absolutely and without fail, no more click click click... Pay close attention to my exp needed calculation is changed from the original, just swap that out for yours. find this   if($ir['exp'] >= $ir['exp_needed']) { $expu=$ir['exp']-$ir['exp_needed']; $ir['level']+=1; $ir['exp']=$expu; $ir['energy']+=1; $ir['brave']+=1; $ir['maxenergy']+=1; $ir['maxbrave']+=1; $ir['hp']+=50; $ir['maxhp']+=50; $ir['exp_needed']=(int) (($ir['level']+1)*($ir['level']+1)*2.2); $db->query("UPDATE users SET level=level+1,exp=$expu,energy=energy+1,brave=brave+1,maxenergy=maxenergy+1,energy=maxenergy,maxbrave=maxbrave+1, hp=hp+50,maxhp=maxhp+50,hp=maxhp where userid=$userid"); event_add($ir['userid'],"You just Gained a Level!"); }   Underneath it past this, notice the string sequence, this allows for 1 more level for each one added but change the strings in sequence to match up, otherwise it won't work, now some of you that has a better way feel free to post it, but for now this solves the problem of the clicks.   $ir['exp_needed']=(int) (($ir['level']+1)*($ir['level']+1)*2.2); if($expu >= $ir['exp_needed']) { $expa=$expu-$ir['exp_needed']; $ir['level']+=1; $ir['exp']=$expa; $ir['energy']+=1; $ir['brave']+=1; $ir['maxenergy']+=1; $ir['maxbrave']+=1; $ir['hp']+=50; $ir['maxhp']+=50; $ir['exp_needed']=(int) (($ir['level']+1)*($ir['level']+1)*2.2); $db->query("UPDATE users SET level=level+1,exp=$expa,energy=energy+1,brave=brave+1,maxenergy=maxenergy+1,energy=maxenergy,maxbrave=maxbrave+1, hp=hp+50,maxhp=maxhp+50,hp=maxhp where userid=$userid"); event_add($ir['userid'],"You just Gained a Level!"); }   After adding that one it will jump 2 levels now per click if you have enough XP built up to do so...   Add the third underneath that and it jumps 3 levels per click:   $ir['exp_needed']=(int) (($ir['level']+1)*($ir['level']+1)*2.2); if($expa >= $ir['exp_needed']) { $expb=$expa-$ir['exp_needed']; $ir['level']+=1; $ir['exp']=$expb; $ir['energy']+=1; $ir['brave']+=1; $ir['maxenergy']+=1; $ir['maxbrave']+=1; $ir['hp']+=50; $ir['maxhp']+=50; $ir['exp_needed']=(int) (($ir['level']+1)*($ir['level']+1)*2.2); $db->query("UPDATE users SET level=level+1,exp=$expb,energy=energy+1,brave=brave+1,maxenergy=maxenergy+1,energy=maxenergy,maxbrave=maxbrave+1, hp=hp+50,maxhp=maxhp+50,hp=maxhp where userid=$userid"); event_add($ir['userid'],"You just Gained a Level!"); }   Some of you view this as simple etc, it works, plain and simple.
  19. Re: Drop Down User Bar Unfinsished If it was my "mod" I would be ashamed to start with to call it mine as at the least 98% of the code there is the original source code, but indeed it would be my place to say something and not yours nor anyone else's at that point, the barring of course the Admin of the forum itself as he controls what content is and is not posted legitimately, but by all rights it's not really up to him to police the code either. If You emailed the guy in the header of the file and he wanted to pursue it that is his choice, but it seems GoldenZero essentially no longer does mods or his mods are spread out so far and wide everywhere I just don't see him coming here to say anything about it let alone do anything. I buy mods from coders, no reason to steal such cheap stuff for the amount of work put into something, However, I wouldn't even class that as a "mod" to begin with as close as the code is to source let alone put my name on the header of it especially if it's not even working to begin with.. SO is it a mod when it started or did I myself complete it and make it a mod that is the real question I suppose, all code is fairly close, but that file is line for line next to the same on the majority, all I did was complete a function that was half added to the original itemsend.php, if it was an entire Mod from an active member here, I am sure there would be plenty even for me to say, but for what it is, is all this really necessary?
  20. Re: Drop Down User Bar Unfinsished Did you Notorious? that code is hardly different than the original itemsend.php, the only real "modded" thing on it is that header and the user_dropdown that didn't even work to begin with. I am new to this forum but unless it's your mod why are you even asking who's it is etc. Are you here to help or here to Police for the people that have their mods strewn all over the net?
  21. Re: Drop Down User Bar Unfinsished Oh I do agree with that indeed, the dropdown is a nice idea, if you don't ever have many members, but if you hope to Maybe find something better like allow them to post the ID or the Username in the box and send, I tried that and didn't have the greatest luck with doing it that is what brought me here, funny I can fix this but can't make it quite work like I want it to lol...
  22. Re: Drop Down User Bar Unfinsished Well you're missing this <input type='hidden' name='ID' value='{$_GET['ID']}' /> that should go right before User: ".user_dropdown($c,'user')." that's the Item ID that you need but there is still an SQL error.. And this all seems to work now.... there was 1 more change... From this: $u=$db->query("SELECT username FROM users WHERE userid={$_POST['user']}")   To this: $u=$db->query("SELECT username FROM users WHERE userid={$ir['userid']}")
  23. Re: Levels     All this is doing is the exact same thing it was doing... click, click, click, click..... it still has a SET level=level+1 so if 5 levels is jumped, it still takes the clicks to remedy it
  24. Re: [v2] Car Mods This is great, and that did work on the SQL, but now it can't find Garage.php.. I am assuming there is more to this mod than posted?
×
×
  • Create New...