Jump to content
MakeWebGames

POG1

Members
  • Posts

    1,419
  • Joined

  • Last visited

Everything posted by POG1

  1. Re: Changing a mailbox feature think about it.. the more records in a table the longer queries will take because it will have to search through more data,
  2. Re: Changing a mailbox feature You only want mails that the user can see in the mail table or it will slow the queries down. It would be best to store any hidden mails in a separate table or database.
  3. Re: How to do a blood splatter effect google is your friend.. maybe search for "fireworks blood splatter tutorial" or "fireworks blood brushes"
  4. Re: SQL error there mite be an error in the mysql query which would then give an error in the mysql result...
  5. Re: x level make a field in the users table called "boxcash" and find in the code it updates the user info.. SET boxcash = '".$ir['boxcash']++."'
  6. POG1

    New Game

    Re: New Game ok then what ever....
  7. Re: [v2] NPC item reward alabama.. on line 14 or 15 you have an empty else if.
  8. POG1

    New Game

    Re: New Game so you and your brother will be doing nothing and the third will be creating the game and getting a third of all profits?
  9. Re: x level ?howMuch = 15; $moneys = $ir[level] * $howMuch; your question is a bit vague...
  10. Re: [mccode] another sql protection to help content = preg_replace("/[^a-zA-Z0-9]/","",strip_tags(trim($content))) what about something like that?
  11. Re: PHP.net search bookmark Very handy, i just added it. Saves like 3 clicks!!
  12. Re: Merits Help 1. Take the entire mod off before to many people steal it and the creator gets pissed. 2. Contact the creator/sellor and ask them.
  13. Re: New In-Game Template Some improvements that will aid loading speed.. Set the body background to the gray & black pattern. The content background image 1px tall saved as a PNG with 70% opacity. for the top and bottom content bits have seperate containers with rounded edges.
  14. POG1

    PHP Form issue

    Re: PHP Form issue $ir is an array that contains all your player statistics. A query selects your record from the users table in the database and creates an array from the values. So $ir['username'] would be the username in your record in the database.
  15. Re: [mccodes V2] Drag n Drop User Menu + Staff Menus [WORKING COPY] I'm guessing you didn't like my video...
  16. Re: [v2] Adding exact % energy $energy = floor($ir[energy] * 10%); That would work; 10% is a tenth of a whole so to times it by any number would give a tenth of the number.
  17. Re: Changing a mailbox feature an additional field in the mailbox table. Change all appropriate fields to something like this... WHERE `state` = '1' Have the default value to 1 and when the user goes to "delete" their mail it changes the value to 0.   A better idea would be to log the mails in a separate table...
  18. Re: [v2] Adding exact % energy $energy = floor($ir[energy] * 10%); maybe something like that?
  19. POG1

    PHP Form issue

    Re: PHP Form issue instead of using $_POST['username'] you could use $_SESSION['id'] or $ir['username']...
  20. Re: [mccodes V2] Drag n Drop User Menu + Staff Menus [WORKING COPY] it looks good but you have an issue. Here is a like outy of the main menu.. <li itemID='gym'>Gym   You are using " and ' wrong. Browsers will see the onclick to be speak( it would be best to use it something like this ... onclick=" speak('retg') "
  21. POG1

    PHP Form issue

    Re: PHP Form issue $_SESSION maybe?
  22. Re: v1 or v2 any game engine can have the same layout. The best way to create a good looking template is to start not on the engine and create the layout its self the adapt it to the game... well it seems to work for me
  23. Re: [MOD] V2 Banner image selector it seems like a lot of code for something as simple as changing banners
  24. Re: if you have a game or have a game in the maiking read on   lol yeah. Your power bill would be quite costly though...
  25. Re: [V2] View Donators   if your going to do a job do it right... im sure Nyna may have a good enough reason why opening and closing php all the time could be a issue google it lol Extensible Hypertext Markup Language (XHTML) i do know what it is but it looks like normal html to me.
×
×
  • Create New...