Jump to content
MakeWebGames

reload

Members
  • Posts

    25
  • Joined

  • Last visited

    Never

Everything posted by reload

  1. Re: Searching BuMp
  2. Re: Searching 12 Left, Three Sold
  3. Re: Searching 13 Left, Two Sold
  4. Re: Searching   Yes theres a Section in the staff panel where you can add new images to it ect.
  5. Re: Searching 14 Left, One Sold
  6. Re: Searching No, If you have a look at the Screenshots ect this is very diffrent. And it was coded from scratch.
  7. Hello everyone, This mod allows you to make areas to search ect.. and to search them. In this mod you can make a area where you can find, Items, Money, or Get put in jail or hospital. This is very well coded and i can assure you theres no bugs. Price: $20.00 Availability: 12 Codes Left Rights: You may NOT Re-sell this code to anyone or give it to anyone. This code can only be used on ONE game of your choice. What Comes in the Package? The codes For it. The SQL(s) For it. A Help manual to help you install the codes. The Codes Contain: *Admin panel - Add Area, Edit Area, Delete Area. -Add Area - Allows you to create a place to search. -Edit Area - Once you have created a Area you can add penalties and rewards in this section -Delete Area - Allows you to delete a Area to search. *Searching - Area Options page, Searching page. - Area Options page - Allows you to choose a area to search EG: if you are Level: 5, You might want to select the level 5 area or the level 1 area your choice. - Searching page - Once chosen a Area to search you may click spots and find random things or be punished!.   Screenshots: Area Selection Page Searching page   Thank you if you have any questions please contact me at : [email protected]
  8. Re: Free Jail feature Bribe The guard   lol no problems mate :P
  9. Re: Free Jail feature Bribe The guard   That was allready done with the coded i added above about 5 posts ago   I used reloads post but it certainly did not take money off the victim if he failed the bribed, as I said ive added a line so that if you get caught bribing, you still lose the money, Ive highlited the lines ive added which you can see are not in reloads orriginal, Thank you.   As you see with my code that you try to claim thats yours it was allready taking money away. mysql_query("update users set money=money-$cost where userid=$userid",$c); mysql_query("UPDATE users SET jail=jail+$jailtime, money=money-$cost WHERE userid=$userid", $c); As you see here and if you have a look at the code he submited a good 5 posts after mine whats standing out here?? Is it that he forgot to take away the mysql_query("UPDATE users SET jail=jail+$jailtime, money=money-$cost WHERE userid=$userid", $c); which allready have my -$cost in it? So Now do you think you added it? pfft.
  10. Re: Free Jail feature Bribe The guard   You didnt add anything I allready had that if you get caught trying to bribe him you get jailed and your money gets taken away to. It is Made bold and underlined so you can see it now, Just incase you "couldnt" before.   mysql_query("UPDATE users SET jail=jail+$jailtime, money=money-$cost WHERE userid=$userid", $c);
  11. Re: Free Jail feature Bribe The guard   That was allready done with the coded i added above about 5 posts ago
  12. Re: Free Jail feature Bribe The guard   No i didnt just remove that, I also added if you get caught trying to bribe him you still lose your cash
  13. Re: Free Jail feature Bribe The guard Heres a fixed version and much better than the current one.   <? session_start(); require "globals.php"; if($ir['jail']==0) { die("You arent in jail!"); } //set $cost to what you want it to cost $cost=rand(10000,50000); //set $stat to the stat you want it to use..eg. brave, energy, will etc If ($ir['money']<$cost ) { die ("Your Dont have enough money to bribe the guard or enough brave to do it."); } if(rand(1,100) <= 20) { print "You successfully Bribed your way out of the Battle Creek City Jail."; mysql_query("update users set money=money-$cost where userid=$userid",$c)or die(mysql_error()); mysql_query("UPDATE users SET jail=0 WHERE userid=$userid",$c); } else { $jailtime=(int) rand(1,30); print "You were caught attempting to bribe your way out of the Battle Creek City Jail. The officers beat you for a while and added $jailtime minutes to your sentence."; mysql_query("UPDATE users SET jail=jail+$jailtime, money=money-$cost WHERE userid=$userid", $c); mysql_query("UPDATE users SET jailreason='Caught attempting to escape' WHERE userid=$userid", $c); } ?>   ~reload
×
×
  • Create New...