added runserver-sql.bat (runserver for sql servers)

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@2524 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
Evera 2005-07-16 01:07:51 +00:00
parent f2293669ba
commit b51c0acb6f
5 changed files with 39 additions and 0 deletions

View File

@ -1,5 +1,7 @@
Date Added
07/15
* Added sql runservers to all branches as runserver-sql.bat [Evera]
04/07
* Switched to G++ as the default [MouseJstr]
* Enabled PCRE on by default [MouseJstr]

9
charserv-sql.bat Normal file
View File

@ -0,0 +1,9 @@
@echo off
rem Writen by Jbain
:end
char-server_sql.exe
echo .
echo .
echo Char server crashed! restarting in 15 seconds! press ctl+C to cancel restart!
PING -n 15 127.0.0.1 >nul
goto end

9
logserv-sql.bat Normal file
View File

@ -0,0 +1,9 @@
@echo off
rem Writen by Jbain
:end
login-server_sql.exe
echo .
echo .
echo Login server crashed! restarting in 15 seconds! press ctl+C to cancel restart!
PING -n 15 127.0.0.1 >nul
goto end

9
mapserv-sql.bat Normal file
View File

@ -0,0 +1,9 @@
@echo off
rem Writen by Jbain
:end
map-server_sql.exe
echo .
echo .
echo Map server crashed! restarting in 15 seconds! press ctl+C to cancel restart!
PING -n 15 127.0.0.1 >nul
goto end

10
runserver-sql.bat Normal file
View File

@ -0,0 +1,10 @@
@echo off
rem This is and auto-restart script for the eAthena Ragnarok Online Server Emulator.
rem It will also keep the map server OPEN after it crashes to that errors may be
rem more easily identified
rem Writen by Jbain
echo Jbain's eAthena Start script for Windoze
echo Edited by Evera (slightly) for SQL servers
start cmd /k logserv-sql.bat
start cmd /k charserv-sql.bat
start cmd /k mapserv-sql.bat