Files
l2j_mobius/trunk/dist/login/startLoginServer.bat
mobius a6a3718849
2015-01-01 20:02:50 +00:00

29 lines
401 B
Batchfile

@echo off
title Login Server Console
:start
echo Starting L2J Login Server.
echo.
java -Xms128m -Xmx256m -jar l2jlogin.jar
if ERRORLEVEL 2 goto restart
if ERRORLEVEL 1 goto error
goto end
:restart
echo.
echo Admin Restarted Login Server.
echo.
goto start
:error
echo.
echo Login Server terminated abnormally!
echo.
:end
echo.
echo Login Server Terminated.
echo.
pause