Jump to content
MakeWebGames

POG1

Members
  • Posts

    1,419
  • Joined

  • Last visited

Everything posted by POG1

  1. Re: [MCCODES V2] Fully Customise your game layout why don't you work on the mod but build it with divs? it would be much more efficent. To change the menus from left to right it would take very little code, whereas with tables you have to add the code differently.   echo '<div id="menu" class="'.(($menuLeft == TRUE)?'left':'right'.'">MENU</div>';   Also the changing of most things would be much easier :)
  2. Re: [MCCODES V2] Fully Customise your game layout     I tried this a little while back and the only people who could see the font was the people who had that font installed..   Yeah, thats why you should only use certain fonts. But i think webkit will allow you to point your font to a file on your server, but this wont work with all browsers.
  3. Re: What's your motivation? Money is a bonus when creating a game, i personally have made almost no money from games :( For me. It is the satisfaction of having people stoked on what you have created, however large or small the figure of members.
  4. Re: [MCCODES V2] Fully Customise your game layout 1 = Set MAINMENU left or right of screen - Easy, just float the divs differently.   3 = Use your own TTF style Fonts - I think this will only work with webkit..
  5. Re: [V2]Racer Exp doesnt increase   Why you rounding 0.33? it will result in 0
  6. POG1

    Debate

    Re: Debate   Speed wise it should be irrelevant which one you use... echo is only marginally faster since it doesn't set a return value... There is a difference in the expression of the command. I think that print can be used as part of a more complex expression where echo cannot. print() can only take one parameter... whereas, echo without parentheses can take multiple parameters, which get concatenated. So for example   echo "and a ", 1, 2, 3; // comma-separated without parentheses echo ("and a 123"); // just one parameter with parentheses print() can only take one parameter: print ("and a 123"); print "and a 123";   Or am I wrong? Print can be used as a function whereas echo cannot.
  7. POG1

    Debate

    Re: Debate why not just output that string in html instead..
  8. Re: Starting new Game Engine (massive features) - Need feedback   Templating System Language System 2 very good things, i am working on a war game with both of there incorporated :) I also agree with Haunted Dawg, for your game to be good it has to be different...
  9. Re: Sexy CSS buttons! They look good :)
  10. Re: [Help]Scrollbars This is only useful if you are using IE, pretty much useless but a cool idea.
  11. Re: Game Optimization What i meant was instead of running ses_update() every time you update an attribute cant you just edit that attribute within the ir array in the session?
  12. Re: [mccode] 8 Lines to secure your site from known sql injections.   Easy Mr. Big Letters! I don't understand a word of what he just said.
  13. Re: Tab menu problem Try adding this into the container div. overflow:hide;
  14. Re: New Updated Template This looks like it has a trillion images and about 2 weeks cache time.
  15. Re: Game Optimization It is a good idea but why not just update the applicable attributes in the array instead of resetting it? surely it will be a bit faster.
  16. Re: What FTP Client do you use? I don't see the point in an FTP but i did use the built in notepad++ or dream weaver ftps.
  17. POG1

    sprintf() Query..

    Re: sprintf() Query.. string print format It does exactly what it says on the tin :)
  18. Re: [REVIEW] Deadly Ghetto. What i am saying is that on every page there is a big ass box at the top which for me is very annoying.
  19. Re: [McCodes]No right click script This script isn't good. There are many other ways to get the page content and it is just annoying!.
  20. Re: money_formatter on MCCODES V2 ;)
  21. Re: money_formatter on MCCODES V2   money_formatter($value) { global $set; return $set['game_currencey'] .' '. number_format($value); }
  22. Re: [REVIEW] Deadly Ghetto. Why does everyone have them shout boxes? ghastly!!
  23. Re: Shoutbox Ban - Not Finished - Dont Post why are you adding a unfinished mod? just wait till u have finished it first silly!
  24. Re: [v2]User Competitions[v2]   Yes it is :S $_GET Will be a number corresponding to the key field in the the table.
  25. Re: Login & Register & Header & Lost Password It looks like you have posted the default mccode layout pages lol
×
×
  • Create New...