Jump to content
MakeWebGames

Uridium

Members
  • Posts

    2,664
  • Joined

  • Last visited

  • Days Won

    74

Uridium last won the day on August 16

Uridium had the most liked content!

Recent Profile Visitors

17,350 profile views

Uridium's Achievements

Rising Star

Rising Star (9/14)

  • Very Popular Rare
  • Dedicated Rare
  • Reacting Well Rare
  • Conversation Starter
  • Posting Machine Rare

Recent Badges

162

Reputation

  1. Where has everyone gone is there a new Forum im unware of or have people just decided to leave MWG
  2. ISSUE 1: Calendar There seems to be a flaw with your calendar as a new user to your game You have to start on door 1 and wait 24 hours top open the nexr door.. we should be on door 4 now so anyone joining late this week wont get to see the final doors open.. ISSUE 2: Boss (xmas) There was an error! File: /home/vol17_1/infinityfree.com/if0_36479303/htdocs/modules/installed/christmas/christmas.inc.php Line: 209 Error: Uncaught Error: hook::run(): Argument #1 ($opts) could not be passed by reference in /home/vol17_1/infinityfree.com/if0_36479303/htdocs/modules/installed/christmas/christmas.inc.php:209 Stack trace: #0 /home/vol17_1/infinityfree.com/if0_36479303/htdocs/class/module.php(29): christmas->method_attack() #1 /home/vol17_1/infinityfree.com/if0_36479303/htdocs/class/page.php(159): module->__construct() #2 /home/vol17_1/infinityfree.com/if0_36479303/htdocs/class/page.php(76): page->load('christmas') #3 /home/vol17_1/infinityfree.com/if0_36479303/htdocs/init.php(86): page->loadPage('christmas') #4 /home/vol17_1/infinityfree.com/if0_36479303/htdocs/index.php(5): require('/home/vol17_1/i...') #5 {main} thrown Type: E_RECOVERABLE_ERROR There was an error! File: /home/vol17_1/infinityfree.com/if0_36479303/htdocs/modules/installed/christmas/christmas.inc.php Line: 209 Error: Uncaught Error: hook::run(): Argument #1 ($opts) could not be passed by reference in /home/vol17_1/infinityfree.com/if0_36479303/htdocs/modules/installed/christmas/christmas.inc.php:209 Stack trace: #0 /home/vol17_1/infinityfree.com/if0_36479303/htdocs/class/module.php(29): christmas->method_attack() #1 /home/vol17_1/infinityfree.com/if0_36479303/htdocs/class/page.php(159): module->__construct() #2 /home/vol17_1/infinityfree.com/if0_36479303/htdocs/class/page.php(76): page->load('christmas') #3 /home/vol17_1/infinityfree.com/if0_36479303/htdocs/init.php(86): page->loadPage('christmas') #4 /home/vol17_1/infinityfree.com/if0_36479303/htdocs/index.php(5): require('/home/vol17_1/i...') #5 {main} thrown Type: E_RECOVERABLE_ERROR ISSUE 3: Russian Roulette It says you win but you dont actually get anything for the win.. ISSUE 4: Mail When you go to OUTBOX your able to message yourself and on doing so it states you cant message yourself (so why have the option to begin with) ISSUE 5: Lucky Dip.. most of the game is in english but your lucky dip outcome is in Dutch Je hebt $1,719 gewonnen bij de Lucky Dip! (translated: You've won $1,719 on the Lucky Dip!) ISSUE 6: Police Chase The dropdown to choose a car has no cars listed.. ISSUE 7: Change Avatar When Changing an Avatars features and you click on save. it looks nothing like the one you created ISSUE 8: School When you have completed your schooling challenge and collected your reward page has errors....
  3. Uridium

    Help Needed

    When I use Wifi on mobile and laptop I get the ERR_CONNECTION_RESET message but when I use Normal data no WIFI it works fine.. ive been intouch with my ISP they are sending out a new Router as ive exhausted all other methods for trying to fix the issue
  4. Uridium

    Help Needed

    ive recently switched from BT to EE in the uk and since moving with EE I keep getting this error message error_connection_reset when im using WIFI this doesnt happen when I use my mobile phone data and view the exact same website only Via WIFI sometimes pages work then they wont and so on Ive done all the flush_dns and all that and the empty chrome cache But its having no effect and im kinda running out of ideas.. Ive been intouch with EE and they say all is good with my settings on the hub... watching the youtube help videos ive tried all that they suggest but nothing seems to be working.. Also I only use the windows defender for antivirus and have no third party firewall packs that could be an issue...
  5. did the shades work lol
  6. So today my website went down wizwych.co.uk i got it touch with my host and gave them a yelling at only to be told they havent touched the site nor have they closed it down... So I went to Namecheap who I bought the domain name from and was shocked to find they had SUSPENDED my account because my registrant contact name didnt match my personal data.. So ive had to amend both personal and the registered account to match.. But they cant tell me when the site will be live again I just have to wait.... Registrar: Namecheap, Inc. [Tag = NAMECHEAP-INC] URL: https://www.namecheap.com Relevant dates: Registered on: 27-Apr-2012 Expiry date: 27-Apr-2028 Last updated: 28-Jun-2025 Registration status: Registered until expiry date. *** This registration has been SUSPENDED. ***
  7. Ive never used nor seen that statement before that could come in handy thank you 🙂
  8. what ya working on ya sexy bitch 😉
  9. Whilst collaborating with CrazyElk on their game to include the Video feature Crazyelk wanted it so when Videos where viewed they didnt continuously count up when same user viewed same video so 1 view 1 count per user makes sense... I was going to add this to the database so when a user views that video their ID is stored so the count wont continue to rise However it dawned on me why not just use a TXT file with the user details of any video they watch the video ID is placed into the TXT file so heres how I did this... <?PHP $_GET['view'] = array_key_exists('view', $_GET) && in_array($_GET['view'], ['videoID', 'uid', 'artist', 'tracktitle', 'genre', 'videourl', 'thumbs', 'playerswflink', 'switch', 'allowaccess', 'width', 'height', 'autostart']) ? $_GET['view'] : 'videoID'; // Increment the views if (isset($_GET['id'])) { $videoID = $_GET['id']; $path = "videovotes/views/" . $User->id . "/"; mkdir($path, 0777, true); /* end the txt data */ if ( file_exists("videovotes/views/" . $User->id . "/$videoID.txt") ) { } else { if ( file_exists("videovotes/views/" . $User->id . "/$videoID.txt") ) { } $omit = fopen("videovotes/views/" . $User->id . "/$videoID.txt", "w"); fwrite($omit, " "); fclose($omit); $DBO->query("UPDATE `user_videos` SET views = views + 1 WHERE videoID = '$videoID'"); } } The script above adds a folder to the videovotes/views/ folder for the user whos watching a video when a video is watched it leaves a TXT file behind with the video ID on it so if the user views the video again it will track the folder for the user and if the Video is there it wont update the Views.. Ive used the same method for LIKES and DISLIKES of a video you can also use the same method to ban videos example below for ban and unban <?PHP if ($_GET['b'] == 'ban') { if ( file_exists("videovotes/banned/".$VideoID->id.".txt") ) { } $omit = fopen("videovotes/banned/$videoID.txt", "w"); chmod("videovotes/banned/$videoID.txt", 0755); fwrite($omit, "<?php echo'<center>BANNED '".$VideoID->tracktitle."' {$row['tracktitle']} $tracktitle $videoID</center>'; ?>"); fclose($omit); } if ($_GET['u'] == 'unban') { $path = $_SERVER['DOCUMENT_ROOT'].'/videovotes/banned/"'.$videoID.'".txt'; unlink($path); unlink('videovotes/banned/"'.$videoID.'".txt'); } Hope this helps someone in someway...
  10. This is a brilliant concept havent seen one like this before the MAP is amazing even found my home town airport on there lol the Satelite view is astonishing I never knew there were so many airports in the UK other than the usual ones we all know about Welldone Peter Excellent work
  11. is that site live I dont see much traffic on it
  12. yep post can be closed 🙂
  13. I was just wondering as you stated in your example currency in game one is different to currency in game 2. I ws thinking of ways to keep users on your site longer if they do all the tasks needed in Game 1 they could go to the menu screen and start Game 2 which as with your example could be set in a different time period..
×
×
  • Create New...