Jump to content
MakeWebGames

Sim

Members
  • Posts

    2,392
  • Joined

  • Last visited

  • Days Won

    62

Everything posted by Sim

  1. Wondering if this is the game I found on google some time ago, but I can't tell because the account provided is in jail -_-
  2. Check my sig, I may be interested in selling for that price ;]
  3. i think its xalled boost hacking
  4. The item table isn't alligned properly?
  5.   lol's.. he WiFied it ;]     I play on PC, browser and android
  6. MC-Codes is to horribly written for me to even attempt to launch a game with it ;]
  7. Interesting game concept. To bad your a bot that auto-post to several forums and other places about new releases.. (smart though)
  8. I got 6 accounts at levels starting at 300 going up to level 469.. Pay me!!
  9. Military game's seem to be the new thing..
  10. the keyword "global"
  11. global $user_id, $con; inside your function?
  12. Do it like this:   case 22: $flakes = rand(20, 60); $expgain = (0.2*$flakes); break;   at end of select case area //since there was multiple cases without $flakes and $expgain. Need to check that the was the case used... //can use this concept with the one in follow case for the other repetitive ones. if($flakes <> 0 && $expgain <> 0) { echo "While mining away, you have uncovered {$flakes} Silver Flakes!"; item_add($userid, $silverflakesid, $flakes); //Replace 68 with your Silver Flakes item ID. $db->query( "UPDATE `Mining` SET `mEXP` = `mEXP` + $expgain WHERE `userid` = $userid"); }
  13. [MENTION=70574]TheMasterGeneral[/MENTION] Here's how you can cut your filesize down and a little easier to read:   A lot of these are fairly similar. case 22: $flakes = rand(20, 60); $expgain = (0.2*$flakes); echo "While mining away, you have uncovered {$flakes} Silver Flakes!"; item_add($userid, $silverflakesid, $flakes); //Replace 68 with your Silver Flakes item ID. $db->query( "UPDATE `Mining` SET `mEXP` = `mEXP` + $expgain WHERE `userid` = $userid"); break;   I would remove the echo, item_add, and query and add them after the select case like this: if($flakes <> 0 && $expgain <> 0) { echo "While mining away, you have uncovered {$flakes} Silver Flakes!"; item_add($userid, $silverflakesid, $flakes); //Replace 68 with your Silver Flakes item ID. $db->query( "UPDATE `Mining` SET `mEXP` = `mEXP` + $expgain WHERE `userid` = $userid"); }   I would also move around other repetitive stuff.
  14. i am almost level 200
  15. I showed you some love [MENTION=66751]JohnGato[/MENTION] I liked the facebook page.
  16. Sim

    MDShare

    since he will be here hi [MENTION=50104]mdshare[/MENTION] long time no see!!
  17. Sim

    code help !!

    what you need from the jail? if ($user_class->jail > 0){ $user_class->jail looks like it is how many minutes he/she is in jail for.
  18. [MENTION=65518]Kyle[/MENTION] injecting a header is possible, but its just like injecting a SQL DB, you have to secure stuff.
  19. THe interface is nice. I wonder what kind of features it has.
  20. I disagree about sending passwords out, but they should not be held. They should emailed instantly.
  21. I also got 12 =]
  22. I remember writing a Fibonacci thing in highschool. Wow oh wow that was like 15yrs ago...
  23. I think I might be interested... PM me a few code samples and price.
  24.   I just seen this after replying to your PM. Looks like I would be a good fit. =] Sorry to hear about the people that ripped you off. Mind giving us all there usernames?
  25.   I see you liked my post but didn't contact me... =0
×
×
  • Create New...