├── .github ├── ISSUE_TEMPLATE │ ├── compatibility_report.yml │ └── suggestion.yml └── workflows │ └── update-contributors.yml ├── Arcade.md ├── Homebrew.md ├── LICENSE ├── README.md └── Retail.md /.github/ISSUE_TEMPLATE/compatibility_report.yml: -------------------------------------------------------------------------------- 1 | name: Compatibility Report 2 | description: Report the compatibility status of software on FreeMyXe. 3 | title: "[Compatibility] Title" 4 | labels: ["compatibility", "Game report"] 5 | body: 6 | - type: markdown 7 | attributes: 8 | value: "## Please fill out the following details to help the community." 9 | 10 | - type: input 11 | id: title 12 | attributes: 13 | label: "Title" 14 | description: "Enter the full name of the Game or Homebrew." 15 | placeholder: "e.g., Sonic Generations" 16 | 17 | - type: dropdown 18 | id: type 19 | attributes: 20 | label: "What type of software is this?" 21 | options: 22 | - Disc/ISO (Extracted Format - XeX) 23 | - GoD (Container Format) 24 | - GoD (Extracted Format - XeX) 25 | - GoD (Iso2God Container Format) 26 | - Xbox Live Arcade 27 | - Homebrew (XEX/ELF) 28 | - Patch (XEX) 29 | 30 | - type: dropdown 31 | id: compatibility-status 32 | attributes: 33 | label: "Does the title work?" 34 | options: 35 | - ✅ Works (Fully functional) 36 | - ⚠️ Partially (Works but has issues) 37 | - ❌ Borked (Does not work) 38 | 39 | - type: checkboxes 40 | id: patched-xex 41 | attributes: 42 | label: "Have you made sure to patch the files first before running it?" 43 | description: "Make sure you've used one of the available methods before reporting an issue." 44 | options: 45 | - label: "Yes, I definitely have patched the XEX file and any other necessary files or unlocked the GoD." 46 | - label: "No (some titles and XBLA)" 47 | 48 | - type: dropdown 49 | id: method 50 | attributes: 51 | label: "Which method did you use?" 52 | options: 53 | - Manual Patching 54 | - XexTool 55 | - GoD/XBLA Patching 56 | 57 | - type: checkboxes 58 | id: updates-removed 59 | attributes: 60 | label: "Title Update Specifications" 61 | description: "Did you apply any Title Updates for this Game?" 62 | options: 63 | - label: "Base Game - No Title Update Installed" 64 | - label: "Title Update Installed" 65 | - label: "I Had To Remove a Title Update For The Game To Work" 66 | - label: "Does Not Apply (Homebrew)" 67 | 68 | - type: checkboxes 69 | id: Homebrew-elf 70 | attributes: 71 | label: "Homebrew ELF Format" 72 | description: "Some Homebrew applications may not work correctly on certain Xbox 360 motherboard revisions (Corona or Winchester). Applications pre-2013 may also have compatibility issues." 73 | options: 74 | - label: "Yes, this is an ELF-formatted Homebrew application" 75 | - label: "No" 76 | 77 | - type: textarea 78 | id: notes 79 | attributes: 80 | label: "Notes" 81 | description: "Describe any issues, fixes, or observations." 82 | placeholder: "Example: Game crashes after intro, but works with a patch made for RGH: example.com." 83 | 84 | - type: textarea 85 | id: logs 86 | attributes: 87 | label: "Logs or Error Messages (if available)" 88 | description: "Paste any logs, error messages, or debug output." 89 | placeholder: "Example: Fatal crash at 0xXXXXXXXX." 90 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/suggestion.yml: -------------------------------------------------------------------------------- 1 | name: Repo Suggestion 2 | description: Submit a suggestion to improve the FreeMyXe compatibility repo. 3 | title: "[Suggestion] Suggestion Title" 4 | labels: ["suggestion"] 5 | body: 6 | - type: markdown 7 | attributes: 8 | value: "## Please fill out the following details to help improve the repo." 9 | 10 | - type: input 11 | id: suggestion-title 12 | attributes: 13 | label: "Suggestion Title" 14 | description: "Enter a short title for your suggestion." 15 | placeholder: "e.g., Add a filtering feature for compatibility status" 16 | 17 | - type: textarea 18 | id: suggestion-description 19 | attributes: 20 | label: "Detailed Suggestion" 21 | description: "Describe your suggestion in detail. Explain why it's needed and how it could improve the repo." 22 | placeholder: "Example: It would be helpful to have a filtering option to search for games based on compatibility status (e.g., Works, Partially, Borked)." 23 | 24 | - type: checkboxes 25 | id: priority 26 | attributes: 27 | label: "How important is this suggestion?" 28 | options: 29 | - label: "Low" 30 | - label: "Medium" 31 | - label: "High" 32 | 33 | - type: textarea 34 | id: additional-info 35 | attributes: 36 | label: "Additional Information" 37 | description: "If applicable, provide any additional information or context for your suggestion. (Put the yap here)" 38 | placeholder: "Example: I noticed this when browsing through the games list, and it would save time in searching for compatible titles." 39 | 40 | - type: input 41 | id: contact-info 42 | attributes: 43 | label: "Contact Information (Optional)" 44 | description: "If you'd like to be contacted regarding your suggestion, please provide your email or preferred contact method." 45 | placeholder: "e.g., replying to this issue, example@example.com" 46 | -------------------------------------------------------------------------------- /.github/workflows/update-contributors.yml: -------------------------------------------------------------------------------- 1 | name: Update Contributors List 2 | on: 3 | schedule: 4 | - cron: '0 * * * *' 5 | workflow_dispatch: 6 | 7 | jobs: 8 | update-contributors: 9 | runs-on: ubuntu-latest 10 | steps: 11 | - name: Checkout repo 12 | uses: actions/checkout@v3 13 | 14 | - name: Fetch contributors 15 | id: fetch-contributors 16 | run: | 17 | CONTRIBUTORS=$(curl -s "https://api.github.com/repos/XDanfr/FMX-Compatibility/contributors" | jq -r '.[] | select(.login != "XDanfr") | "| [\(.login)](https://github.com/\(.login)) | \(.contributions) |"') 18 | echo "CONTRIBUTORS<> $GITHUB_ENV 19 | echo "$CONTRIBUTORS" >> $GITHUB_ENV 20 | echo "EOF" >> $GITHUB_ENV 21 | 22 | - name: Update README 23 | run: | 24 | sed -i '//,//{//!d}' README.md 25 | echo "" >> README.md 26 | echo "### Top Contributors" >> README.md 27 | echo "| Contributor | Contributions |" >> README.md 28 | echo "|-------------|---------------|" >> README.md 29 | echo "$CONTRIBUTORS" >> README.md 30 | echo "" >> README.md 31 | 32 | - name: Commit changes 33 | run: | 34 | git config --global user.name "GitHub Actions" 35 | git config --global user.email "actions@github.com" 36 | git add README.md 37 | git commit -m "Update README with top contributors" 38 | git push 39 | -------------------------------------------------------------------------------- /Arcade.md: -------------------------------------------------------------------------------- 1 | > [!NOTE] 2 | > - Remember to patch your Games if they need to be! Follow either tutorial in the [Wiki](https://github.com/XDanfr/FMX-Compatibility/wiki). 3 | > - Before adding a Game to this list, **try removing any title updates**. Some Games may only work when title updates are deleted. 4 | > - If a Game is listed as `❌ Borked` or `⚠️ Partial` in a specific format, try converting via another method. It might work completely!! 5 | 6 | | Game Title | Works? | Needs unlocking? | Notes (Crashes, Fixes, Patches) | 7 | |---------------------------------|:------:|:----------------:|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 8 | | Battleblock Theater | ✅ | ❌ | No patches needed. ([#6](https://github.com/XDanfr/FMX-Compatibility/pull/6)) | 9 | | Castle Crashers | ✅ | ❌ | No patches needed. ([#6](https://github.com/XDanfr/FMX-Compatibility/pull/6)) | 10 | | Dungeons & Dragons: Chronicles of Mystara | ✅ | ❌ | No patches needed. [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/56) by [TimedChaos](https://github.com/TimedChaos)| 11 | | Geometry Wars Evolved 2 | ✅ | ❌ | No patches needed. [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/86) by [Antonio231102](https://github.com/Antonio231102) | 12 | | GoldenEye 007 XBLA Demo | ✅ | ❌ | No patches needed. [Reported working](https://www.reddit.com/r/360hacks/comments/1jaq7p7) by [u/IKarma88](https://www.reddit.com/u/IKarma88/). AKA Project Bean/Remaster | 13 | | Jet Set Radio | ✅ | ❌ | No patches needed. ([#6](https://github.com/XDanfr/FMX-Compatibility/pull/6)) | 14 | | Marble Blast Ultra | ✅ | ❌ | No patches needed. ([#6](https://github.com/XDanfr/FMX-Compatibility/pull/6)) | 15 | | Marvel vs Capcom Origins | ✅ | ❌ | No patches needed. (note by [Olakase123lol](https://github.com/olakase123lol)) | 16 | | Marvel vs Capcom 2 | ⚠️ | ❌ | No patches needed. (note by [Olakase123lol](https://github.com/olakase123lol))

[Reported](https://github.com/XDanfr/FMX-Compatibility/issues/55) input lag if sprite filter is enabled by [SaNaGa23](https://github.com/SaNaGa23). **Disable sprite filter to fix input lag!** | 17 | | Minecraft: Xbox 360 Edition | ✅ | ✅ | The game launches with the latest title update if you unlock the full game on XM360 first. Also reported working if you patch the XEX from a disc rip. | 18 | | Plants Vs. Zombies | ✅ | ❌ | No patches needed. ([#6](https://github.com/XDanfr/FMX-Compatibility/pull/6)) | 19 | | Radiant Silvergun | ✅ | ❌ | No patches needed. [Reported working](https://www.reddit.com/r/360hacks/comments/1j87wwc/comment/mh3io2e) by [u/Schwingit](https://www.reddit.com/user/Schwingit/) | 20 | | Pac-Man | ✅ | ❌ | No patches needed. [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/85) by [Antonio231102](https://github.com/Antonio231102) | 21 | | Pac-Man Championship Edition | ✅ | ❌ | No patches needed. [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/86) by [Antonio231102](https://github.com/Antonio231102) | 22 | | Sonic The Fighters | ✅ | ❌ | No patches needed, [Reported Working](https://github.com/XDanfr/FMX-Compatibility/issues/54) by [SaNaGa23](https://github.com/SaNaGa23) | 23 | | South Park Let's Go Tower Defense Play! | ✅ | ❌ | No patches needed. [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/72) by [matti-dotcom](https://github.com/matti-dotcom) | 24 | | Super Meat Boy | ✅ | ❌ | No patches needed. ([#6](https://github.com/XDanfr/FMX-Compatibility/pull/6)) | 25 | | Trials Fusion | ✅ | ❌ | No patches needed. [Reported working](https://github.com/XDanfr/FMX-Compatibility/pull/89) by [lucmsilva651](https://github.com/lucmsilva651) | 26 | | Trials Evolution | ✅ | ❌ | No patches needed. [Reported working](https://github.com/XDanfr/FMX-Compatibility/pull/89) by [lucmsilva651](https://github.com/lucmsilva651) | 27 | | Worms Ultimate Mayhem | ✅ | ❌ | No patches needed. [Reported working](https://github.com/XDanfr/FMX-Compatibility/pull/89) by [lucmsilva651](https://github.com/lucmsilva651) | 28 | | UNO | ✅ | ❌ | No patches needed. DLCs and Title Update works [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/87) by [Antonio231102](https://github.com/Antonio231102) | 29 | 30 | 31 | | Status | Meaning | 32 | |--------|---------| 33 | | ✅ Works | Fully functional with no issues. | 34 | | ⚠️ Partially | Works, but has glitches or requires fixes. | 35 | | ❌ Borked | Does not work or crashes. | 36 | -------------------------------------------------------------------------------- /Homebrew.md: -------------------------------------------------------------------------------- 1 | > [!CAUTION] 2 | > - **DO NOT RUN ANYTHING THAT WRITES TO THE NAND! YOU WILL BRICK YOUR CONSOLE!** 3 | > - **Always use a non-Xbox Live account** when running homebrew and **do not connect to the internet.** 4 | > - Homebrew that will result in your account and/or console being **almost definitely banned** from Xbox Live will be marked with 👤 if you attempt to connect to the internet/use an Xbox Live account. 5 | 6 | > [!NOTE] 7 | > - **Remember to patch your apps!** If necessary, follow one of the tutorials in the [Wiki](https://github.com/XDanfr/FMX-Compatibility/wiki) to ensure proper functionality. 8 | > - Emulators are listed separately from homebrew. See [Emulators](#emulators) 9 | > - DashLaunch plugins (e.g. Stealth servers, XBDM) don't work as it can't be installed. 10 | > - If Homebrew is listed as `❌ Borked` or `⚠️ Partial` in a specific format, try converting via another method. It might work completely!! (This doesn't apply to DashLaunch) 11 | 12 | ### Regular Homebrew 13 | 14 | | Homebrew Title | Format | XexTool | Manual | No patching | Notes (Crashes, Fixes, Patches) | 15 | |-------------------------|:------:|:-------:|:------:|:-----------:|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 16 | | Aurora | XEX | ✅ | ✅ | ✅ | ~~Covers will not install if you are offline, so you'll have to use [Aurora Asset Editor](https://github.com/XboxUnity/AuroraAssetEditor/) and download covers manually.~~

(beta 4 and above only), you can now connect to the internet and the assets will be automatically downloaded from [XboxUnity](http://xboxunity.net). **NOTE: You still need to disconnect from the internet before running the exploit again** (Beta 5 and above), now the Aurora Guide Menu works as it should now | 17 | | DashLaunch | XEX | ⚠️ | ⚠️ | ❌ | **Do not install DashLaunch when prompted.** Runs, but is functionless at the moment. (Tested on beta 4) | 18 | | Freestyle 3 | XEX | ✅ | | ✅ | I tried the patched version of FSD 3 that fixes all bugs and it runs great. **Do not set it as the default dashboard.** | 19 | | NXE2GOD | XEX | ✅ | | | Turns your disc installed to the hard drive to a Game on Demand correctly. | 20 | | Simple 360 NAND Flasher | XEX | ✅ | | ❌ | Successfully dumps your NAND to your Bad Update USB. **Obviously**, do not place an updflash.bin beside the homebrew's XEX or try to flash your NAND in any way. | 21 | | XeXmenu | XEX | ✅ | ✅ | ❌ | Works as expected, no issues found :D (Tested on beta 3) | 22 | | XeLL | bin | | | ✅ | Get your XeLL .bin files and FreeMyXe should recognise them and ask you if you want to boot it. | 23 | | XM360 | XEX | ✅ | | | XBLA Games and DLC can be unlocked using XM360. **NOTE: This will prevent them from launching without being in a modded state, so back up your Games before unlocking.** | 24 | 25 | ### Emulators 26 | | Emulator Title | Format | XexTool | Manual | No patching | Notes (Crashes, Fixes, Patches) | 27 | |-------------------------|:------:|:-------:|:------:|:-----------:|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| 28 | | DOSBox | XEX | ✅ | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/45) by [Lowyk](https://github.com/Lowyk). | 29 | | GenesisPlus360 👤 | XEX | ✅ | | | Runs ROMs with no issue, need to change the rom folder's location if needed. **NOTE: the Emulator has a Achievement system so you must be using an offline account if using the emulator, as it will most likely make your console or account get banned if online.** | 30 | | Modded Xefu Emulator | XEX | | | ✅ | Remember to Run "OGXboxPrep.xex" to play your OG Xbox Game, replace the original compatibility folder From HddX: to allow you to run Backup, for a compatibily list of the games, use this [Site](https://consolemods.org/wiki/Xbox_360:Original_Xbox_Games_Compatibility_List#Compatibility_List) | 31 | | Snes360 👤 | XEX | ✅ | | | Runs ROMs with no issue. **NOTE: You immediately receive an achievement as soon as you launch the emulator with a profile logged in, and will most likely be why your console or account is banned if you run the emulator on an Xbox Live-enabled profile.** | 32 | | XeBoyAdvance | XEX | ✅ | | | v0.4.7 Working as expected. (Tested on beta 5) | 33 | 34 | | Status | Meaning | 35 | |--------|---------| 36 | | ✅ Works | Fully functional with no issues. | 37 | | ⚠️ Partially | Works, but has glitches or requires fixes. | 38 | | ❌ Borked | Does not work or crashes. | 39 | | 👤 Offline | Only use an offline account (not Xbox Live) to prevent a ban. | 40 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Creative Commons Legal Code 2 | 3 | CC0 1.0 Universal 4 | 5 | CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE 6 | LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN 7 | ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS 8 | INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES 9 | REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS 10 | PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM 11 | THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED 12 | HEREUNDER. 13 | 14 | Statement of Purpose 15 | 16 | The laws of most jurisdictions throughout the world automatically confer 17 | exclusive Copyright and Related Rights (defined below) upon the creator 18 | and subsequent owner(s) (each and all, an "owner") of an original work of 19 | authorship and/or a database (each, a "Work"). 20 | 21 | Certain owners wish to permanently relinquish those rights to a Work for 22 | the purpose of contributing to a commons of creative, cultural and 23 | scientific works ("Commons") that the public can reliably and without fear 24 | of later claims of infringement build upon, modify, incorporate in other 25 | works, reuse and redistribute as freely as possible in any form whatsoever 26 | and for any purposes, including without limitation commercial purposes. 27 | These owners may contribute to the Commons to promote the ideal of a free 28 | culture and the further production of creative, cultural and scientific 29 | works, or to gain reputation or greater distribution for their Work in 30 | part through the use and efforts of others. 31 | 32 | For these and/or other purposes and motivations, and without any 33 | expectation of additional consideration or compensation, the person 34 | associating CC0 with a Work (the "Affirmer"), to the extent that he or she 35 | is an owner of Copyright and Related Rights in the Work, voluntarily 36 | elects to apply CC0 to the Work and publicly distribute the Work under its 37 | terms, with knowledge of his or her Copyright and Related Rights in the 38 | Work and the meaning and intended legal effect of CC0 on those rights. 39 | 40 | 1. Copyright and Related Rights. A Work made available under CC0 may be 41 | protected by copyright and related or neighboring rights ("Copyright and 42 | Related Rights"). Copyright and Related Rights include, but are not 43 | limited to, the following: 44 | 45 | i. the right to reproduce, adapt, distribute, perform, display, 46 | communicate, and translate a Work; 47 | ii. moral rights retained by the original author(s) and/or performer(s); 48 | iii. publicity and privacy rights pertaining to a person's image or 49 | likeness depicted in a Work; 50 | iv. rights protecting against unfair competition in regards to a Work, 51 | subject to the limitations in paragraph 4(a), below; 52 | v. rights protecting the extraction, dissemination, use and reuse of data 53 | in a Work; 54 | vi. database rights (such as those arising under Directive 96/9/EC of the 55 | European Parliament and of the Council of 11 March 1996 on the legal 56 | protection of databases, and under any national implementation 57 | thereof, including any amended or successor version of such 58 | directive); and 59 | vii. other similar, equivalent or corresponding rights throughout the 60 | world based on applicable law or treaty, and any national 61 | implementations thereof. 62 | 63 | 2. Waiver. To the greatest extent permitted by, but not in contravention 64 | of, applicable law, Affirmer hereby overtly, fully, permanently, 65 | irrevocably and unconditionally waives, abandons, and surrenders all of 66 | Affirmer's Copyright and Related Rights and associated claims and causes 67 | of action, whether now known or unknown (including existing as well as 68 | future claims and causes of action), in the Work (i) in all territories 69 | worldwide, (ii) for the maximum duration provided by applicable law or 70 | treaty (including future time extensions), (iii) in any current or future 71 | medium and for any number of copies, and (iv) for any purpose whatsoever, 72 | including without limitation commercial, advertising or promotional 73 | purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each 74 | member of the public at large and to the detriment of Affirmer's heirs and 75 | successors, fully intending that such Waiver shall not be subject to 76 | revocation, rescission, cancellation, termination, or any other legal or 77 | equitable action to disrupt the quiet enjoyment of the Work by the public 78 | as contemplated by Affirmer's express Statement of Purpose. 79 | 80 | 3. Public License Fallback. Should any part of the Waiver for any reason 81 | be judged legally invalid or ineffective under applicable law, then the 82 | Waiver shall be preserved to the maximum extent permitted taking into 83 | account Affirmer's express Statement of Purpose. In addition, to the 84 | extent the Waiver is so judged Affirmer hereby grants to each affected 85 | person a royalty-free, non transferable, non sublicensable, non exclusive, 86 | irrevocable and unconditional license to exercise Affirmer's Copyright and 87 | Related Rights in the Work (i) in all territories worldwide, (ii) for the 88 | maximum duration provided by applicable law or treaty (including future 89 | time extensions), (iii) in any current or future medium and for any number 90 | of copies, and (iv) for any purpose whatsoever, including without 91 | limitation commercial, advertising or promotional purposes (the 92 | "License"). The License shall be deemed effective as of the date CC0 was 93 | applied by Affirmer to the Work. Should any part of the License for any 94 | reason be judged legally invalid or ineffective under applicable law, such 95 | partial invalidity or ineffectiveness shall not invalidate the remainder 96 | of the License, and in such case Affirmer hereby affirms that he or she 97 | will not (i) exercise any of his or her remaining Copyright and Related 98 | Rights in the Work or (ii) assert any associated claims and causes of 99 | action with respect to the Work, in either case contrary to Affirmer's 100 | express Statement of Purpose. 101 | 102 | 4. Limitations and Disclaimers. 103 | 104 | a. No trademark or patent rights held by Affirmer are waived, abandoned, 105 | surrendered, licensed or otherwise affected by this document. 106 | b. Affirmer offers the Work as-is and makes no representations or 107 | warranties of any kind concerning the Work, express, implied, 108 | statutory or otherwise, including without limitation warranties of 109 | title, merchantability, fitness for a particular purpose, non 110 | infringement, or the absence of latent or other defects, accuracy, or 111 | the present or absence of errors, whether or not discoverable, all to 112 | the greatest extent permissible under applicable law. 113 | c. Affirmer disclaims responsibility for clearing rights of other persons 114 | that may apply to the Work or any use thereof, including without 115 | limitation any person's Copyright and Related Rights in the Work. 116 | Further, Affirmer disclaims responsibility for obtaining any necessary 117 | consents, permissions or other rights required for any use of the 118 | Work. 119 | d. Affirmer understands and acknowledges that Creative Commons is not a 120 | party to this document and has no duty or obligation with respect to 121 | this CC0 or use of the Work. 122 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | This repo is looking for **collaborators**! 2 | You could help manage **issues**, approve **pull requests**, and **directly edit markdown files without needing a pull request**. If you’d like to become a collaborator, please apply through the [Issues](https://github.com/XDanfr/FMX-Compatibility/issues) tab. 3 | 4 | # FreeMyXe Compatibility Database 5 | This is a community-driven compatibility database for Games and Homebrew running on [**FreeMyXe**](https://github.com/InvoxiPlayGames/FreeMyXe)**-patched Xbox 360 consoles**. 6 | The goal is to document which Games and Homebrew work, which have issues, and any possible fixes. 7 | 8 | ## How to Use: 9 | 1. **Check Compatibility**: 10 | - Browse the [Retail Games](/Retail.md), or [Homebrew](/Homebrew.md) lists to see if a title works with FreeMyXe. 11 | 2. [**Contribute**](#how-to-contribute): 12 | - If you've tested a Game or Homebrew, contribute your findings by creating a pull request or using the Issues tab to report compatibility. See [How to Contribute](#how-to-contribute) for more. 13 | 3. **Additional Information**: 14 | - Visit the [**Wiki**](https://github.com/XDanfr/FMX-Compatibility/wiki) for more detailed guides on testing and patching methods. 15 | 16 | > [!NOTE] 17 | > This repo is made for **legally dumped Games** and Homebrew. This does **not** serve for piracy. 18 | > While pirated Games *will usually* run the same, this repo is made for people to see which legally dumped Games and Homebrew will run and therefore does not support or endorse piracy in any way. 19 | 20 | ## Game Compatibility List 21 | 22 | Compatibility reports are categorised as follows: 23 | 24 | | Status | Meaning | 25 | |--------|---------| 26 | | ✅ Works | Fully functional with no issues. | 27 | | ⚠️ Partially | Works, but has glitches or requires fixes. | 28 | | ❌ Borked | Does not work or crashes. | 29 | | 👤 Offline | Only use an offline account (not Xbox Live) to prevent a ban. | 30 | 31 | ## Assumptions 32 | - All Games and Homebrew listed in this database are assumed to have been patched using one of the methods in the [**Wiki**](https://github.com/XDanfr/FMX-Compatibility/wiki) before testing. If a title does not work, please ensure it has been properly patched before reporting compatibility issues. 33 | - **Arcade games should work out of the box** in GoD format, but if you experience any issues, please report them via the issues tab or add them to the database. 34 | 35 | > [!NOTE] 36 | > If a Game or Homebrew doesn't work via XexTool, it's very likely that it'll work via [this method](https://www.youtube.com/watch?v=tUajcJjVaPY) (video). This is the recommended method. 37 | 38 | ## Known Issues and Troubleshooting 39 | - **Game not working after patching?** 40 | 41 | - Make sure you followed the recommended patching method outlined in the [Wiki](https://github.com/XDanfr/FMX-Compatibility/wiki/Recommended-method:-How-to-patch-Title-Updates). If it still doesn't work, it is likely `❌ Borked`. Please submit an issue regarding this. 42 | 43 | - **Problems with Indie Games?** 44 | 45 | - Indie Games often require an Xbox Live connection, which could lead to a potential **ban** from Microsoft if you are using FreeMyXe. While these games will generally work when connected, we strongly **recommend using an offline account** to prevent any risk. 46 | 47 | ## How to Contribute 48 | We rely on the community to expand and maintain this database (though I will be posting a lot here too with my findings!). To submit a compatibility report: 49 | 50 | 1. **Fork this repo** 51 | 2. **Edit the relevant markdown file** 52 | 3. **Use this format** when adding a new Game or Homebrew: 53 | ```md 54 | | Game/Homebrew Title | Manual | XexTool | GoD patching | No patching | Notes (Crashes, Fixes, Patches) | 55 | |----------------------------|:------:|:-------:|:------------:|:-----------:|--------------------------------------| 56 | | Example Game | ⚠️ | | | ❌ | Crashes after loading world 2 | 57 | | Another Game 👤 | ✅ | ✅ | | | No issues found, use offline account | 58 | | Yet Another | ❌ | ❌ | ❌ | | Doesn't launch at all | 59 | ``` 60 | 61 | 62 | So that it'll look like this: 63 | 64 | | Game/Homebrew Title | Manual | XexTool | GoD patching | No patching | Notes (Crashes, Fixes, Patches) | 65 | |----------------------------|:------:|:-------:|:------------:|:-----------:|--------------------------------------| 66 | | Example Game | ⚠️ | | | ❌ | Crashes after loading world 2 | 67 | | Another Game 👤 | ✅ | ✅ | | | No issues found, use offline account | 68 | | Yet Another | ❌ | ❌ | ❌ | | Doesn't launch at all | 69 | 70 | 5. **Submit a pull request** with your changes. 71 | 72 | 73 | > [!NOTE] 74 | > Need more help? Check out GitHub's guide on [Contributing to a project](https://docs.github.com/en/get-started/exploring-projects-on-github/contributing-to-a-project). 75 | 76 | Alternatively, you can report compatibility using **GitHub Issues**: 77 | 78 | - Open an [**Issue**](https://github.com/XDanfr/FMX-Compatibility/issues/new?template=compatibility_report.yml) and follow the provided template. 79 | 80 | 81 | We are also looking for contributors! Check the top of this readme to find out more. 82 | 83 | > [!NOTE] 84 | > To avoid compatibility issues, **always make sure you're using the latest version** of [BadUpdate](https://github.com/grimdoomer/Xbox360BadUpdate/releases/latest) and [FreeMyXe](https://github.com/InvoxiPlayGames/FreeMyXe/releases/latest). 85 | 86 | 87 | 88 | 89 | ## Help Wanted 90 | - **Testing** additional [Homebrew](/Homebrew.md) and documenting their compatibility. 91 | - **Improving** the [Wiki](https://github.com/XDanfr/FMX-Compatibility/wiki) with easier to understand patching instructions. 92 | - **Translating** the repo into other languages to make it more accessible globally. 93 | 94 | ## Roadmap 95 | - Nothing left! Feel free to give suggestions via the Issues tab. 96 | 97 | ## Credits 98 | This project is maintained by the Xbox 360 community! Special thanks to: 99 | - [**InvoxiPlayGames**](https://github.com/InvoxiPlayGames) for creating [**FreeMyXe**](https://github.com/InvoxiPlayGames/FreeMyXe) and discovering the Rock Band Blitz save file exploit. 100 | - [**grimdoomer**](https://github.com/grimdoomer) for developing [**Xbox360BadUpdate**](https://github.com/grimdoomer/Xbox360BadUpdate). 101 | - **evangeloush** ([u/3v4ng310u5](https://reddit.com/u/3v4ng310u5)) for helping out with a couple of questions and making an awesome [**tutorial**](https://www.reddit.com/r/360hacks/comments/1j7kaz8/running_actual_Games_on_the_badupdate_exploit/). 102 | - [**CabooseSayzWTF**](https://github.com/CabooseSayzWTF) for discovering the recommended [**manual patching method**](https://github.com/XDanfr/FMX-Compatibility/wiki/Recommended-method:-How-to-patch-Title-Updates) - many Games would not work or have TUs working **without your work.** 103 | -------------------------------------------------------------------------------- /Retail.md: -------------------------------------------------------------------------------- 1 | > [!NOTE] 2 | > - **Remember to patch your Games!** Be sure to follow one of the tutorials in the [Wiki](https://github.com/XDanfr/FMX-Compatibility/wiki) to ensure proper functionality. 3 | > - Before adding a `❌ Borked` Game to this list, **try removing any title updates**. Some games may only work when title updates are deleted. 4 | > - If a Game is listed as `❌ Borked` or `⚠️ Partial` in a specific format, try converting via another method. It might work completely!! 5 | 6 | | Game Title | Manual | XexTool | GoD patching | No patching | Notes (Crashes, Fixes, Patches) | 7 | |---------------------------------|:------:|:-------:|:------------:|:-----------:|----------------------------------------------------------------------------------------------------------------------------------------------| 8 | | 007: Quantum of Solace | ✅ | | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/7) by [CabooseSayzWTF](https://github.com/CabooseSayzWTF) | 9 | | Afro Samurai | | | | ✅ | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/48) by [hj-0](https://github.com/hj-0) | 10 | | Angry Birds Trilogy ⚠️ | | | | ✅ | the Credits reported not loading sometimes, so you cant get the golden egg [Reported working with issues](https://github.com/XDanfr/FMX-Compatibility/issues/58) by [matti-dotcom](https://github.com/matti-dotcom). Patching method used was unknown and ambiguous - either an XexTool patched XEX or an unlocked GoD. game does load without patching, including the credits. (note by [Olakase123lol](https://github.com/olakase123lol)) | 11 | | Asura's Wrath | ✅ | | | | works via manual patching [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/66) by [TimedChaos](https://github.com/TimedChaos) | 12 | | Beautiful Katamari | | ✅ | | | Works with XEXTools patching | 13 | | Blacksite Area 51 | ✅ | | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/7) by [CabooseSayzWTF](https://github.com/CabooseSayzWTF) | 14 | | Blur | | ✅ | | | Plays Perfectly (note by [Olakase123lol](https://github.com/olakase123lol)); confirmed by XDanfr | 15 | | Bomberman: Act Zero | | ❌ | | | Does not work with XEXTools | 16 | | Burger King Big Bumpin | ✅ | | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/51) by [LeachUK-420](https://github.com/LeachUK-420) | 17 | | Burger King Pocketbike Racer | ✅ | | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/50) by [LeachUK-420](https://github.com/LeachUK-420) | 18 | | Burger King Sneak King | ✅ | | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/49) by [LeachUK-420](https://github.com/LeachUK-420) | 19 | | Call of Duty 2 | ✅ | | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/7) by [CabooseSayzWTF](https://github.com/CabooseSayzWTF) | 20 | | Call of Duty 4: Modern Warfare | ✅ | | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/7) by [CabooseSayzWTF](https://github.com/CabooseSayzWTF) | 21 | | Call of Duty: Black Ops | ✅ | | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/7) by [CabooseSayzWTF](https://github.com/CabooseSayzWTF) | 22 | | Call of Duty: Black Ops II | | | | ✅ | No patches required as a GoD. [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/41) by [matti-dotcom](https://github.com/matti-dotcom) | 23 | | Call of Duty: Ghosts | ⚠️ | | | | **Remove Title Updates!** [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/39) by [BestGamer954](https://github.com/BestGamer954) | 24 | | Call of Duty Modern Warfare 2 | ⚠️ | | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/7) by [CabooseSayzWTF](https://github.com/CabooseSayzWTF) **only on TU6 & Tu9.** | 25 | | Call of Duty WaW | ✅ | | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/7) by [CabooseSayzWTF](https://github.com/CabooseSayzWTF) | 26 | | Call of Juarez | ✅ | | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/7) by [CabooseSayzWTF](https://github.com/CabooseSayzWTF) | 27 | | Catherine | | ✅ | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/57) by [TimedChaos](https://github.com/TimedChaos) | 28 | | Dance Central | | ✅ | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/67) by [guaycuru](https://github.com/guaycuru) | 29 | | Dance Central 2 | | ✅ | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/67) by [guaycuru](https://github.com/guaycuru) | 30 | | Dance Central 3 | | ✅ | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/67) by [guaycuru](https://github.com/guaycuru) | 31 | | Dark Sector | ✅ | | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/7) by [CabooseSayzWTF](https://github.com/CabooseSayzWTF) | 32 | | Dark Souls (Vanilla) | | | | ✅ | [Reported working witouth patching](https://github.com/XDanfr/FMX-Compatibility/issues/84) by [Antonio231102](https://github.com/Antonio231102) | 33 | | Dark Souls (Prepare to Die) | | | ❌ | | [Reported not working](https://github.com/XDanfr/FMX-Compatibility/issues/31) by [Evangelous](https://github.com/Evangelous) when tested on the Europe version. (might work for other regions?) | 34 | | Dark Souls 2 | | | ✅ | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/31) by [Evangelous](https://github.com/Evangelous) | 35 | | Dead Or Alive Xtreme 2 | | | ✅ | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/68) by [matti-dotcom](https://github.com/matti-dotcom) | 36 | | Deadly Premonition | | ✅ | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/30) by [Sakimotor](https://github.com/Sakimotor) | 37 | | Devil May Cry 4 | | | ✅ | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/31) by [Evangelous](https://github.com/Evangelous) | 38 | | DJ Hero 1 | ✅ | | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/7) by [CabooseSayzWTF](https://github.com/CabooseSayzWTF) | 39 | | Doom 3 BFG | ✅ | | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/7) by [CabooseSayzWTF](https://github.com/CabooseSayzWTF) | 40 | | Dragon Ball: Raging Blast 2 | | ✅ | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/3) by [olakase123lol](https://github.com/olakase123lol) including DLCs and movies | 41 | | Dragon Ball Z: Burst Limit | | ⚠️ | | | for the moment, patching on XexTool will not work because it brings an error, if you try to patch it, [try patching the default.xex file with X360Gamehack](https://github.com/XDanfr/FMX-Compatibility/issues/80) to play it | 42 | | Duke Nukem Forever | ✅ | | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/7) by [CabooseSayzWTF](https://github.com/CabooseSayzWTF) | 43 | | El Chavo Kart | | ✅ | | | Plays fine (note by [Olakase123lol](https://github.com/olakase123lol)) | 44 | | F1 2012 | | ✅ | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/pull/83) by [lucmsilva651](https://github.com/lucmsilva651) | 45 | | Fable II | | ✅ | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/pull/61) by [guaycuru](https://github.com/guaycuru) | 46 | | Family Guy: Back to the Multiverse | | ✅ | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/pull/94) by [matti-dotcom](https://github.com/matti-dotcom) | 47 | | Far Cry 4 | | ⚠️ | | | **Remove title updates!** [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/4) with fix by [SessaoRGH](https://github.com/SessaoRGH) | 48 | | FIFA 19 Legacy Edition | | ⚠️ | | | **Make sure you patch *CardsDLLzf.xex.dll*** as well as default.xex. [Reported working](https://www.reddit.com/r/consolemodding/comments/1j9ayth/comment/mhoepng) by [u/Dangerous_Pin4016](https://www.reddit.com/user/Dangerous_Pin4016) | 49 | | FIFA Street | | ✅ | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/pull/6) by [pinzit](https://github.com/pinzit) (tested on beta 3) | 50 | | FIFA World Cup Germany 2006 | | ✅ | | | Works with XEXTools patching | 51 | | Forza Horizon | | ✅ | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/pull/6) by [pinzit](https://github.com/pinzit) (tested on beta 3) | 52 | | Forza Horizon 2 | | ✅ | ❌ | | **Remember to patch ``SpeechFacade_default.xex`` and ``XMediaFacade_default.xex``!** XEX patch works, but playing on GoD throws an "unreadable media" error. [Reported working](https://github.com/XDanfr/FMX-Compatibility/pull/83) by [lucmsilva651](https://github.com/lucmsilva651) | 53 | | Forza Motorsport 4 | | ⚠️ | | | **You need to Manually Install disc 2 by copying the content into the content folder of the drive the game is installed from.** [Reported working](https://github.com/XDanfr/FMX-Compatibility/pull/75) by [TheQwerDev](https://github.com/TheQwerDev) (tested on beta 3) | 54 | | Fuel | ✅ | | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/7) by [CabooseSayzWTF](https://github.com/CabooseSayzWTF) | 55 | | Gears of War 3 | | ✅ | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/42) by [TinyPLT](https://github.com/TinyPLT) | 56 | | GTA San Andreas (2014 Remaster) | | ✅ | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/2) by [olakase123lol](https://github.com/olakase123lol) Even managed to work with some mods. | 57 | | GTA: Episodes from Liberty City | ✅ | | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/18) by [BestGamer954](https://github.com/BestGamer954) using only Game Hack. | 58 | | Guilty Gear 2: Overture | ✅ | | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/81) by [TimedChaos](https://github.com/TimedChaos) | 59 | | Guitar Hero 2 | ✅ | | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/7) by [CabooseSayzWTF](https://github.com/CabooseSayzWTF) | 60 | | Guitar Hero 3 | ✅ | | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/7) by [CabooseSayzWTF](https://github.com/CabooseSayzWTF) | 61 | | Guitar Hero Aerosmith | ✅ | | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/7) by [CabooseSayzWTF](https://github.com/CabooseSayzWTF) | 62 | | Guitar Hero Greatest Hits | ✅ | | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/7) by [CabooseSayzWTF](https://github.com/CabooseSayzWTF) | 63 | | Guitar Hero Smash Hits | ✅ | | | | This Game is identical to Greatest Hits but with a different title in other parts of the world. (See Greatest Hits for compatibility) | 64 | | Guitar Hero Van Halen | ✅ | | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/7) by [CabooseSayzWTF](https://github.com/CabooseSayzWTF) | 65 | | Guitar Hero World Tour | ✅ | | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/7) by [CabooseSayzWTF](https://github.com/CabooseSayzWTF) | 66 | | Halo 3 | ✅ | ✅ | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/7) by [CabooseSayzWTF](https://github.com/CabooseSayzWTF) via Manual Patching, also [Reported Working with XexTool](https://github.com/XDanfr/FMX-Compatibility/issues/59) by [guaycuru](https://github.com/CabooseSayzWTF) | 67 | | Halo 3: ODST | | ✅ | | ✅ | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/43) by [TinyPLT](https://github.com/TinyPLT) even without being patched. | 68 | | Halo 4 | ✅ | | | | **You need to Manually Install disc 2 by copying the content into the content folder of the drive the game is installed from.** Reported working by butterfingersman. | 69 | | Halo: CEA | ✅ | | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/7) by [CabooseSayzWTF](https://github.com/CabooseSayzWTF) | 70 | | Just Dance 4 | | | ❌ | | [Reported not working](https://github.com/XDanfr/FMX-Compatibility/issues/64) by [Evangelous](https://github.com/Evangelous) | 71 | | Halo: Reach | | ✅ | | ✅ | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/44) by [TinyPLT](https://github.com/TinyPLT) | 72 | | Just Dance 2014 | | ✅ | | | Works really well. (note by [RobertLippai](https://github.com/robertlippai)) | 73 | | Kinect Adventures! | | ✅ | | | Works really well. (note by [RobertLippai](https://github.com/robertlippai)) | 74 | | Kinect Joyride | | ✅ | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/70) by [matti-dotcom](https://github.com/matti-dotcom) | 75 | | Kinect Sports: Season 2 | | | ✅ | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/64) by [Evangelous](https://github.com/Evangelous) | 76 | | Kinect Star Wars | | | ❌ | | [Reported not working](https://github.com/XDanfr/FMX-Compatibility/issues/64) by [Evangelous](https://github.com/Evangelous) | 77 | | Left 4 Dead 2 | | | ✅ | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/69) by [matti-dotcom](https://github.com/matti-dotcom) | 78 | | Legend of Spyro: Dawn of the Dragon, The|| ✅ | | | Works with XEXTools patching | 79 | | LEGO Batman 3: Beyond Gotham | ✅ | | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/18) by [BestGamer954](https://github.com/BestGamer954) using only Game Hack. | 80 | | LEGO (The) Hobbit | | | ⚠️ | | [Reported only working on NTSC-U consoles](https://github.com/XDanfr/FMX-Compatibility/issues/38) by [Evangelous](https://github.com/Evangelous). | 81 | | LEGO (The) Lord of the Rings | | | ❌ | | [Reported not working](https://github.com/XDanfr/FMX-Compatibility/issues/38) by [Evangelous](https://github.com/Evangelous). | 82 | | LEGO Pirates of The Caribbean | | | ✅ | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/38) by [Evangelous](https://github.com/Evangelous). TUs not tested. | 83 | | LEGO Rock Band | | | ✅ | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/38) by [Evangelous](https://github.com/Evangelous). TUs not tested. | 84 | | LEGO Star Wars: TCS | | | ✅ | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/38) by [Evangelous](https://github.com/Evangelous). TUs not tested. | 85 | | LEGO Star Wars II: TOT | | | ✅ | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/38) by [Evangelous](https://github.com/Evangelous). TUs not tested. | 86 | | LEGO Star Wars III: TCW | | | ✅ | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/38) by [Evangelous](https://github.com/Evangelous). TUs not tested. | 87 | | Lollipop Chainsaw | ✅ | | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/7) by [CabooseSayzWTF](https://github.com/CabooseSayzWTF) | 88 | | Mafia 2 | | | | ✅ | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/36) by [SessaoRGH](https://github.com/SessaoRGH) without any patching needed! | 89 | | Metal Gear Rising | | ✅ | | | [Reported Working](https://github.com/XDanfr/FMX-Compatibility/issues/52) by [TimedChaos](https://github.com/TimedChaos) | 90 | | Metal Gear Solid HD Collection | | ✅ | ❌ | | Disc 1 [reported not working](https://github.com/XDanfr/FMX-Compatibility/issues/38) via GoD Patching by [Evangelous](https://github.com/Evangelous), Disc 1 does Work With [XexTool](https://github.com/XDanfr/FMX-Compatibility/issues/63) reported by [OmegaKaiser](https://github.com/OmegaKaiser). | 91 | | Midnight Club: Los Angeles | | ✅ | | | [Reported working](https://www.reddit.com/r/360hacks/comments/1j87wwc) by [u/Octoomy](https://reddit.com/u/Octoomy) | 92 | | Minecraft: Story Mode | | | ✅ | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/23) by [SessaoRGH](https://github.com/SessaoRGH) | 93 | | Minecraft: Story Mode - Season 2| | | ✅ | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/34) by [SessaoRGH](https://github.com/SessaoRGH) patched to the latest TU and all DLC works | 94 | | Modern Warfare 2 | | ✅ | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/4) by [SessaoRGH](https://github.com/SessaoRGH) | 95 | | MorphX | ✅ | | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/7) by [CabooseSayzWTF](https://github.com/CabooseSayzWTF) | 96 | | Mortal Kombat: Komplete Edition | | ✅ | | | Works and Plays fine | 97 | | My Horse and Me 2 | ✅ | | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/7) by [CabooseSayzWTF](https://github.com/CabooseSayzWTF) | 98 | | Nail'd | ✅ | | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/7) by [CabooseSayzWTF](https://github.com/CabooseSayzWTF) | 99 | | Naruto: The Broken Bond | | ❌ | | | Does not work with XEXTools | 100 | | Naval Assault: The Killing Tide | ✅ | | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/7) by [CabooseSayzWTF](https://github.com/CabooseSayzWTF) | 101 | | NCAA Football 14 | ✅ | | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/77) by [TimedChaos](https://github.com/TimedChaos) | 102 | | Need for Speed: Carbon | | ✅ | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/73) by [Tdgrovers](https://github.com/Tdgrovers) | 103 | | Need for Speed: Most Wanted '05 | | ✅ | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/21) by [co1111](https://github.com/co1111) | 104 | | Ninja Gaiden II | | ✅ | | ✅ | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/19) by [hj-0](https://github.com/hj-0). To apply any title update, it must be done on a clean xex file. This also means the game is playable with the unpatched xex. | 105 | | No More Heroes: Heroes' Paradise| | ✅ | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/37) by [SaNaGa23](https://github.com/SaNaGa23) | 106 | | Oblivion GOTY | ✅ | | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/7) by [CabooseSayzWTF](https://github.com/CabooseSayzWTF) | 107 | | Orange Box, The | ✅ | ⚠️ | ✅ | | [Works fine on the latest version via Manual patching](https://github.com/XDanfr/FMX-Compatibility/issues/7) according to [CabooseSayzWTF](https://github.com/CabooseSayzWTF). Also [reported working](https://github.com/XDanfr/FMX-Compatibility/issues/12) via GoD patching by [MangoOffical](https://github.com/MangoOffical). [Reported working](https://www.reddit.com/r/360hacks/comments/1j7kaz8/comment/mhezu82) via XexTool **after removing title updates(!!)** by [u/3v4ng310u5](https://reddit.com/u/3v4ng310u5). | 108 | | Phantasy Star Universe | | ✅ | | ✅ | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/32) by [TinyPLT](https://github.com/TinyPLT) | 109 | | Persona 4 Arena Ultimax | | | | ✅ | Game works without patching on Beta 5, making the TUs and DLCs working | 110 | | Portal 2 | ✅ | | ✅ | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/7) by [CabooseSayzWTF](https://github.com/CabooseSayzWTF). Also works [via GoD patching](https://github.com/XDanfr/FMX-Compatibility/issues/31) by [Evangelous](https://github.com/Evangelous) | 111 | | Quake 4 | ✅ | | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/7) by [CabooseSayzWTF](https://github.com/CabooseSayzWTF) | 112 | | Quake 4 Bonus Disc | ✅ | ⚠️ | | | (Quake 2 disc) [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/7) by [CabooseSayzWTF](https://github.com/CabooseSayzWTF). When using XEXTools, loads into the bonus disc menu, crashes after choosing Quake 2. | 113 | | RAGE | ✅ | | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/7) by [CabooseSayzWTF](https://github.com/CabooseSayzWTF) | 114 | | Red Dead Redemption | ✅ | ✅ | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/18) by [BestGamer954](https://github.com/BestGamer954) using only Game Hack. Reported working [via XexTool](https://www.reddit.com/r/360hacks/comments/1j8hq5b) by [u/teamnefarious](https://www.reddit.com/u/teamnefarious) | 115 | | Ride To Hell Retribution | ✅ | | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/7) by [CabooseSayzWTF](https://github.com/CabooseSayzWTF) | 116 | | Rock Revolution | ✅ | | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/7) by [CabooseSayzWTF](https://github.com/CabooseSayzWTF) | 117 | | Rockstar Games Table Tennis | | ✅ | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/24) by [hj-0](https://github.com/hj-0) | 118 | | Rumble Roses XX | | ✅ | | | Works with XEXTools patching | 119 | | Saints Row 2 | ✅ | | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/7) by [CabooseSayzWTF](https://github.com/CabooseSayzWTF) | 120 | | Simpsons Game, The | | | | ⚠️ | Audio breaks sometimes. No patches required as a GoD. [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/41) by [matti-dotcom](https://github.com/matti-dotcom) | 121 | | Skyrim | ⚠️ | | ❌ | | [Via XexTool](https://www.reddit.com/r/360hacks/comments/1j8hq5b/comment/mhqeg87) ([u/Next_Measurement_824](https://www.reddit.com/u/Next_Measurement_824)), **Updates won't apply**, meaning that **DLC won't work.** **[Works via manual patching](https://github.com/XDanfr/FMX-Compatibility/issues/29#issuecomment-2725694071) instead to the latest TU.** ([CabooseSayzWTF](https://github.com/CabooseSayzWTF)). GoD method was [reported not working](https://github.com/XDanfr/FMX-Compatibility/issues/29#issuecomment-2726796749) by [Evangelous](https://github.com/Evangelous) | 122 | | Sonic Free Riders | | ✅ | | | [Reported working](https://github.com/XDanfr/FMX)-Compatibility/issues/9) by [olakase123lol](https://github.com/olakase123lol) - Running with "no Kinect Patch" mod works | 123 | | Sonic Generations | ✅ | ✅ | | | Reported working by [olakase123lol](https://github.com/olakase123lol) on beta 3 [via XeXMenu](https://github.com/XDanfr/FMX-Compatibility/issues/5) and [CabooseSayzWTF](https://github.com/CabooseSayzWTF) via [Manual patching](https://github.com/XDanfr/FMX-Compatibility/issues/7). | 124 | | SONIC THE HEDGEHOG (2006) | | ✅ | | | [Reported Working](https://github.com/XDanfr/FMX-Compatibility/issues/71) by [matti-dotcom](https://github.com/matti-dotcom), Also Works with the "Legacy of Solaris" Mod (Note by [Olakase123lol](https://github.com/olakase123lol)) | 125 | | Sonic Unleashed | | ✅ | | | Launches and plays perfectly (tested on beta 3) | 126 | | South Park: The Stick of Truth | | ✅ | | | [Reported working](https://www.reddit.com/r/360hacks/comments/1j8hq5b) by [u/teamnefarious](https://www.reddit.com/u/teamnefarious/) | 127 | | Spider-Man 3 | | ✅ | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/25) by [TinyPLT](https://github.com/TinyPLT) | 128 | | Spider-Man: Friend or Foe | | ✅ | | ✅ | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/25) by [TinyPLT](https://github.com/TinyPLT) | 129 | | Spongebob Squarepants : Plankton's Robotic Revenge| | | | ✅ | [Reported working](https://github.com/XDanfr/FMX-Compatibility/pull/95) by [matti-dotcom](https://github.com/matti-dotcom) | 130 | | Star Wars: CW - Republic Heroes | ✅ | | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/28) by [LeachUK-420](https://github.com/LeachUK-420) | 131 | | Street Fighter X Tekken | | ✅ | ✅ | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/pull/83) by [lucmsilva651](https://github.com/lucmsilva651) | 132 | | Tenchu Z | | | | ✅ | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/47) by [hj-0](https://github.com/hj-0) as an unpatched GoD. 133 | | Transformers Devastation | | ✅ | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/62) by [TimedChaos](https://github.com/TimedChaos) | 134 | | Transformers War for Cybertron | | ✅ | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/74) by [TimedChaos](https://github.com/TimedChaos) | 135 | | Tony Hawk Project 8 | ✅ | | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/7) by [CabooseSayzWTF](https://github.com/CabooseSayzWTF) | 136 | | Tony Hawk Proving Grounds | ✅ | | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/7) by [CabooseSayzWTF](https://github.com/CabooseSayzWTF) | 137 | | UEFA Champions League 2006–2007 | | ✅ | | | Works with XEXTools patching | 138 | | Ultimate Marvel vs Capcom 3 | | ✅ | | ✅ | Plays Perfectly but the Heroes and Heralds DLC doesnt work on Xextool patch because it needs a title update, now on beta 5 its not necessary patching the xex file, making the title updates and DLCs compatible (note by [Olakase123lol](https://github.com/olakase123lol)) | 139 | | Velvet Assassin | ✅ | | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/7) by [CabooseSayzWTF](https://github.com/CabooseSayzWTF) | 140 | | Walking Dead, The (Season 1) | | ✅ | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/82) by [SessaoRGH](https://github.com/SessaoRGH) | 141 | | Watch Dogs | | ✅ | | | [Reported working](https://www.reddit.com/r/360hacks/comments/1j8hq5b) by [u/teamnefarious](https://www.reddit.com/u/teamnefarious/) | 142 | | WET | | | | ✅ | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/46) by [hj-0](https://github.com/hj-0) as an unpatched GoD. | 143 | | Winning Eleven 2007 | | ✅ | | | Works with XEXTools patching | 144 | | Witcher 2, The: Enhanced Edition| | | ❌ | | [Reported not working](https://github.com/XDanfr/FMX-Compatibility/issues/64) by [Evangelous](https://github.com/Evangelous) | 145 | | WWE Smackdown Vs Raw 2007 | | ✅ | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/14) by [GrandpaJoeTheEighth](https://github.com/GrandpaJoeTheEighth) | 146 | | WWE Smackdown Vs Raw 2011 | ✅ | | | | [Reported working](https://github.com/XDanfr/FMX-Compatibility/issues/7) by [CabooseSayzWTF](https://github.com/CabooseSayzWTF) | 147 | 148 | | Status | Meaning | 149 | |--------|---------| 150 | | ✅ Works | Fully functional with no issues. | 151 | | ⚠️ Partially | Works, but has glitches or requires fixes. | 152 | | ❌ Borked | Does not work or crashes. | 153 | --------------------------------------------------------------------------------