Jump to content
MakeWebGames

Isomerizer

Members
  • Posts

    1,170
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by Isomerizer

  1. Re: A quick hello and a quick question :)   Give you some mods? Sounds fishy. Hopefully their not purchasable ones you do not own. A warning for you tasnet, some guys will try to sell you DBS modifications what aren't theirs for fast easy money. Make sure they have proof they actually created the mod / script. Also if you ever go to buy v1 / v2, make sure to purchase off Dabomstew (Original creator). DBS is not a good example, the coding is pretty poor and very insecure. If you are too practice using lite, it has no security, so you'll have a lot of practice securing the code. Adding and modifying pre-made mods is a good way to get with the grips of basic PHP tho.
  2. Re: 3 Word Game freakish large skull
  3. Wimbledon 2008 started yesterday. Who's following it? Murray is on today, expectations are high :) Also can't wait to see more of nadal, one hell of a player.
  4. Re: Favorite TV shows - Family Guy <--- Best Cartoon EVER - My Name is Earl - Peep Show
  5. Re: Euro 2008 Bah Holland are out, Damn them russians are good. Never knew Russia were that good. :-o
  6. Re: mysql neeeeeeeeeed help plz pro's   If your unsure, have you tried "localhost" ?
  7. Re: Euro 2008 Ah, so its down to the quarter finals, Holland ftw!
  8. Re: Whats your Favourite Sport! I like playing Tennis & Badminton, mainly racket sports. But i enjoy watching Football.
  9. Isomerizer

    Books

    Re: Books What is this "book" you speak of? >_> Websites, most common ones are: http://www.php.net http://www.w3schools.com/php/default.asp Main ones i use. w3schools is pretty simple and straight forward.
  10. Re: Exp doesn't work This script does not update the exp column at all. So your gonna have to add it. Replace   $db->query("UPDATE `users` SET `will` = {$ir['will']}, energy = energy - {$_POST['amnt']} WHERE `userid` = $userid");   With:   $db->query("UPDATE `users` SET `will` = ".$ir['will'].", `energy` = `energy` - ".$_POST['amnt'].", `exp` = `exp` + ".$exp." WHERE `userid` = ".$userid." ");   Just before this query add:   $exp = $gain / 2; // The amount of experience   Hopefully this should work ;)
  11. Re: [Free] [v1] Scuba Diving   oxygen is already in there then if its giving you a duplicate error. You need 'maxoxygen' in there as well as 'oxygen'. Oxygen table? Its an extra column in the 'users' table not a completely new table...
  12. Re: Exp doesn't work   Your gonna have to edit the exp formula in your gym file.
  13. Re: Exp doesn't work Were talking about exp right, not that other field you have "crimexp" Exp is based off this variable: $ir['exp']+=(int) ($r['crimeSUCCESSMUNY']/8); So the user will be rewarded exp by dividing the crime success money by 8. How much money do they get for completing the crime? You could try diving it by less.. E.g: $ir['exp']+=(int) ($r['crimeSUCCESSMUNY']/4);
  14. Re: Exp doesn't work It will be in your php file where the crime is complete, e.g: docrime.php ;) Looking at another post of yours this is your formula right: ((WILL*0.8)/2.5)+(LEVEL/4). I think, your best bet is to make your formula give more exp. Try... ((WILL*1.5)/2)+(LEVEL/2). If that doesn't work or it gives out to much, then have a play around with it. Its pretty simple maths. It may be a good idea to consider what level and how much will your character has when committing the crime.
  15. Re: [Free] [v1] Scuba Diving   There is no maxoxygen in the users table?  
  16. Re: One Big Code!   <?php die('game over...'); exit; ?>
  17. Re: Cheburn (adam) Torncity   Lol killah, chedburns MSN is ...., I still have him on an old MSN. The guy who added you is a phailure of a faker.
  18. Isomerizer

    threeZ

    Re: [email protected] Welcome :-P
  19. Re: MYSQL.PHP Use the mysql_close at the end of the script, so erm in the endpage() function would be a good idea. Think its located in header.php
  20. Re: MYSQL.PHP The host can also allow more connections.
  21. Re: Biggest Production Bike A bike isn't everything, the rider does alot. Meet me on a bike of your choice, with me on a GSXR 750, track of your choice and lets race :-D Nice riding L1.
  22. Re: y isnt der a jail in v1   Long time ago = yesterday? :lol:
  23. Re: y isnt der a jail in v1   dew nt no m8, u cn serch 4 1 on da foram tho. http://criminalexistence.com/ceforums/i ... pic=9583.0
  24. Re: 'QUERY ERROR: Duplicate entry '100' for key 2' Help please http://criminalexistence.com/ceforums/i ... ic=20893.0
  25. Re: "QUERY ERROR: Duplicate entry '100' for key 2" with Mccodes V2 register page INSERT INTO users (userid, username, login_name, userpass, level, money, crystals, donatordays, user_level, energy, maxenergy, will, maxwill, brave, maxbrave, hp, maxhp, location, gender, signedup, email, bankmoney, lastip, lastip_signup) VALUES( NULL, 'Gangster', 'Gangster', md5('gangster'), 1, 100, 0, 0, 1, 12, 12, 100, 100, 5, 5, 100, 100, 1, 'Male', unix_timestamp(), '[email protected]', -1, 'IP.IP.IP.IP', 'IP.IP.IP.IP') As your trying to overwrite current columns in the db, also you should quote your sql.
×
×
  • Create New...