28 lines
597 B
Batchfile
28 lines
597 B
Batchfile
@echo off
|
|
echo Nomifactory GTCEu Port / Pack mode switcher
|
|
|
|
setlocal
|
|
set normalCfgPath=%~dp0config-overrides\normal
|
|
set expertCfgPath=%~dp0config-overrides\expert
|
|
set targetPath=%~dp0config
|
|
|
|
echo Set pack mode
|
|
echo N: normal
|
|
echo E: expert (hard)
|
|
choice /c NE /m "selection"
|
|
|
|
if "%errorlevel%" == "1" goto copyNormal
|
|
if "%errorlevel%" == "2" goto copyExpert
|
|
|
|
:copyNormal
|
|
robocopy "%normalCfgPath%" "%targetPath%" *.* /e /nfl /ndl
|
|
del "%targetPath%\globalgamerules.cfg"
|
|
goto end
|
|
:copyExpert
|
|
robocopy "%expertCfgPath%" "%targetPath%" *.* /e /nfl /ndl
|
|
goto end
|
|
|
|
:end
|
|
echo Switch completed
|
|
pause
|
|
exit |