From 63d53034ad3f0461821ee21b1eae0d42f47b356d Mon Sep 17 00:00:00 2001 From: Glazed_Belmont <48196637+GlaZedBelmont@users.noreply.github.com> Date: Tue, 20 Aug 2019 14:46:19 -0400 Subject: [PATCH 01/11] Added a merged script --- Dumping_script.gm9 | 305 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 305 insertions(+) create mode 100644 Dumping_script.gm9 diff --git a/Dumping_script.gm9 b/Dumping_script.gm9 new file mode 100644 index 0000000..ec3bd52 --- /dev/null +++ b/Dumping_script.gm9 @@ -0,0 +1,305 @@ +# author: zeta & jisagi +set ERRORMSG "Dumping failed.\nUnknown error." +set SUCCESSMSG "Dumping succeeded!\nFiles are in gm9/out" + +@start +set DISPLAY_MODE "PKMN Randomizer script\nby Zeta\nTYPE: ______" + +labelsel -o -s "Is your game a cartridge or digital?" TYPE_* +goto start + +###CARTRIDGE### +@TYPE_Cartridge + +set DISPLAY_MODE "PKMN Randomizer script\nby Zeta & Glazed_Belmont\nTYPE_CARTRIDGE +ask "Script will begin dumping." +if not find -o -s C:/*.trim.3ds CARTRIDGE + echo "No 3DS cart was detected" + goto end +end + +imgmount $[CARTRIDGE] +mkdir 0:/gm9/out/romfs +mkdir 0:/gm9/out/exefs + +if not cp -o -s G:/content0.game/romfs/ 0:/gm9/out/romfs + echo "Dumping romfs failed" + goto end +end + +if not cp -o -s G:/content0.game/exefs/ 0:/gm9/out/exefs + echo "Dumping exefs failed" + goto end +end + +labelsel -o -s "What game are you dumping?" CARTRIDGE_* + +##PKMN X## +@CARTRIDGE_X + +set GAMEID 00055D00 +goto Update_Dump + + +##PKMN Y## +@CARTRIDGE_Y + +set GAMEID 00055E00 +goto Update_Dump + + +##PKMN OR## +@CARTRIDGE_Omega_Ruby + +set GAMEID 0011C400 +goto Update_Dump + + +##PKMN AS## +@CARTRIDGE_Alpha_Sapphire + +set GAMEID 0011C500 +goto Update_Dump + + +##PKMN SUN## +@CARTRIDGE_Sun + +set GAMEID 00164800 +goto Update_Dump + + +##PKMN MOON## +@CARTRIDGE_Moon + +set GAMEID 00175E00 +goto Update_Dump + + +##PKMN US## +@CARTRIDGE_Ultra_Sun + +set GAMEID 001B5000 +goto Update_Dump + + +##PKMN UM## +@CARTRIDGE_Ultra_Moon + +set GAMEID 001B5100 +goto Update_Dump + + +#-------------------------------------------------------------------------------# + + +###DIGITAL### +@TYPE_Digital + +set DISPLAY_MODE "PKMN Randomizer script\nby Zeta & Glazed_Belmont\nTYPE_DIGITAL +ask "Script will begin dumping." + +labelsel -o -s "What game are you dumping?" DIGITAL_* + +###PKMN X### +@DIGITAL_X + +set X "A:/title/00040000/00055D00" +if not isdir -o -s $[X] + echo "The game wasn't found.\nMake sure you have Pokemon X installed." + goto start +end + +if not ask -o -s "The game was found, Continue?" + goto start +end + + +set GAMEID 00055D00 +goto Digital_Dump + + +###PKMN Y### +@DIGITAL_Y + +set Y "A:/title/00040000/00055E00" +if not isdir -o -s $[Y] + echo "The game wasn't found.\nMake sure you have Pokemon Y installed." + goto start +end + +if not ask -o -s "The game was found, Continue?" + goto start +end + + +set GAMEID 00055E00 +goto Digital_Dump + + +###PKMN OMEGA RUBY### +@DIGITAL_Omega_Ruby + +set OR "A:/title/00040000/0011C400" +if not isdir -o -s $[OR] + echo "The game wasn't found.\nMake sure you have Pokemon Omega Ruby installed." + goto start +end + +if not ask -o -s "The game was found, Continue?" + goto start +end + +set GAMEID 0011C400 +goto Digital_Dump + + +###PKMN ALPHA SAPPHIRE### +@DIGITAL_Alpha_Sapphire + +set AS "A:/title/00040000/0011C500" +if not isdir -o -s $[AS] + echo "The game wasn't found.\nMake sure you have Pokemon Alpha Sapphire installed." + goto start +end + +if not ask -o -s "The game was found, Continue?" + goto start +end + +set GAMEID 0011C500 +goto Digital_Dump + + +###PKMN SUN### +@DIGITAL_Sun + +set S "A:/title/00040000/00164800" +if not isdir -o -s $[S] + echo "The game wasn't found.\nMake sure you have Pokemon Sun installed." + goto start +end + +if not ask -o -s "The game was found, Continue?" + goto start +end + +set GAMEID 00164800 +goto Digital_Dump + + +###PKMN MOON### +@DIGITAL_Moon + +set M "A:/title/00040000/00175E00" +if not isdir -o -s $[M] + echo "The game wasn't found.\nMake sure you have Pokemon Moon installed." + goto start +end + +if not ask -o -s "The game was found, Continue?" + goto start +end + +set GAMEID 00175E00 +goto Digital_Dump + + +###PKMN ULTRA SUN### +@DIGITAL_Ultra_Sun + +set US "A:/title/00040000/001B5000" +if not isdir -o -s $[US] + echo "The game wasn't found.\nMake sure you have Pokemon Ultra Sun installed." + goto start +end + +if not ask -o -s "The game was found, Continue?" + goto start +end + +set GAMEID 001B5000 +goto Digital_Dump + + +###PKMN ULTRA MOON### +@DIGITAL_Ultra_Moon + +set UM "A:/title/00040000/001B5100" +if not isdir -o -s $[UM] + echo "The game wasn't found.\nMake sure you have Pokemon Ultra Moon installed." + goto start +end + +if not ask -o -s "The game was found, Continue?" + goto start +end + +set GAMEID 001B5100 +goto Digital_Dump + + +#---------------------------------------------------------------------------------------------# + + +###Digital_Dump### +@Digital_Dump + +filesel "Please select the bigger .app file" A:/title/00040000/$[GAMEID]/content/*.app GAME +imgmount $[GAME] +mkdir 0:/gm9/out/romfs +mkdir 0:/gm9/out/exefs + +set ERRORMSG "Dumping failed.\nCopying romfs/exefs failed." +if not cp -o -s G:/romfs/ 0:/gm9/out/romfs + echo "Dumping romfs failed" + goto end +end + +if not cp -o -s G:/exefs/ 0:/gm9/out/exefs + echo "Dumping exefs failed" + goto end +end +goto Update_Dump + + +###Update_Dump### +@Update_Dump + +echo "RomFS and ExeFS dumping done\nDumping the update now." +if not find -o -s A:/title/0004000e/$[GAMEID]/content/0000000?.app UPDATE + echo "No updates were found.\nMake sure you have them installed." + goto end +end + +if not ask "The update was found, Continue?" + goto start +end + +imgmount $[UPDATE] + +if not cp -o -s G:/romfs/ 0:/gm9/out/romfs + echo "Dumping romfs failed" + goto end +end + +if not cp -o -s G:/exefs/ 0:/gm9/out/exefs + echo "Dumping exefs failed" + goto end +end + +echo "Dumping finished properly +goto end + +##EXITING## +@TYPE_Exit + +goto end + +##GOING BACK## +@DIGITAL_Back +@CARTRIDGE_Back +goto start + + +@end \ No newline at end of file From cfca423e664bf09c272478bb47ae970e3b393645 Mon Sep 17 00:00:00 2001 From: Glazed_Belmont <48196637+GlaZedBelmont@users.noreply.github.com> Date: Tue, 20 Aug 2019 14:47:07 -0400 Subject: [PATCH 02/11] Update Dumping_script.gm9 --- Dumping_script.gm9 | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Dumping_script.gm9 b/Dumping_script.gm9 index ec3bd52..4f1cd40 100644 --- a/Dumping_script.gm9 +++ b/Dumping_script.gm9 @@ -1,6 +1,4 @@ -# author: zeta & jisagi -set ERRORMSG "Dumping failed.\nUnknown error." -set SUCCESSMSG "Dumping succeeded!\nFiles are in gm9/out" +# author: zeta , jisagi & Glazed_Belmont @start set DISPLAY_MODE "PKMN Randomizer script\nby Zeta\nTYPE: ______" @@ -302,4 +300,4 @@ goto end goto start -@end \ No newline at end of file +@end From 93c85bff5c275aeaed05fd0e03397b42e92f95ac Mon Sep 17 00:00:00 2001 From: Glazed_Belmont <48196637+GlaZedBelmont@users.noreply.github.com> Date: Tue, 20 Aug 2019 14:50:12 -0400 Subject: [PATCH 03/11] Added credits --- Dumping_script.gm9 | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/Dumping_script.gm9 b/Dumping_script.gm9 index 4f1cd40..e246f18 100644 --- a/Dumping_script.gm9 +++ b/Dumping_script.gm9 @@ -1,7 +1,7 @@ # author: zeta , jisagi & Glazed_Belmont @start -set DISPLAY_MODE "PKMN Randomizer script\nby Zeta\nTYPE: ______" +set DISPLAY_MODE "PKMN Randomizer script\nTYPE: ______" labelsel -o -s "Is your game a cartridge or digital?" TYPE_* goto start @@ -9,7 +9,7 @@ goto start ###CARTRIDGE### @TYPE_Cartridge -set DISPLAY_MODE "PKMN Randomizer script\nby Zeta & Glazed_Belmont\nTYPE_CARTRIDGE +set DISPLAY_MODE "PKMN Randomizer script\nTYPE_CARTRIDGE ask "Script will begin dumping." if not find -o -s C:/*.trim.3ds CARTRIDGE echo "No 3DS cart was detected" @@ -94,7 +94,7 @@ goto Update_Dump ###DIGITAL### @TYPE_Digital -set DISPLAY_MODE "PKMN Randomizer script\nby Zeta & Glazed_Belmont\nTYPE_DIGITAL +set DISPLAY_MODE "PKMN Randomizer script\nTYPE_DIGITAL ask "Script will begin dumping." labelsel -o -s "What game are you dumping?" DIGITAL_* @@ -300,4 +300,10 @@ goto end goto start +##Credits## +@TYPE_Credits + +echo "This script was made possible by:\nZeta\nJisagi\nGlazed_Belmont" +goto start + @end From dcef6d031b8f9d79595112fb09ca645897aa5485 Mon Sep 17 00:00:00 2001 From: Glazed_Belmont <48196637+GlaZedBelmont@users.noreply.github.com> Date: Tue, 27 Aug 2019 13:41:41 -0400 Subject: [PATCH 04/11] added the end quote --- Dumping_script.gm9 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dumping_script.gm9 b/Dumping_script.gm9 index e246f18..7d5ff41 100644 --- a/Dumping_script.gm9 +++ b/Dumping_script.gm9 @@ -286,7 +286,7 @@ if not cp -o -s G:/exefs/ 0:/gm9/out/exefs goto end end -echo "Dumping finished properly +echo "Dumping finished properly" goto end ##EXITING## From a3325663ddf3c78f29a268ae0cc3636f7e6df3b0 Mon Sep 17 00:00:00 2001 From: Glazed_Belmont <48196637+GlaZedBelmont@users.noreply.github.com> Date: Tue, 27 Aug 2019 13:44:53 -0400 Subject: [PATCH 05/11] added "install" --- Dumping_script.gm9 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dumping_script.gm9 b/Dumping_script.gm9 index 7d5ff41..6f16363 100644 --- a/Dumping_script.gm9 +++ b/Dumping_script.gm9 @@ -3,7 +3,7 @@ @start set DISPLAY_MODE "PKMN Randomizer script\nTYPE: ______" -labelsel -o -s "Is your game a cartridge or digital?" TYPE_* +labelsel -o -s "Is your game a cartridge or digital install?" TYPE_* goto start ###CARTRIDGE### From caa5606e351d5d7b84998a2b91739517cae2269f Mon Sep 17 00:00:00 2001 From: Glazed_Belmont <48196637+GlaZedBelmont@users.noreply.github.com> Date: Tue, 27 Aug 2019 14:16:50 -0400 Subject: [PATCH 06/11] added a quote because I missed that one smh --- Dumping_script.gm9 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dumping_script.gm9 b/Dumping_script.gm9 index 6f16363..4454b3f 100644 --- a/Dumping_script.gm9 +++ b/Dumping_script.gm9 @@ -9,7 +9,7 @@ goto start ###CARTRIDGE### @TYPE_Cartridge -set DISPLAY_MODE "PKMN Randomizer script\nTYPE_CARTRIDGE +set DISPLAY_MODE "PKMN Randomizer script\nTYPE_CARTRIDGE" ask "Script will begin dumping." if not find -o -s C:/*.trim.3ds CARTRIDGE echo "No 3DS cart was detected" @@ -94,7 +94,7 @@ goto Update_Dump ###DIGITAL### @TYPE_Digital -set DISPLAY_MODE "PKMN Randomizer script\nTYPE_DIGITAL +set DISPLAY_MODE "PKMN Randomizer script\nTYPE_DIGITAL" ask "Script will begin dumping." labelsel -o -s "What game are you dumping?" DIGITAL_* From 087f3e98238c1f27da2818a50d7222e84a520725 Mon Sep 17 00:00:00 2001 From: Glazed_Belmont <48196637+GlaZedBelmont@users.noreply.github.com> Date: Tue, 27 Aug 2019 14:33:41 -0400 Subject: [PATCH 07/11] significantly shrunk the script --- Dumping_script.gm9 | 158 +++++++++++++++++---------------------------- 1 file changed, 59 insertions(+), 99 deletions(-) diff --git a/Dumping_script.gm9 b/Dumping_script.gm9 index 4454b3f..d2c6079 100644 --- a/Dumping_script.gm9 +++ b/Dumping_script.gm9 @@ -32,62 +32,6 @@ end labelsel -o -s "What game are you dumping?" CARTRIDGE_* -##PKMN X## -@CARTRIDGE_X - -set GAMEID 00055D00 -goto Update_Dump - - -##PKMN Y## -@CARTRIDGE_Y - -set GAMEID 00055E00 -goto Update_Dump - - -##PKMN OR## -@CARTRIDGE_Omega_Ruby - -set GAMEID 0011C400 -goto Update_Dump - - -##PKMN AS## -@CARTRIDGE_Alpha_Sapphire - -set GAMEID 0011C500 -goto Update_Dump - - -##PKMN SUN## -@CARTRIDGE_Sun - -set GAMEID 00164800 -goto Update_Dump - - -##PKMN MOON## -@CARTRIDGE_Moon - -set GAMEID 00175E00 -goto Update_Dump - - -##PKMN US## -@CARTRIDGE_Ultra_Sun - -set GAMEID 001B5000 -goto Update_Dump - - -##PKMN UM## -@CARTRIDGE_Ultra_Moon - -set GAMEID 001B5100 -goto Update_Dump - - #-------------------------------------------------------------------------------# @@ -100,6 +44,11 @@ ask "Script will begin dumping." labelsel -o -s "What game are you dumping?" DIGITAL_* ###PKMN X### +@CARTRIDGE_X + +set GAMEID 00055D00 +goto Update_Dump + @DIGITAL_X set X "A:/title/00040000/00055D00" @@ -108,16 +57,16 @@ if not isdir -o -s $[X] goto start end -if not ask -o -s "The game was found, Continue?" - goto start -end - - set GAMEID 00055D00 -goto Digital_Dump +goto Confirm ###PKMN Y### +@CARTRIDGE_Y + +set GAMEID 00055E00 +goto Update_Dump + @DIGITAL_Y set Y "A:/title/00040000/00055E00" @@ -126,16 +75,16 @@ if not isdir -o -s $[Y] goto start end -if not ask -o -s "The game was found, Continue?" - goto start -end - - set GAMEID 00055E00 -goto Digital_Dump +goto Confirm ###PKMN OMEGA RUBY### +@CARTRIDGE_Omega_Ruby + +set GAMEID 0011C400 +goto Update_Dump + @DIGITAL_Omega_Ruby set OR "A:/title/00040000/0011C400" @@ -144,15 +93,16 @@ if not isdir -o -s $[OR] goto start end -if not ask -o -s "The game was found, Continue?" - goto start -end - set GAMEID 0011C400 -goto Digital_Dump +goto Confirm ###PKMN ALPHA SAPPHIRE### +@CARTRIDGE_Alpha_Sapphire + +set GAMEID 0011C500 +goto Update_Dump + @DIGITAL_Alpha_Sapphire set AS "A:/title/00040000/0011C500" @@ -161,15 +111,16 @@ if not isdir -o -s $[AS] goto start end -if not ask -o -s "The game was found, Continue?" - goto start -end - set GAMEID 0011C500 -goto Digital_Dump +goto Confirm ###PKMN SUN### +@CARTRIDGE_Sun + +set GAMEID 00164800 +goto Update_Dump + @DIGITAL_Sun set S "A:/title/00040000/00164800" @@ -178,15 +129,16 @@ if not isdir -o -s $[S] goto start end -if not ask -o -s "The game was found, Continue?" - goto start -end - set GAMEID 00164800 -goto Digital_Dump +goto Confirm ###PKMN MOON### +@CARTRIDGE_Moon + +set GAMEID 00175E00 +goto Update_Dump + @DIGITAL_Moon set M "A:/title/00040000/00175E00" @@ -195,15 +147,16 @@ if not isdir -o -s $[M] goto start end -if not ask -o -s "The game was found, Continue?" - goto start -end - set GAMEID 00175E00 -goto Digital_Dump +goto Confirm ###PKMN ULTRA SUN### +@CARTRIDGE_Ultra_Sun + +set GAMEID 001B5000 +goto Update_Dump + @DIGITAL_Ultra_Sun set US "A:/title/00040000/001B5000" @@ -212,15 +165,16 @@ if not isdir -o -s $[US] goto start end -if not ask -o -s "The game was found, Continue?" - goto start -end - set GAMEID 001B5000 -goto Digital_Dump +goto Confirm ###PKMN ULTRA MOON### +@CARTRIDGE_Ultra_Moon + +set GAMEID 001B5100 +goto Update_Dump + @DIGITAL_Ultra_Moon set UM "A:/title/00040000/001B5100" @@ -229,13 +183,8 @@ if not isdir -o -s $[UM] goto start end -if not ask -o -s "The game was found, Continue?" - goto start -end - set GAMEID 001B5100 -goto Digital_Dump - +goto Confirm #---------------------------------------------------------------------------------------------# @@ -289,6 +238,17 @@ end echo "Dumping finished properly" goto end + +##Confirm## +@Confirm + +if not ask -o -s "The game was found, Continue?" + goto start +end + +goto Digital_Dump + + ##EXITING## @TYPE_Exit From 9c66878a1db48686e6fe4df4c464c0982d85a4d7 Mon Sep 17 00:00:00 2001 From: Glazed_Belmont <48196637+GlaZedBelmont@users.noreply.github.com> Date: Tue, 27 Aug 2019 14:47:43 -0400 Subject: [PATCH 08/11] removed useless lines --- Dumping_script.gm9 | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dumping_script.gm9 b/Dumping_script.gm9 index d2c6079..34e675e 100644 --- a/Dumping_script.gm9 +++ b/Dumping_script.gm9 @@ -1,7 +1,7 @@ # author: zeta , jisagi & Glazed_Belmont @start -set DISPLAY_MODE "PKMN Randomizer script\nTYPE: ______" +set DISPLAY_MODE "PKMN Randomizer script labelsel -o -s "Is your game a cartridge or digital install?" TYPE_* goto start @@ -39,7 +39,6 @@ labelsel -o -s "What game are you dumping?" CARTRIDGE_* @TYPE_Digital set DISPLAY_MODE "PKMN Randomizer script\nTYPE_DIGITAL" -ask "Script will begin dumping." labelsel -o -s "What game are you dumping?" DIGITAL_* From 7170a929d17b35d14c33d02364ad6089548ce777 Mon Sep 17 00:00:00 2001 From: Glazed_Belmont <48196637+GlaZedBelmont@users.noreply.github.com> Date: Tue, 27 Aug 2019 14:52:08 -0400 Subject: [PATCH 09/11] fixed the quotes --- Dumping_script.gm9 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dumping_script.gm9 b/Dumping_script.gm9 index 34e675e..9f0aba7 100644 --- a/Dumping_script.gm9 +++ b/Dumping_script.gm9 @@ -1,7 +1,7 @@ # author: zeta , jisagi & Glazed_Belmont @start -set DISPLAY_MODE "PKMN Randomizer script +set DISPLAY_MODE "PKMN Randomizer script" labelsel -o -s "Is your game a cartridge or digital install?" TYPE_* goto start From 0279ce883d0aa4a6c8502a26cecb7404d7918115 Mon Sep 17 00:00:00 2001 From: Glazed_Belmont <48196637+GlaZedBelmont@users.noreply.github.com> Date: Tue, 27 Aug 2019 14:55:08 -0400 Subject: [PATCH 10/11] added some actions when user presses B --- Dumping_script.gm9 | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/Dumping_script.gm9 b/Dumping_script.gm9 index 9f0aba7..7461237 100644 --- a/Dumping_script.gm9 +++ b/Dumping_script.gm9 @@ -30,7 +30,9 @@ if not cp -o -s G:/content0.game/exefs/ 0:/gm9/out/exefs goto end end -labelsel -o -s "What game are you dumping?" CARTRIDGE_* +if not -o -s labelsel -o -s "What game are you dumping?" CARTRIDGE_* + goto start +end #-------------------------------------------------------------------------------# @@ -40,7 +42,9 @@ labelsel -o -s "What game are you dumping?" CARTRIDGE_* set DISPLAY_MODE "PKMN Randomizer script\nTYPE_DIGITAL" -labelsel -o -s "What game are you dumping?" DIGITAL_* +if not -o -s labelsel -o -s "What game are you dumping?" DIGITAL_* + goto start +end ###PKMN X### @CARTRIDGE_X @@ -191,7 +195,10 @@ goto Confirm ###Digital_Dump### @Digital_Dump -filesel "Please select the bigger .app file" A:/title/00040000/$[GAMEID]/content/*.app GAME +if not -o -s filesel "Please select the bigger .app file" A:/title/00040000/$[GAMEID]/content/*.app GAME + goto start +end + imgmount $[GAME] mkdir 0:/gm9/out/romfs mkdir 0:/gm9/out/exefs From e7747a66487ea9e6c95b9336ec2a3c1ad82e8056 Mon Sep 17 00:00:00 2001 From: Glazed_Belmont <48196637+GlaZedBelmont@users.noreply.github.com> Date: Thu, 2 Jan 2020 00:18:46 -0500 Subject: [PATCH 11/11] DISPLAY_MODE NEVER EXISTED PREVIEW_MODE WAS THE WAE --- Dumping_script.gm9 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dumping_script.gm9 b/Dumping_script.gm9 index 7461237..07d5e4b 100644 --- a/Dumping_script.gm9 +++ b/Dumping_script.gm9 @@ -1,7 +1,7 @@ # author: zeta , jisagi & Glazed_Belmont @start -set DISPLAY_MODE "PKMN Randomizer script" +set PREVIEW_MODE "PKMN Randomizer script" labelsel -o -s "Is your game a cartridge or digital install?" TYPE_* goto start @@ -9,7 +9,7 @@ goto start ###CARTRIDGE### @TYPE_Cartridge -set DISPLAY_MODE "PKMN Randomizer script\nTYPE_CARTRIDGE" +set PREVIEW_MODE "PKMN Randomizer script\nTYPE_CARTRIDGE" ask "Script will begin dumping." if not find -o -s C:/*.trim.3ds CARTRIDGE echo "No 3DS cart was detected" @@ -40,7 +40,7 @@ end ###DIGITAL### @TYPE_Digital -set DISPLAY_MODE "PKMN Randomizer script\nTYPE_DIGITAL" +set PREVIEW_MODE "PKMN Randomizer script\nTYPE_DIGITAL" if not -o -s labelsel -o -s "What game are you dumping?" DIGITAL_* goto start