modded7/launchscripts/launch.bat
2023-06-17 22:59:58 +10:00

38 lines
955 B
Batchfile

:: Server Launch Script
::
:: Thrown together by Neeve in under five minutes, Public Domain
:: https://github.com/Neeve01
::
:: Added java version check by t0suj4, Public Domain
:: https://github.com/t0su4
:: DO NOT EDIT UNLESS YOU KNOW WHAT YOU'RE DOING
@ECHO OFF
SET FORGEJAR={{{forgeJar}}}
SET JAVA_PARAMETERS={{{jvmArgs}}}
:: Empty line to align with sh file
:: these you can edit
SET MIN_RAM={{{minRAM}}}
SET MAX_RAM={{{maxRAM}}}
:: DO NOT EDIT ANYTHING PAST THIS LINE, except to remove the nogui
SET LAUNCHPARAMS=-server -Xms%MIN_RAM% -Xmx%MAX_RAM% %JAVA_PARAMETERS% -Dlog4j.configurationFile=log4j2_112-116.xml -jar %FORGEJAR% nogui
echo Checking java version...
echo.
java -version
echo.
echo The expected java version is 1.8. Not higher, not lower.
echo.
echo Launching the server...
echo.
echo ^> java %LAUNCHPARAMS%
echo.
java %LAUNCHPARAMS%
echo.
echo ^> The server has stopped. If it's a crash, please read the output above.
echo.
pause