diff --git a/projects/mtg/tools/Check Resources.bat b/projects/mtg/tools/Check Resources.bat new file mode 100644 index 000000000..ebf96275b --- /dev/null +++ b/projects/mtg/tools/Check Resources.bat @@ -0,0 +1,20 @@ +@SetLocal EnableDelayedExpansion +@echo PSP resource updating script. +@echo This script copies resources from PC to PSP. +@echo It must be run from the tools directory. +@echo. +@echo To avoid prompts, please edit the path variable wthpath in this file. +@echo. +@echo This script does not copy SFX or profiles. +@REM Set the following two lines to the proper paths +@echo. +@echo What is your PSP WTH path (K:/PSP/Game5XX/WTH) +@set /P wthpath=Path: +@echo Copying files to %wthpath% + +xcopy "../bin/res/sets" "%wthpath%/Res/sets" /E /D /Y +xcopy "../bin/res/lang" "%wthpath%/Res/lang" /E /D /Y +xcopy "../bin/res/ai" "%wthpath%/Res/ai" /E /D /Y +xcopy "../bin/res/graphics" "%wthpath%/Res/graphics" /E /D /Y +xcopy "../bin/Res/themes" "%wthpath%/Res/themes" /E /D /Y +pause \ No newline at end of file