Jump to content
MakeWebGames

Uridium

Members
  • Posts

    2,657
  • Joined

  • Last visited

  • Days Won

    74

Everything posted by Uridium

  1. yep your right mouth before brain my apologies 🙂
  2. do we need language skills i only know english
  3. IS GL the new MCCODES or just a money grabber from an engine that once was
  4. Uridium

    Hosting

    greetinga bitch where ya been send me a message
  5. well that didnt last long its offline now
  6. Uridium

    Just a moan

    we work we fall we cry
      • 1
      • Sad
  7. Why do people always call it a game thats downward selling point for me I want an Experience that will last No matter what I put as a username Password Email it says im registered
  8. try checking https://criminal-kings.site/logs/errors/ it should help
  9. whats the URL
  10. Im assuming youve figured it out 🙂
  11. set it to 5.6 that should work
  12. he didnt add the query ??
  13. namecheap do hosting from $5 a month
  14. has it started yet or finished
  15. crons fixed
  16. Posted March 16, 2011 I doubt it
  17. as @bg_mike has said have you already done an install if so DROP ALL TABLES remove the config.php file and try a new install
  18. if you have cpanel on your host goto go into cpanel with yourhost.com/cpanel then find MultiPHP INI Edit icon click it from there dropdown select HOME DIRECTORY and make sure DISPLAY_ERRORS is ENABLED then click APPLY at bottom
  19. the users your switching to are they usual game players or users youve created yourself... Cos I can see some flaws if your viewing pages as a paying game member.. wouldnt that effect their privacy rights ? or am I missing something
  20. so you want to switch from being staff to becoming a regular member but be able to go back to being staff once finished ?? using the same user account you could do this <?PHP include "globals.php"; switch($_GET['action']) { case 'become_member': become_member(); break; case 'become_admin': become_admin(); break; case 'become_moderator': become_moderator(); break; default: prefs_home(); break; } function prefs_home() { global $db,$ir,$c,$userid,$h; print "<h3>Your Staff Status Page</h3> <a href='?action=become_member'><h3>Become a normal game player</a></h3> <a href='?action=become_admin'><h3>Become Game Admin</a></h3> <a href='?action=become_moderator'><h3>Become Game Moderator</a></h3> "; } function become_member() { global $db,$ir,$c,$userid,$h; $db->query("UPDATE users SET user_level=3 WHERE userid=$userid"); Print"<h3>You have now become a Normal User</h3><br><br><a href='RENAME ME.php'>Return To Choices</a></h3>"; } function become_admin() { global $db,$ir,$c,$userid,$h; $db->query("UPDATE users SET user_level=2 WHERE userid=$userid"); Print"<h3>You have now become an Admin</h3><br><br><a href='RENAME ME.php'>Return To Choices</a></h3>"; } function become_moderator() { global $db,$ir,$c,$userid,$h; $db->query("UPDATE users SET user_level=3 WHERE userid=$userid"); Print"<h3>You have now become a Moderator</h3><br><br><a href='RENAME ME.php'>Return To Choices</a></h3>"; } just alter the RENAME ME.php to anyname your new file is gping to be called
  21. <<<< ORGINAL LINK UPATED IN TOP POST >>>>
  22. Theres not much information about the game in that description ?
  23. This is bloody fab Not the fact the the script work but the fact people have contributed to make it better
×
×
  • Create New...