25 lines
825 B
Batchfile
25 lines
825 B
Batchfile
@echo off
|
|
|
|
:test
|
|
if exist "ROM/rh-jpn.gba" (
|
|
goto tools
|
|
) else (
|
|
goto nofile
|
|
)
|
|
|
|
:tools
|
|
del "ROM\rh-atlus.gba"
|
|
copy "ROM\rh-jpn.gba" "ROM\rh-atlus.gba"
|
|
perl "tools\abcde\abcde.pl" -cm abcde::Atlas "ROM\rh-atlus.gba" "src\script.txt"
|
|
tools\armips.exe tools/ASM/compile.asm
|
|
tools\flips.exe "tools\Font Hack 4 - 1px spacer.ips" "ROM\rh-eng.gba"
|
|
tools\flips.exe "tools\accents.ips" "ROM\rh-eng.gba"
|
|
echo Done, this script only and ONLY assemble the graphics and text into the ROM, if the graphics were updated, then it will not update them, you should compile them again. (Press any key to recompile!)
|
|
pause > nul
|
|
goto tools
|
|
|
|
:nofile
|
|
echo Couldn't find a Rhythm Tengoku (Rev 0) ROM inside the ROM folder, please follow the instruction in there
|
|
echo Press any key after putting the ROM or leave the program.
|
|
pause > nul
|
|
goto test |