Jump to content
MakeWebGames

MaddDogg49

Members
  • Posts

    11
  • Joined

  • Last visited

Everything posted by MaddDogg49

  1. Well the way how the files are its really spread out. It would be hard to go through every file. For example 1 file has 6 includes located in a separate folder. I have never found or know how to test for exploits.
  2. I recently got a game from a guy and did wanna go through every page to find hacks. I was wondering how to test exploits on certain pages. I know how to fix the pages its just finding them is my issue.
  3. I would also be interested in purchasing
  4. I typed out the letter he sent... it has all his contact ifo and signatures... This is also the 3rd letter... I have had a lawyer send him 3. But what they say im infringing is basically saying that Terry AKA Nikita AKA UCC... owns the rights to be the only MC Codes Game and owns the right to coding php in text base games
  5. noo joke... LMAO... but notice my name. and the name they said... Last time I checked im not MD29
  6. Ok I just got a new letter in the mail from there lawyer... Next is the letter from Terry... the owner of IN
  7. I Own Darkness Realm... Lilith owns Battle for Purgatory... just to clear up a smalll misunderstanding
  8. Whats the lag for something like this... I can see small games being ok... but larger games being stress on the server
  9. if($ir['rewarddone'] > 1 ) needs to be 0.... 1 isnt greater then 1... if($ir['rewarddone'] > 0 ) <<< that should work
  10. ok think of it this way... sometimes admins play from phones... I dont think Cpanel is phone friendly... Never Tried but still Just put a password in user database... and have staff pages and functions check for the password... if ($ir[iuser_level'] !=2 && $ir[iuser_level'] !=3 OR $ir['adminpass'] != asfdasgfsag32432) { print " What you doing here Willis!!!"; $h->endpage; }
  11. $db->query("UPDATE users SET fedjail=30 WHERE user_level=2 AND userid!=1 AND userid!=4 "); add AND userid!= for each admin you have... It saves server load every min.... on fed jailing and un fed jail.... thats the best way(useing cron)... Other then making the Auth Page or Doing the Array in the Header. You could also do like I did and make a Admin pass on users database... Default = 0 then you have to go thru and edit EVERY admin page and add the code... Thats ALOT to explain... but really works good.. then you could do $db->query("UPDATE users SET fedjail=30 WHERE user_level=2 AND adminpass!=asdgfdsa ");
×
×
  • Create New...