Jump to content
MakeWebGames

a_bertrand

Members
  • Posts

    3,655
  • Joined

  • Last visited

  • Days Won

    12

Everything posted by a_bertrand

  1. Ok so you want some sort of "stop" refresh sent by the server. I will check how to implement it. For the content type, I never had any issues myself, but doesn't hurt to add it ;)
  2. Ok will check thanks for the feedback.
  3. Ok will put that in the next release.
  4. Will check that on Monday. Thanks for the report.
  5. We could discuss all the changes you want, either we update the engine with your proposals if the change fit the spirit of the engine of being game neutral, or you could simply offer new modules based on the official ones, or simply share on this forums your changes.
  6. Good catch, I will add a space before. Will check on Monday.
  7. Currently there is no pre-made support for multiple language. However it's really simple to offer it as it's a single variable to change. Could be done either from the engine itself or an additional module. For the home page, I would personally go for some sort of "CMS" instead, the current home page is a simple example, but may not be the best one for a live game.
  8. Indeed, that should be a bit more... smart. I will check into this one. Thanks for the report.
  9. Mmm bug indeed. Will fix that on Monday.
  10. I'm unsure if MySQLi returns the number of rows of a query beside for an UPDATE / DELETE one. I could check however.
  11. Well we could make it so that you define where to download the files, doesn't seems such a big deal. The update / get module mechanism is meant for those of you which want to have a very simple approach to NWE. Keep in mind NWE is not meant at first for expert users at first.
  12. I never had such issue myself as localhost should not go through a DNS resolution anyhow. But good to know thanks for the trick 1331
  13. No, currently I improved my skills in the sound production.
  14. Yes it's on purpose. It's to avoid to have odd issues while adding a package.
  15. Will check this issue on Monday and let you know.
  16. Fixed the auto-installer. Sorry for the issue guys. BTW if your xampp had a session open, it may now have checked again the new license key.
  17. What is exactly what you are after? You don't want to refresh forever ? Sorry I'm somewhat lost here.
  18. NWE is and should stay modular in term of code as well as kind of games you can produce with it. Therefore NWE didn't offer so far much of a fun game to play, instead more building blocks to let YOU guys build your own game. In the future, I'm thinking of the following: - Check the possibility to include some sort of automatic unit testing - Further develop the AJAX side, for example maybe have only partial updates of the page? - Offer a mobile / smartphone template - Offer new modules (like house, additional clan features and more) - Improve the existing features But as always, my projects are pretty much driven by what you guys ask / suggest.
  19. I doubt the 100$ you invested in NWE is of no value ;-) Anyhow you could have started with the free version and saw how it was done. Anyhow back to your point, I think most of the files are actually blocked via .htaccess already, if it's not the case please give me the info and I shall check. Also, NWE is not yet a dead product in the sense there is no more development on it, so if you have suggestions, please share them and we shall see what we can do.
  20. Sorry I don't understand what you mean orsino... can you try to be a bit more clear?
  21. Could be done, however the way I would prefer it would be via the config.xml which would define the position of each parameter and then have a module called at first which would split the things for you. As a module, you would get the things as always. However to make this work, all modules need to be checked and modified to make sure all works and is properly setup in the config.xml Honestly I don't think it makes all that sense, I mean, does it change an inch for the player? No, anyhow you can't bookmark, nor you can't call directly any of those pages. So I find it ultimately a bit futile. Look at the big boys out there: Google link: www.google.com/#hl=en&tbo=d&output=search&sclient=psy-ab&q=test&oq=test&gs_l=hp.3..35i39l2j0l2.998.1646.0.1803.4.4.0.0.0.0.192.626.0j4.4.0.les%3B..0.0...1c.1.U8QTqnJXEKc&pbx=1&bav=on.2,or.r_gc.r_pw.r_cp.r_qf.&bvm=bv.1355534169,d.Yms&fp=35a1f62ae367c9fb&bpcl=40096503&biw=1186&bih=684 Youtube Of course you can find examples which are different but still, it doesn't change much the game play ;) BTW for SEO optimization => it has no real effects So I will keep this request in mind, but do not give it too much weight.
  22. The idea is not bad, yet what do you do with URL which are a bit more complex for example like: index.php?p=mines&mine=1&token=bb5e994f726ece014504f45bf30fc56f Where do you pass the "mine=1" ?
  23. Just for info for those which don't own NWE, you may download the free version and you will discover how a template is done (found in the templates directory). But for it's simplest form it is, with a CSS for the style:   <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <title><?php echo $gameName; ?></title> <link rel="icon" type="image/png" href="<?php echo $webBaseDir; ?>favicon.ico" /> <link href="<?php echo $webBaseDir; ?>templates/plain/plain.css" type="text/css" rel="stylesheet" /> <?php echo $content['header']; ?> </head> <body> <div id="statArea"><?php ImageGameTitle(); echo "<br><br>"; echo $content['stats']; ?></div> <div id="sideMenu"> Menu: <br> <?php echo $content['sideMenu']; ?> <br><center><?php VerifyIt(); ?></center> </div> <div id="mainContent"><?php echo $content['main']; ?></div><?php echo $content['footer']; ?> </body>   The <br> tags have been removed the forums :mad:
  24. Why not take the whole available space? Horizontally and vertically? The dotted lines are disturbing in my opinion and doesn't bring much. I would also add a WYSIWYG editor.
  25. a_bertrand

    Api

    I don't really understand your problem. API => premade functions you can use. So whatever can be an example: $file=fopen("toto","r"); This is just a File IO API included inside PHP ;)
×
×
  • Create New...