44 lines
1.3 KiB
Batchfile
Executable file
44 lines
1.3 KiB
Batchfile
Executable file
echo off
|
|
|
|
echo Forge Mod Loader Windows Setup Program
|
|
echo:
|
|
|
|
@set PATH=%PATH%;%SystemDir%\system32;%SystemRoot%\System32
|
|
|
|
if not exist "..\runtime\bin\fernflower.jar" (
|
|
..\runtime\bin\python\python_mcp download_fernflower.py
|
|
)
|
|
if not exist "..\runtime\bin\fernflower.jar" (
|
|
echo Failed to download fernflower, install it manually and re-run setup.
|
|
exit 1
|
|
)
|
|
|
|
pushd .. >nul
|
|
|
|
if exist ".\src" (
|
|
runtime\bin\python\python_mcp runtime\cleanup.py
|
|
)
|
|
if exist ".\src" (
|
|
echo Please make sure to backup your modified files, and say yes when it asks you to do cleanup.
|
|
exit 1
|
|
)
|
|
runtime\bin\python\python_mcp runtime\decompile.py -d -n -r
|
|
|
|
pushd src >nul
|
|
|
|
if exist ..\jars\minecraft_server.jar (
|
|
for /f "delims=" %%a in ('dir /a -d /b /S ..\fml\patches\minecraft_server') do (
|
|
pushd "%%a" 2>nul
|
|
if errorlevel 1 (
|
|
..\runtime\bin\python\python_mcp ..\fml\lfcr.py "%%a" "%%a"
|
|
..\runtime\bin\applydiff.exe -uf -p1 -i "%%a"
|
|
) else popd
|
|
)
|
|
xcopy /Y /E ..\fml\src\* minecraft_server
|
|
)
|
|
popd >nul
|
|
|
|
runtime\bin\python\python_mcp runtime\updatemcp.py -f
|
|
runtime\bin\python\python_mcp runtime\updatenames.py -f
|
|
runtime\bin\python\python_mcp runtime\updatemd5.py -f
|
|
pause
|