Skip to content

Commit

Permalink
Merge pull request #11 from ToxicAven/main
Browse files Browse the repository at this point in the history
Total refactor of mset9.py
  • Loading branch information
zoogie authored Oct 18, 2023
2 parents 5b8ed06 + 73d9bd3 commit 20a0ea4
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 2 deletions.
14 changes: 14 additions & 0 deletions MSET9_installer_script/errors.txt
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
14 changes: 12 additions & 2 deletions MSET9_installer_script/mset9.bat
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

0 comments on commit 20a0ea4

Please sign in to comment.