Jump to content
MakeWebGames

Sim

Members
  • Posts

    2,392
  • Joined

  • Last visited

  • Days Won

    62

Everything posted by Sim

  1. Sim

    Mafia V2

      Make room: How about an Accordion? http://jqueryui.com/accordion/#collapsible
  2. They are floating around the net? Why then?
  3. I don't like announcing any project I have planned or anything to really show, since the majority of the time's I never finish it. =] I have been experimenting with some Technologies over the last week to see how simple it would be to combine a few. The result's was good. Although nothing has been coded for the game yet. =] I do not feel like giving out a list of feature's although I got everything planned for first version release on the first or second Friday of January. (2nd or 9th). A new approach to Text Gaming is about to be born. I think many people may find this approach strange at first, but will fall in love with it.   The majority of people know when I create something, I usually go all out and its creative and fairly new (Take oRPG Creator for example).   If time permits itself, I will be adding an auto mod-installer in the ACP which will let owners download and install mods similar to how SMF (forum) does. I have been working and I believe tomorrow is the last day until sometime in mid-late January and Holiday's is Thursday. I am exhausted when I get home, and try to sleep, but I did fit a hr or two in to experiment.   I will most likely not even begin coding this Engine until next week since I am trying to think of how to build a good-stable user-friendly powerful but not over-complicated framework for newer coders. This is the difficult part as most frameworks use some kind of Templating Engine and newer coders do not want to put the time in to learn new stuff or can follow the flow of certain programs. They tend to throw everything in one file =].   I know a few people have seen what I was going to do on here, so bite the tongue's.. This engine will have around 90%-95% of the features that mc-code's have as well as a MC-Codes converter to import your data to this new engine. Most of the "MC-Codes core-features" can be expanding upon IF wanted to in a simple fashion to allow for more interactive with members. Unlike, oRPG Creator, it will not be over complicated. Coming Soon: Project Meh   Sim, out! - - - Updated - - - Oh, I also forgot to mention, this will not be a FREE engine, but will range between $50-$100 for a license.
  4. Just got Head First C#, 2nd Edition =) 800pages ;[
  5. I like it as well =]
  6. 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 -_-
  7. Check my sig, I may be interested in selling for that price ;]
  8. i think its xalled boost hacking
  9. The item table isn't alligned properly?
  10.   lol's.. he WiFied it ;]     I play on PC, browser and android
  11. MC-Codes is to horribly written for me to even attempt to launch a game with it ;]
  12. Interesting game concept. To bad your a bot that auto-post to several forums and other places about new releases.. (smart though)
  13. I got 6 accounts at levels starting at 300 going up to level 469.. Pay me!!
  14. Military game's seem to be the new thing..
  15. the keyword "global"
  16. global $user_id, $con; inside your function?
  17. 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"); }
  18. [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.
  19. i am almost level 200
  20. I showed you some love [MENTION=66751]JohnGato[/MENTION] I liked the facebook page.
  21. Sim

    MDShare

    since he will be here hi [MENTION=50104]mdshare[/MENTION] long time no see!!
  22. 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.
  23. [MENTION=65518]Kyle[/MENTION] injecting a header is possible, but its just like injecting a SQL DB, you have to secure stuff.
  24. THe interface is nice. I wonder what kind of features it has.
  25. I disagree about sending passwords out, but they should not be held. They should emailed instantly.
×
×
  • Create New...