Skip to main content Roms Megathread 4.0 HTML Edition 2021 : r/Roms
r/Roms icon
Go to Roms
•

Roms Megathread 4.0 HTML Edition 2021

Go here for Roms

Follow the either of the links below.

Github https://r-roms.github.io/ This is the primary megathread.

Gitlab link https://r-roms.gitlab.io/ This is the backup megathread, it'll be updated alongside the github megathread.


The megathread contains 7 tabs:

  • The landing tab is the Home tab, it explains how to use the megathread and has some helpful tips.

  • The Popular games tab lists direct links to popular games, this list has been made mostly by SuperBio, and as such may not represent what you think a popular game is. If you feel something is missing there PM SuperBio and he'll have it added.

  • The next 5 tabs link directly to collections based on console and publisher, they include Nintendo, Sony, Microsoft, Sega, and the PC.

  • The last tab is the other tab, this is where you can find Retro games, defined by No-Intro and others as pre Gamecube and PS2 era. This tab exists to link to the large collections that No-Intro and various other groups have collected.


r/ROMS Official Matrix server Link

  • Go here if you need additional help with anything ROM or emulation related.


Changelog:

Redid Megathread post on Reddit, hopefully this is a cleaner, easier to read version that isn't as confusing as the out of date changelog

Moved the megathread to gitlab due to account issues on github, update your bookmarks accordingly.

Restored the megathread on github, left the gitlab megathread link as a backup, both will be updated.

Archived post. New comments cannot be posted and votes cannot be cast.
Sort by:
Best
Open comment sort options

To get past Google Drive's Download Quota

  1. Make a "copy" of the file to your G Drive

  2. Make a folder name, put file in it

  3. Download folder.

  4. Profit?!!

:-)

take my upvote, you absolute legend!

More replies
More replies
[deleted]
•

I'm so confused on how to use this thread

Click the links go to the page pick what you want click the corresponding link and download.

More replies
More replies

For everyone who can't download from the archive.org, make sure that you have made an account on the archive.org.

The archive.org locks out guest users when collections use a large percentage of their Internet bandwith.

More replies

I just joined this subreddit. Where do I find the roms. I am confused.

More replies
[deleted]
•

Are there also coming romhacks?

romhack collections would be extremely nice (also fantranslations)

More replies
More replies

I couldn't believe that there are actually people who couldn't find the link in the megathread lmfao

More replies
• • Edited

For downloading a lot of ROM's at once off of the Archive.org site, I created the following PowerShell script that will go to the link in the $rooturl variable and grab any links on the page that follow the criteria (after where-object, make sure to modify to suit your needs) and compile a list of links to use to download the ROM's on that page. It'll then place a file on your desktop called "archiveorglinks.txt" with all of the links of the ROM's, that you can then either go through and either pick out ones you want or select all of them and then load into "Free Download Manager" to handle the downloads for you. You get faster downloads this way and can leave it alone while it does its thing. I hope this is helpful :)

$rooturl = "https://archive.org/download/nointro.n64/" #change to archive's root directory, ensure trailing slash exists

$links = (Invoke-WebRequest -Uri $rooturl).Links |

Where-Object {($_.innerHTML -ne "View Contents") -and ($_.href -notlike "*Europe*") -and ($_.href -notlike "*Japan*") -and ($_.href -notlike "*Germany*") -and ($_.href -notlike "*France*") -and ($_.href -like "*.7z")} |

Select-Object -ExpandProperty href

$URLs = @()

$desktop = [Environment]::GetFolderPath("Desktop")

$savefile = "$desktop\archiveorglinks.txt"

foreach ($link in $links){

$URLs += $rooturl + $link

}

$URLs | Out-File -FilePath $savefile

*EDIT*
If you come across an archive that doesn't have 7zip files, replace the last filter "($_.href -like "*.7z")" with the appropriate extension of the archive files, ie. "($_.href -like "*.zip")" for zip files.

More replies