@echo off
title L2-Scripts (The Homunculus)
:start
echo Starting GameServer.
echo.
"C:\Program Files\BellSoft\LibericaJDK-8-full\bin\java" -server -Dfile.encoding=UTF-8 -XX:+UseConcMarkSweepGC -Xms16g -Xmx16g -cp config;./lib/* l2s.gameserver.GameServer
if ERRORLEVEL 2 goto restart
if ERRORLEVEL 1 goto error
goto end
:restart
echo.
echo Server restarted ...
echo.
goto start
:error
echo.
echo Server terminated abnormaly ...
echo.
:end
echo.
echo Server terminated ...
echo.
pause