How can I play .dcr Shockwave games?

[BACK]
How can I play .dcr Shockwave games?
Posted On: January 17, 2023

I found this set of old games, that I would really like to play, that use adobe shockwave. Specifically, "World Builder" from "game archive 3". I am using XAMPP as it said to do in the readme, but it keeps crashing. If you have any ideas at all on what I could do, I'd love to hear them.


I also checked these out but no luck.


https://superuser.com/questions/1114354/how-to-view-adobe-shockwave-file-dcr-file-extension.


Play old Lego.com games Junkbot and Worldbuilder, saving progress.


Question from user Deoxal at gaming.stackexchange.com.


Answer:

A Bit of Terminology.


First off, this question is not about Flash Player - read up on the difference.


https://medium.com/@nosamu/the-difference-between-flash-and-shockwave-b27609808a02.


Alright, so your question is about Shockwave Movies (files with a DCR type) created using the Director application. I've answered this question before other places, but have since realized my answer is outdated, so here it is: the revised edition.


Online Playback using Shockwave.


So you have found a website that still uses Shockwave. The first thing you'll need is a plugin supported browser. Google Chrome and Mozilla Firefox no longer support plugins, so these will not do. I would recommend installing the K-Meleon browser from kmeleonbrowser.org which is a fork of Firefox that has kept its NPAPI support - meaning it is a plugin supported browser capable of loading Shockwave.


However, if you don't want to install another browser, a quick n' dirty solution is to use Internet Explorer (not Microsoft Edge!) Yes, even in Windows 10, Microsoft Edge did not entirely replace IE - if you search for Internet Explorer in the Start Menu, you will find it tucked away.


If you really don't want to leave the comfort of your preferred browser, another option you have is to use the IETab browser extension.


Note that this is not ideal, as Internet Explorer will often falsely believe that Shockwave has crashed and refresh the page during playback. A browser supporting NPAPI is best. Whichever browser you use, it must be the 32-bit version of said browser, because Shockwave is a 32-bit plugin. You can still play Shockwave Movies on a 64-bit computer, but you must use a 32-bit browser.


Installing Shockwave.


Alright, so you now have a plugin supported browser. Now, if you already have Shockwave installed on your system, you should uninstall it and restart before ever installing a new version (and yes, the restart is actually necessary.) Adobe's auto-updater is buggy with Shockwave, so if it alerts you to a new version, you should get the new installer from their website yourself instead of using the auto-updater.


The official Shockwave download link is retired. However, an offline installer still exists on Adobe's website at the link below - be sure to use the Windows MSI Installer. This is the best installer to use to install Shockwave 12, as it comes with all of the reverse compatibility components.


https://www.adobe.com/products/shockwaveplayer/shwv_distribution3.html.


Just in case, here is a mirror of the Windows MSI Installer at the above link.


https://mega.nz/#!B1ITjaDK!7Lq6wICa0Ra7z5GyC0QEEm_jp2FGsgJyOAzbVorjjhY.


And here is a mirror of the Mac OS X DMG Installer.


https://mega.nz/#!l853VK7Q!wvFXWhdaLNK8A40PSh09XvVocMbEqXj9wuNBQXRNpYY.


You will also need the Visual C++ 2010 Runtime (x86) installed. In most cases, you will have this installed already, but this is something to bear in mind especially if you are installing Shockwave on a VM. You must have the x86 version, even on a x64 computer. If Shockwave is still not appearing after you've installed it, you can try using the Visual C++ 2010 Runtime installer at this link.


https://www.microsoft.com/en-US/download/details.aspx?id=8328.


After it's installed, you should be able to restart your browser and go to your webpage that uses Shockwave and all should work well - unless you experience the Shockwave 3D Bad Driver List Bug.


The Shockwave 3D Bad Driver List Bug.


There is a bug with Shockwave 3D which Adobe has not created any official fix for. If you try and play 3D content on a Windows 10 PC with newer Nvidia graphics drivers, the plugin will crash and become non-interactable. This happens because of a change in the specification, which causes a buffer overflow.


When Shockwave 3D gets the renderer services, it attempts to check if your driver is one of many "Bad Drivers" that don't support Shockwave 3D. It does this by comparing the name of the driver to a list of bad driver names. In previous Windows versions, this driver name was just the filename of its DLL file. However, in Windows 10 it is supposed to be the full path to it (which currently only Nvidia conforms to.) Shockwave 3D only allocates 255 bytes for this string, so it overflows and causes a crash.


You can resolve this issue manually by editing back the registry value with the driver name to be only the filename instead of the full pathname.


Open Registry Editor and go to HKEY_LOCAL_MACHINESYSTEMCurrentControlSetControlVideo.


Press Ctrl+F, make sure the option to search for Values is checked and search for InstalledDisplayDrivers and you should arrive at a Registry Key called 0000 with the InstalledDisplayDrivers value selected.


Right click the Registry Key 0000 and hit Export. Save the file with any name - this is just to make a backup of the old state you can revert to at any time.


Now right click InstalledDisplayDrivers value and click Modify... this will pop up a dialog box with a either a single pathname, or multiple (comma seperated.).


For every pathname here, strip the path and file extension to leave just the filename (for example, "C:/example/nvldumdx.dll" should become "nvldumdx"). If there are multiple pathnames, do it for all of them, leaving the commas between.


Now hit OK. The Shockwave 3D issue is resolved.


Note: something I forgot to mention in my original post is that sometimes, a z-buffer glitch will occur where the 3D models look "inside-out." Just right-click the game and select DirectX 9 as the 3D Renderer and the issue should fix itself.


Missing Xtras.


Inevitably, you'll run into a Shockwave Movie that gives you an error about "missing an Xtra." What is an Xtra?


Well, as the name would imply, Xtras were ways of "eXtending" Director's and, by extension, Shockwave's capabilities. These are native binaries that the Director API would interface with to provide new abilities to the plugin. Basically they're just DLLs. At least, on Windows - and on Mac they are code fragments, the Mac equivalent.


Yes, that's right, anyone - me, you, your friend - could write a DLL, load it in Shockwave in the browser, and be able to run their native C++ code in the browser environment. That sounds scary, but they did at least have to be signed and users were treated with scary "are you sure you want to install this Xtra?" prompts.


For example, shooters would often make use of the MoveCursor Xtra, which gave Shockwave the ability to position the mouse cursor on the screen. Music-based timing games could use the Beatnik Xtra, which gave Shockwave the ability to play tracker modules.


In order to accomplish this, Shockwave would download external Xtra-Package files (with a W32 type on Windows) from the web, which had a signature to prevent MiTM attacks, and wrapped an Xtra file (with an X32 type on Windows) which is what Shockwave would then load.


Of course, this has created a bit of a DLL Hell situation, which is problematic nowadays because a Shockwave Movie might whine about not being able to find an Xtra because it was on a website that no longer exists, or was only compatible with a previous version of Shockwave, or you can only find the Mac version of it and you're on Windows etc.


Sometimes resolving Xtra issues is as simple as installing Shockwave using the MSI Installer as mentioned before - since the EXE Installer (including the supposedly "full" version) relied on downloading files that no longer exist on Adobe's website during the install.


If you do manage to find a copy of the Xtra which Shockwave requires - elsewhere on the web - you can skip the automatic download process by manually copy pasting it directly into Shockwave's install folder.


If you find an Xtra-Package, you can use Valentin's Unpacker to get the Xtra out of it.


http://valentin.dasdeck.com/lingo/unpack/d11.5/UNPACK_v08.zip.


Go to the system folder, typically C:/Windows/System32 (which, on 64-bit Windows, corresponds to C:/Windows/SysWOW64 for 32-bit applications such as Shockwave instead.).


In the system folder, look for a folder called Adobe. Inside that folder, look for one called Shockwave Player 12, and inside there, look for a folder called Xtras.


Paste the Xtra file (with an X32 extension) in there along with the others. Press Yes to admin prompts.


Go back to the system folder. Look for a folder called Macromed.


If it doesn't exist, you are done - otherwise, go into the Macromed folder. Inside, look for a folder called Shockwave Player 10, and inside there, look for a folder called Xtras. Paste the Xtra file in there as well. This will cause Shockwave to look here when loading the Xtra.


Offline Playback using Projectors.


So you've found a Shockwave Movie, but it isn't on a website and you want to play it offline. How can you do this short of using XAMPP and a web browser? Well, you can use a standard Director feature, called a Projector. These are executable files capable of playing movie files on your PC, without a browser or the need to have Shockwave installed. They are standalone players that include all the necessary libraries.


If you have a copy of Director, you could use it to create a Projector yourself. I'll save you the hassle - I've got a number of Projectors in my MEGA Folder below. These are taken straight from the Director install CD.


https://mega.nz/#F!10oyzSrL!AttpEr-nBc_7GhFy5zQkvA.


The Projector Skeletons are the ones you want and are official Macromedia/Adobe components. If you're not sure which to use, try the latest version (12.0.0.111.) The "Stretch Projectors" are my modifications that attempt to stretch the movie to fullscreen size, though this is not guaranteed to work for all movies.


However, playing offline by using a Projector introduces other issues.


Loaders.


A common web convention in the early 2000s was to throw up a fancy loading screen while waiting for full webgames to download. This is equally the case with Shockwave. You can think of loaders kind of like a bit.ly URL - they redirect elsewhere, and if the content they're trying to load is gone, it won't load.


Sometimes you will find a loader that tries to load from a website that no longer exists. This is a problem because the game will be missing assets. Typically, if your Shockwave Movie file is under 20 KB, it's probably a loader. You can typically discard loaders. The main movie file it tries to load is all that is important.


External Files.


Another common practice was to have level one be in one file, level two be in another, and so on - each only downloading from the internet when the previous level completed to lower the filesize of the main movie. This is problematic because you might have the main movie and none of the assets it requires. Shockwave is a multimedia application, so it supports many asset types (JPEG, MP3 etc.) and can download these files from the internet at any time for playback.


The primary filetypes to keep an eye out for when attempting to save a Shockwave Movie along with all its assets are Director Movies (DIR/DXR/DCR filetype) and Director Casts (CST/CXT/CCT filetype) as these are the standard Director movie formats Shockwave can open. You can use Telerik Fiddler to see what files a Shockwave Movie is downloading when embedded on a page. When playing offline in a Projector, a file browse dialog will appear for missing files.


Leech Protection.


Finally, Shockwave Movies often would attempt to prevent theft by checking if they are being played on the intended website, to prevent hotlinking or stealing. This poses a problem for offline play, since Shockwave will get a local path instead of a URL, and the scripts will detect that they're not being played on the intended website, locking you out.


If you have Director, you can use the LeechProtectionRemovalHelp Xtra to remove the Leech Protection - this is an Xtra I wrote to help with Shockwave Movie archival. I promise I'll have better documentation soon!.


https://github.com/tomysshadow/LeechProtectionRemovalHelp-Xtra.


This still can't resolve all situations. Shockwave doesn't come with built in Leech Protection, so how it is done is up to developer implementation. This means there are a lot of different types of Leech Protection. One of the more advanced is Robotduck's Leech Protection, which makes use of an external PHP script. In these cases, there's nothing that can be done short of using XAMPP and editing your Windows hosts file, then playing the movie in a browser.


https://web.archive.org/web/20081221135813/http://www.robotduck.com/content/articles/director/net/dcrProtection/index.htm.


Conclusion.


Shockwave Movies are hard to play. Feel free to ask me additional questions.


If you're interested in this topic, definitely check out communities devoted to saving webgames such as BlueMaxima's Flashpoint. There is also my personal MEGA Folder with the games I have managed to save so far. As Director has been discontinued and Shockwave games slowly disappear from the web, the fact Macromedia never released any format documentation makes figuring out the inner workings of this technology a new and exciting field. Maybe you'll even join us!.


http://bluemaxima.org/flashpoint/.


https://mega.nz/#F!ppJBySSC!LCR6NbqXpUpyXqH_1eemhQ.


https://docs.google.com/document/d/1jDBXE4Wv1AEga-o1Wi8xtlNZY4K2fHxW2Xs8RgARrqk/edit?usp=sharing.


Answer from user tomysshadow at gaming.stackexchange.com.


[BACK]
How can I play .dcr Shockwave games?
Posted On: January 17, 2023

I found this set of old games, that I would really like to play, that use adobe shockwave. Specifically, "World Builder" from "game archive 3". I am using XAMPP as it said to do in the readme, but it keeps crashing. If you have any ideas at all on what I could do, I'd love to hear them.


I also checked these out but no luck.


https://superuser.com/questions/1114354/how-to-view-adobe-shockwave-file-dcr-file-extension.


Play old Lego.com games Junkbot and Worldbuilder, saving progress.


Question from user Deoxal at gaming.stackexchange.com.


Answer:

A Bit of Terminology.


First off, this question is not about Flash Player - read up on the difference.


https://medium.com/@nosamu/the-difference-between-flash-and-shockwave-b27609808a02.


Alright, so your question is about Shockwave Movies (files with a DCR type) created using the Director application. I've answered this question before other places, but have since realized my answer is outdated, so here it is: the revised edition.


Online Playback using Shockwave.


So you have found a website that still uses Shockwave. The first thing you'll need is a plugin supported browser. Google Chrome and Mozilla Firefox no longer support plugins, so these will not do. I would recommend installing the K-Meleon browser from kmeleonbrowser.org which is a fork of Firefox that has kept its NPAPI support - meaning it is a plugin supported browser capable of loading Shockwave.


However, if you don't want to install another browser, a quick n' dirty solution is to use Internet Explorer (not Microsoft Edge!) Yes, even in Windows 10, Microsoft Edge did not entirely replace IE - if you search for Internet Explorer in the Start Menu, you will find it tucked away.


If you really don't want to leave the comfort of your preferred browser, another option you have is to use the IETab browser extension.


Note that this is not ideal, as Internet Explorer will often falsely believe that Shockwave has crashed and refresh the page during playback. A browser supporting NPAPI is best. Whichever browser you use, it must be the 32-bit version of said browser, because Shockwave is a 32-bit plugin. You can still play Shockwave Movies on a 64-bit computer, but you must use a 32-bit browser.


Installing Shockwave.


Alright, so you now have a plugin supported browser. Now, if you already have Shockwave installed on your system, you should uninstall it and restart before ever installing a new version (and yes, the restart is actually necessary.) Adobe's auto-updater is buggy with Shockwave, so if it alerts you to a new version, you should get the new installer from their website yourself instead of using the auto-updater.


The official Shockwave download link is retired. However, an offline installer still exists on Adobe's website at the link below - be sure to use the Windows MSI Installer. This is the best installer to use to install Shockwave 12, as it comes with all of the reverse compatibility components.


https://www.adobe.com/products/shockwaveplayer/shwv_distribution3.html.


Just in case, here is a mirror of the Windows MSI Installer at the above link.


https://mega.nz/#!B1ITjaDK!7Lq6wICa0Ra7z5GyC0QEEm_jp2FGsgJyOAzbVorjjhY.


And here is a mirror of the Mac OS X DMG Installer.


https://mega.nz/#!l853VK7Q!wvFXWhdaLNK8A40PSh09XvVocMbEqXj9wuNBQXRNpYY.


You will also need the Visual C++ 2010 Runtime (x86) installed. In most cases, you will have this installed already, but this is something to bear in mind especially if you are installing Shockwave on a VM. You must have the x86 version, even on a x64 computer. If Shockwave is still not appearing after you've installed it, you can try using the Visual C++ 2010 Runtime installer at this link.


https://www.microsoft.com/en-US/download/details.aspx?id=8328.


After it's installed, you should be able to restart your browser and go to your webpage that uses Shockwave and all should work well - unless you experience the Shockwave 3D Bad Driver List Bug.


The Shockwave 3D Bad Driver List Bug.


There is a bug with Shockwave 3D which Adobe has not created any official fix for. If you try and play 3D content on a Windows 10 PC with newer Nvidia graphics drivers, the plugin will crash and become non-interactable. This happens because of a change in the specification, which causes a buffer overflow.


When Shockwave 3D gets the renderer services, it attempts to check if your driver is one of many "Bad Drivers" that don't support Shockwave 3D. It does this by comparing the name of the driver to a list of bad driver names. In previous Windows versions, this driver name was just the filename of its DLL file. However, in Windows 10 it is supposed to be the full path to it (which currently only Nvidia conforms to.) Shockwave 3D only allocates 255 bytes for this string, so it overflows and causes a crash.


You can resolve this issue manually by editing back the registry value with the driver name to be only the filename instead of the full pathname.


Open Registry Editor and go to HKEY_LOCAL_MACHINESYSTEMCurrentControlSetControlVideo.


Press Ctrl+F, make sure the option to search for Values is checked and search for InstalledDisplayDrivers and you should arrive at a Registry Key called 0000 with the InstalledDisplayDrivers value selected.


Right click the Registry Key 0000 and hit Export. Save the file with any name - this is just to make a backup of the old state you can revert to at any time.


Now right click InstalledDisplayDrivers value and click Modify... this will pop up a dialog box with a either a single pathname, or multiple (comma seperated.).


For every pathname here, strip the path and file extension to leave just the filename (for example, "C:/example/nvldumdx.dll" should become "nvldumdx"). If there are multiple pathnames, do it for all of them, leaving the commas between.


Now hit OK. The Shockwave 3D issue is resolved.


Note: something I forgot to mention in my original post is that sometimes, a z-buffer glitch will occur where the 3D models look "inside-out." Just right-click the game and select DirectX 9 as the 3D Renderer and the issue should fix itself.


Missing Xtras.


Inevitably, you'll run into a Shockwave Movie that gives you an error about "missing an Xtra." What is an Xtra?


Well, as the name would imply, Xtras were ways of "eXtending" Director's and, by extension, Shockwave's capabilities. These are native binaries that the Director API would interface with to provide new abilities to the plugin. Basically they're just DLLs. At least, on Windows - and on Mac they are code fragments, the Mac equivalent.


Yes, that's right, anyone - me, you, your friend - could write a DLL, load it in Shockwave in the browser, and be able to run their native C++ code in the browser environment. That sounds scary, but they did at least have to be signed and users were treated with scary "are you sure you want to install this Xtra?" prompts.


For example, shooters would often make use of the MoveCursor Xtra, which gave Shockwave the ability to position the mouse cursor on the screen. Music-based timing games could use the Beatnik Xtra, which gave Shockwave the ability to play tracker modules.


In order to accomplish this, Shockwave would download external Xtra-Package files (with a W32 type on Windows) from the web, which had a signature to prevent MiTM attacks, and wrapped an Xtra file (with an X32 type on Windows) which is what Shockwave would then load.


Of course, this has created a bit of a DLL Hell situation, which is problematic nowadays because a Shockwave Movie might whine about not being able to find an Xtra because it was on a website that no longer exists, or was only compatible with a previous version of Shockwave, or you can only find the Mac version of it and you're on Windows etc.


Sometimes resolving Xtra issues is as simple as installing Shockwave using the MSI Installer as mentioned before - since the EXE Installer (including the supposedly "full" version) relied on downloading files that no longer exist on Adobe's website during the install.


If you do manage to find a copy of the Xtra which Shockwave requires - elsewhere on the web - you can skip the automatic download process by manually copy pasting it directly into Shockwave's install folder.


If you find an Xtra-Package, you can use Valentin's Unpacker to get the Xtra out of it.


http://valentin.dasdeck.com/lingo/unpack/d11.5/UNPACK_v08.zip.


Go to the system folder, typically C:/Windows/System32 (which, on 64-bit Windows, corresponds to C:/Windows/SysWOW64 for 32-bit applications such as Shockwave instead.).


In the system folder, look for a folder called Adobe. Inside that folder, look for one called Shockwave Player 12, and inside there, look for a folder called Xtras.


Paste the Xtra file (with an X32 extension) in there along with the others. Press Yes to admin prompts.


Go back to the system folder. Look for a folder called Macromed.


If it doesn't exist, you are done - otherwise, go into the Macromed folder. Inside, look for a folder called Shockwave Player 10, and inside there, look for a folder called Xtras. Paste the Xtra file in there as well. This will cause Shockwave to look here when loading the Xtra.


Offline Playback using Projectors.


So you've found a Shockwave Movie, but it isn't on a website and you want to play it offline. How can you do this short of using XAMPP and a web browser? Well, you can use a standard Director feature, called a Projector. These are executable files capable of playing movie files on your PC, without a browser or the need to have Shockwave installed. They are standalone players that include all the necessary libraries.


If you have a copy of Director, you could use it to create a Projector yourself. I'll save you the hassle - I've got a number of Projectors in my MEGA Folder below. These are taken straight from the Director install CD.


https://mega.nz/#F!10oyzSrL!AttpEr-nBc_7GhFy5zQkvA.


The Projector Skeletons are the ones you want and are official Macromedia/Adobe components. If you're not sure which to use, try the latest version (12.0.0.111.) The "Stretch Projectors" are my modifications that attempt to stretch the movie to fullscreen size, though this is not guaranteed to work for all movies.


However, playing offline by using a Projector introduces other issues.


Loaders.


A common web convention in the early 2000s was to throw up a fancy loading screen while waiting for full webgames to download. This is equally the case with Shockwave. You can think of loaders kind of like a bit.ly URL - they redirect elsewhere, and if the content they're trying to load is gone, it won't load.


Sometimes you will find a loader that tries to load from a website that no longer exists. This is a problem because the game will be missing assets. Typically, if your Shockwave Movie file is under 20 KB, it's probably a loader. You can typically discard loaders. The main movie file it tries to load is all that is important.


External Files.


Another common practice was to have level one be in one file, level two be in another, and so on - each only downloading from the internet when the previous level completed to lower the filesize of the main movie. This is problematic because you might have the main movie and none of the assets it requires. Shockwave is a multimedia application, so it supports many asset types (JPEG, MP3 etc.) and can download these files from the internet at any time for playback.


The primary filetypes to keep an eye out for when attempting to save a Shockwave Movie along with all its assets are Director Movies (DIR/DXR/DCR filetype) and Director Casts (CST/CXT/CCT filetype) as these are the standard Director movie formats Shockwave can open. You can use Telerik Fiddler to see what files a Shockwave Movie is downloading when embedded on a page. When playing offline in a Projector, a file browse dialog will appear for missing files.


Leech Protection.


Finally, Shockwave Movies often would attempt to prevent theft by checking if they are being played on the intended website, to prevent hotlinking or stealing. This poses a problem for offline play, since Shockwave will get a local path instead of a URL, and the scripts will detect that they're not being played on the intended website, locking you out.


If you have Director, you can use the LeechProtectionRemovalHelp Xtra to remove the Leech Protection - this is an Xtra I wrote to help with Shockwave Movie archival. I promise I'll have better documentation soon!.


https://github.com/tomysshadow/LeechProtectionRemovalHelp-Xtra.


This still can't resolve all situations. Shockwave doesn't come with built in Leech Protection, so how it is done is up to developer implementation. This means there are a lot of different types of Leech Protection. One of the more advanced is Robotduck's Leech Protection, which makes use of an external PHP script. In these cases, there's nothing that can be done short of using XAMPP and editing your Windows hosts file, then playing the movie in a browser.


https://web.archive.org/web/20081221135813/http://www.robotduck.com/content/articles/director/net/dcrProtection/index.htm.


Conclusion.


Shockwave Movies are hard to play. Feel free to ask me additional questions.


If you're interested in this topic, definitely check out communities devoted to saving webgames such as BlueMaxima's Flashpoint. There is also my personal MEGA Folder with the games I have managed to save so far. As Director has been discontinued and Shockwave games slowly disappear from the web, the fact Macromedia never released any format documentation makes figuring out the inner workings of this technology a new and exciting field. Maybe you'll even join us!.


http://bluemaxima.org/flashpoint/.


https://mega.nz/#F!ppJBySSC!LCR6NbqXpUpyXqH_1eemhQ.


https://docs.google.com/document/d/1jDBXE4Wv1AEga-o1Wi8xtlNZY4K2fHxW2Xs8RgARrqk/edit?usp=sharing.


Answer from user tomysshadow at gaming.stackexchange.com.


[BACK]

Does it make a difference to CP if you feed candies before or after evolving? Does it make a difference to CP if you feed candies before or after evolving?

Posted On: November 10, 2019
When activating the evolution for a caught Pokemon, it seems to amplify the Combat Power (CP). Thus it seems most beneficial to evolve your Pokemon with the highest CP, if you have multiple of the sam...[More]


Whats the most efficient brain–computer interface to play video games? Whats the most efficient brain–computer interface to play video games?

Posted On: March 29, 2024
I read:.Technology for connecting paralyzed folks with computers has existed for a while now, according to Bloomberg:.Neuralink is not the only company working on brain devices that connect with comp...[More]


How can I copy part of a Minecraft world into another Minecraft world? How can I copy part of a Minecraft world into another Minecraft world?

Posted On: January 11, 2023
Backstory.The places that have been built on in my world aren't that big. It's a ~100x~100 square, a ~150x~50 rectangle in the Nether, and another ~100x~100 square accessed by portals.The world is cu...[More]


This Just Distracts Me in Hogwarts Legacy This Just Distracts Me in Hogwarts Legacy

Posted On: April 22, 2023
Question from user Ravenclaw-Gamer at HogwartsLegacyGaming at reddit.com. Answer: Started playing God of War: Ragnorok after HL and I’m pressing the revelio everywhere and it’s not w...[More]


If your WoW subscription expires, do you go back to Starter Edition? If your WoW subscription expires, do you go back to Starter Edition?

Posted On: April 3, 2024
I've currently got a WoW account that's in "Starter Edition" (or whatever it is they call the free neverending trial, that seems to be the name they use).I'd like to know what happens if I subscribe a...[More]


Is there any reason to collect more money after repaying the companys debt? Is there any reason to collect more money after repaying the companys debt?

Posted On: April 16, 2024
In Pikmin 2, after you repay the company's debt of 10,000 Pokos, you are tasked with collecting the rest of the uncollected treasures. However, I noticed you can still earn money outside of treasures ...[More]


What devices can you play Sonic Mania on? What devices can you play Sonic Mania on?

Posted On: January 24, 2023
I asked this question because Sonic Mania can probably be played on a few devices.Question from user Dark sonic at gaming.stackexchange.com.Answer:From the Wikipedia article on Sonic Mania, the game i...[More]


A single Microsoft account, but two Xbox consoles: I would like to use a different unlock pattern A single Microsoft account, but two Xbox consoles: I would like to use a different unlock pattern

Posted On: December 3, 2023
I have a single Microsoft account (2FA enabled), but two consoles (Xbox S and the big X). One console is for the kids and one for me. I want to use a different unlock pattern or somehow make sure t...[More]


What do the Fruit Ninja notifications under the Gold Apples buttons mean? What do the Fruit Ninja notifications under the Gold Apples buttons mean?

Posted On: May 8, 2023
As you can see, there's a "(1)" under both the Gold Apples and Starfruit buttons. I've tried tapping them, but there's nothing seemingly pertaining to the "notifications&quo...[More]


Do BG fans feel threatened by Bethesda's Starfield? Do BG fans feel threatened by Bethesda's Starfield?

Posted On: September 24, 2023
Do you think Starfield is going to completely overshadow BG3? Question from user ThanosofTitan92 at BaldursGate3 at reddit. Answer: No. Answer from user funkyfritter at BaldursGate3 at red...[More]