Interlude branch.

This commit is contained in:
MobiusDev
2018-03-03 00:51:38 +00:00
parent ae7660220a
commit e013196428
17475 changed files with 1039393 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
#!/bin/bash
DBHOST=localhost
USER=root
PASS=
DBNAME=l2jmobiusc6
err=1
until [ $err == 0 ];
do
java -Dfile.encoding=UTF-8 -Djava.util.logging.config.file=config/others/log.cfg -Xms2048m -Xmx4096m -cp ./libs/*:GameServer.jar com.l2jmobius.gameserver.GameServer > log/stdout.log 2>&1
err=$?
sleep 10
done