This file contains hidden or 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
# essential.exefs builder script by thepikachugamer (Naim2000) | |
# version 1.0 | |
# Last modified: 2024/09/22 17:05 PM | |
# Can I add an RSA signature here? Can we maybe make some directives so GM9 can show a nice name in the Scripts menu? | |
set EXEFS 9:/essential.exefs | |
fdummy $[EXEFS] 2200 | |
fill $[EXEFS] 00 | |
# Section I - Finding the files |
This file contains hidden or 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
#!/usr/bin/env bash | |
Sharpii_DL="https://noahpistilli.github.io/RC24_Patcher/Sharpii" | |
case $(uname -m),$(uname) in | |
x86_64,Darwin|arm64,Darwin) | |
sys="macOS-x64";; | |
x86_64,*) | |
sys="linux-x64";; | |
aarch64,*) | |
sys="linux-arm64";; |