mirror of
https://gitlab.com/2009scape/singleplayer/windows.git
synced 2026-08-01 14:39:18 -06:00
27 lines
605 B
Batchfile
27 lines
605 B
Batchfile
@echo off
|
|
title 2009scape console log
|
|
|
|
set _JAVA_OPTIONS=
|
|
|
|
netstat -an | findstr "0.0.0.0:43595" > NUL
|
|
if %ERRORLEVEL% equ 0 (
|
|
echo "Port 43595 is in use. Cannot start the server again."
|
|
pause
|
|
exit
|
|
)
|
|
|
|
pushd %~dp0\game
|
|
start /b %~dp0\jre\bin\java.exe -Dsun.net.useExclusiveBind=false -Xmx2G -Xms2G -jar server.jar
|
|
|
|
:waitserver
|
|
netstat -an | findstr "0.0.0.0:43595" > NUL
|
|
if %ERRORLEVEL% equ 1 (
|
|
echo Still waiting for the server to start...
|
|
timeout 2 > NUL
|
|
goto waitserver
|
|
)
|
|
|
|
start /b /w %~dp0\jre\bin\java.exe -Xmx1G -Xms1G -jar client.jar
|
|
popd
|
|
|
|
taskkill /im "java.exe" /f
|