-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBRSTM Utility.bat
More file actions
82 lines (79 loc) · 1.46 KB
/
BRSTM Utility.bat
File metadata and controls
82 lines (79 loc) · 1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
@echo off
:A
echo --- failin's BRSTM Utility ---
echo.
:B
set /p command="Command: "
if %command%==move (
call "move.bat"
goto B
)
if %command%==build (
call build.bat
cls
echo --- failin's BRSTM Utility ---
echo.
echo Build Completed!
echo.
goto B
)
if %command%==run (
start C:\Games\Dolphin\Dolphin.exe "--exec=C:\Games\Games\Wii\PatchedISO.iso"
cls
goto A
)
if %command%==mcc (
call mcc.bat
cls
echo --- failin's BRSTM Utility ---
echo.
echo BRSTMs Completed!
echo.
goto B
)
if %command%==list (
echo All Tracks in the Custom Music folder:
echo.
for %%a in ("Custom Music\*_n.wav") do (
echo %%~na
)
echo.
goto B
)
if %command%==patcher (
start "" "Patcher\MKWiiBRSARPatcher 1.0.exe"
goto B
)
if %command%==brawlbox (
start "" "BrawlBox\BrawlBox.exe"
goto B
)
if %command%==audacity (
start "" "C:\Program Files (x86)\Audacity\Audacity.exe"
goto B
)
if %command%==cls (
cls
goto A
)
if %command%==clear (
cls
goto A
)
if %command%==exit (
goto exit
)
:help
echo.
echo Type 'build' to compile an ISO from the workdirectory
echo Type 'move' to move BRSTMs from the custom music folder to the ISO location
echo Type 'mcc' to convert multi channel BRSTMs and move them into the ISO location
echo Type 'run' to start the patched ISO
echo Type 'audacity' to open Audacity
echo Type 'brawlbox' to open BrawlBox
echo Type 'patcher' to open the patcher
echo Type 'list' to see all current tracks using custom music
echo Type 'exit' to quit
echo.
goto B
:exit