Merge pull request #1 from PhazonicRidley/master

Typo and frii script
This commit is contained in:
suchmememanyskill 2020-04-02 02:06:58 +02:00 committed by GitHub
commit d3f18fa206
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 51 additions and 1 deletions

View file

@ -62,7 +62,7 @@ You can use `if()`, `goto()`, `check()` and `math()` functions to control the fl
``` ```
@i = setInt(0); @i = setInt(0);
?LOOP; ?LOOP;
@check = check(@i "<=", 10); @check = check(@i, "<=", 10);
if (@check){ if (@check){
@i = math(@i, "+", 1); @i = math(@i, "+", 1);
printInt(@i); printInt(@i);

50
scripts/savedumper.te Normal file
View file

@ -0,0 +1,50 @@
printf("Such save, many dump");
printf("What mmc would you like to dump from");
printf("Press + for sysnand");
if (@EMUMMC) {
printf("Or press - for emummc");
}
printf("Press power to cancel");
pause();
if (@BTN_VOL+){
printf("Mounting SYSMMC...");
mmc_connect("SYSMMC");
}
if (@BTN_VOL-){
@noemu = invert(@EMUMMC);
if (@noemu){
exit();
}
printf("Mounting EMUMMC...");
mmc_connect("EMUMMC");
}
if (@BTN_POWER) {
exit();
}
printf("Which partition do you want to dump from? + for SYSTEM - for USER");
pause();
if (@BTN_VOL+) {
printf("Mounting SYSTEM...");
mmc_mount("SYSTEM");
setString("systemSaves", $folder);
}
if (@BTN_VOL-) {
printf("Mounting USER....");
mmc_mount("USER");
setString("userSaves", $folder);
}
combineStrings("sd:/tegraexplorer/", $folder, $path);
fs_mkdir($path);
combineStrings("Copying saves to ", $path, $out);
printf($out);
printf("");
fs_copyRecursive("emmc:/save", $path);
printf("");
printf("Done, press any button to exit");
pause();
exit();