Jump to content
MakeWebGames

Diesl

Members
  • Posts

    132
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by Diesl

  1. The problem with using a neutral sans serif is that it doesn't really contribute to the theme of the game. I assume the header is for some crime related game, so I would use a serif, grunge or gothic font IMO.
  2. You edited your post while I was typing. But again, you have the same problem. On line 34, you are ending your echo with a double quote, but starting it with a single quote. Because of that, you are screwing up your next 2 functions. Make sure to look at where the colours change. change line 34 to this: Race Change ';
  3. look at where your colours change. Line 175: $_POST['newpic']=str_replace('\\\'',''', $_POST['newpic']);   you have 3 single quotes on the 2nd parameter. It should be just 2: $_POST['newpic']=str_replace('\\\'',' ', $_POST['newpic']);   Or you can escape the middle one.
  4. If you are using the color property in your CSS, make sure to use the full 6 digit HEX code. Some browsers won't register the 3 digit HEX short form.
  5. The best way to get around that is to make a test page that has the same code as your cron_day, but comment out this line if($_GET['code'] != $_CONFIG['code']) { die("....."); }   Beware, this is only for testing and development purposes. If you use this on a live game, then whatever the cron script was supposed to run, will run when you execute this script (pending that it actually works).
  6. I don't know why you have SELECT i.armor FROM items i.. when you can just do SELECT armor FROM items But if you want to keep it that way, make this change: WHERE i.itmid=.........
×
×
  • Create New...