浏览代码

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
Evera 20 年之前
父节点
当前提交
b51c0acb6f
共有 5 个文件被更改,包括 39 次插入0 次删除
  1. 2 0
      Changelog-Trunk.txt
  2. 9 0
      charserv-sql.bat
  3. 9 0
      logserv-sql.bat
  4. 9 0
      mapserv-sql.bat
  5. 10 0
      runserver-sql.bat

+ 2 - 0
Changelog-Trunk.txt

@@ -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 - 0
charserv-sql.bat

@@ -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 - 0
logserv-sql.bat

@@ -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 - 0
mapserv-sql.bat

@@ -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 - 0
runserver-sql.bat

@@ -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