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
#This script calculates the ID0 of several different files containing your movable.sed | |
#Could potentialy be useful to quickly check if all your backups are the same, but mostly I was just having fun | |
#Backups should be placed in 0:/gm9/out or set your own with the BACKPATH variable | |
#ItsCrocoSwine | |
set PREVIEW_COLOR_COMMENT 32CD32 #Lime green | |
set PREVIEW_COLOR_ACTIVE 5D3FD3 #Iris | |
set PREVIEW_COLOR_CODE E37383 #Watermelon pink | |
set BACKPATH 0:/gm9/out # <-Can change your backup directory by changing this variable |
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
# Movable Moveover script, now with less manual | |
# Powered by FixupMovable TM technology https://github.com/fox8091/FixupMovable | |
# For use in https://wiki.hacks.guide/wiki/3DS:Movable_Moveover | |
# Last edited: 2024-9-24 | |
# Version: 1.3 | |
# Script by: ItsCrocoSwine | |
if keychk SELECT #Hold Select to keep preview mode on, with fun colors! | |
set PREVIEW_COLOR_COMMENT 32CD32 #Lime green | |
set PREVIEW_COLOR_ACTIVE 5D3FD3 #Iris | |
set PREVIEW_COLOR_CODE E37383 #Watermelon pink |
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
# ItsCrocoSwine | |
# v1.0 | |
if ask "Dump all DSiWare?" | |
for 2:title/00030004 * | |
strsplit TIDLOW $[FORPATH] / | |
set NAME 00030004$[TIDLOW] | |
if find $[FORPATH]/content/*.app GAME | |
cp -w -o -s $[GAME] 0:/gm9/out/DSiWare-Dumps/$[NAME].nds | |
if find $[FORPATH]/data/private.sav PRIVATE | |
cp -w -o -s $[PRIVATE] 0:/gm9/out/DSiWare-Dumps/saves/$[NAME].prv |
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
# Pokemon Cart Redirect Helper script https://gist.github.com/ItsCrocoSwine/e9bf17d1e3d685d0dda5322a85e7e910 by - ItsCrocoSwine | |
# for use with https://github.com/zaksabeast/DreamRadarCartRedirect by - zaksabeast | |
# V1.3 | |
# Copy the contents of patches/out/ to sd:/3ds/CartRedirectPatches/ before following this script | |
#check for patches | |
set PREVIEW_MODE "Checking for problems..." |