1234567891011121314151617181920212223242526272829 |
- @echo off
- title Game Server Console
- :start
- echo Starting L2J Game Server.
- echo.
- java -Xms512m -Xmx2g -jar l2jserver.jar
- if ERRORLEVEL 2 goto restart
- if ERRORLEVEL 1 goto error
- goto end
- :restart
- echo.
- echo Admin Restarted Game Server.
- echo.
- goto start
- :error
- echo.
- echo Game Server Terminated Abnormally!
- echo.
- :end
- echo.
- echo Game Server Terminated.
- echo.
- pause
|