• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

[Bat] Problem with config.lua

lukluk

New Member
Joined
Jun 3, 2009
Messages
7
Reaction score
0
Hi i run this bat on startup :
Code:
@ECHO OFF
cls
echo Server is loading...
start C:\xampp\xampp\apache_start2.bat
PING 1.1.1.1 -n 1 -w 3000 >NUL
start C:\xampp\xampp\mysql_start2.bat
PING 1.1.1.1 -n 1 -w 10000 >NUL
start C:\cryingdamson4pl2-console\tfs.exe
cls
echo Uruchamiam Server... loading DONE.
PING 1.1.1.1 -n 1 -w 3000 >NUL
exit
It works very well, but i always got error(ERROR CANNOT LOAD CONFIG.LUA) in server console. If i started server manually i didnt get this error. Please help i need start my server automaticly ;/
 
Try this:
Code:
@ECHO OFF
cls
echo Server is loading...
start C:\xampp\xampp\apache_start2.bat
PING 1.1.1.1 -n 1 -w 3000 >NUL
start C:\xampp\xampp\mysql_start2.bat
PING 1.1.1.1 -n 1 -w 10000 >NUL
cd C:\cryingdamson4pl2-console\
start tfs.exe
cls
echo Uruchamiam Server... loading DONE.
PING 1.1.1.1 -n 1 -w 3000 >NUL
exit
 
Back
Top