-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from ToxicAven/main
Total refactor of mset9.py
- Loading branch information
Showing
2 changed files
with
26 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
Error 01: Not running on the SD Card root. /Nintendo 3DS/ not found. | ||
Error 02: Write protected SD Card. Ensure switch is facing up. | ||
Error 03: Attempting to change target console version during exploit. | ||
Error 04: No Home Menu Extdata. Shouldn't happen pretty much ever. | ||
Error 05: No Mii Maker Data, follow MSET9 Troublshooting page. | ||
Error 06: Not enough free space on disk. Clean out unused files. | ||
Error 07: Multiple ID0s, follow MSET9 Troublshooting page. | ||
Error 08: Missing/Malformed file. Reextract MSET9 zip file. | ||
Error 09: Could not change back into SD directory. Ensure the SD Card has been reinserted. | ||
Error 10: Database problem. Follow the troubleshooting to reset the DBs. | ||
Error 11: Running as MacOS. MacOS is not supported. | ||
Error 12: Multiple ID1s, follow MSET9 Troublshooting page. | ||
|
||
MSET9 Troublshooting Page: https://3ds.hacks.guide/troubleshooting#installing-boot9strap-mset9 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,12 @@ | ||
py -3 mset9.py | ||
pause | ||
@echo off | ||
chcp 65001 > nul | ||
py -V > nul | ||
if %errorlevel% NEQ 0 ( | ||
echo Python 3 is not installed. | ||
echo Please install Python 3 and try again. | ||
echo https://www.python.org/downloads/ | ||
echo. | ||
pause | ||
exit | ||
) | ||
py -3 mset9.py |