[help]B.E.C restaer server !!!

agong

New Member
BEC restart server, and then start the server instead I turn on the server


My server reboot after using BEC itself off no longer open, need to open my own
 
How can "BEC" After shutting down the server, "BEC" reopen the server. "BEC" Do not close your own .
only off and turn on the server.
 
make a restart batch file which starts your gameserver and restarts it if shut down...
and add a line after the gameserver start to start the bec process...

there is a programm called FIREDAEMON which can let run these processes as services... so they restart when crashed or closed
it also contains a webinterface to start/stop these services..

i use it for my win root now for a few months... works like a charm...
 
Yes, BEC will exit if your server shuts down, I found it better to stop the server in the bat file, here is mine... You can ignore the @AS at the end of the start line, it is our custom mod we use.

Code:
@echo off
taskkill /im arma2oaserver.exe

timeout 10

cd /d "E:\DayzEpochServer\"

start "arma2" "Expansion\beta\arma2oaserver.exe" -beta=Expansion\beta;Expansion\beta\Expansion -port=2302 -cpuCount=4 -exThreads=7 "-config=instance_11_Chernarus\config.cfg" "-cfg=instance_11_Chernarus\basic.cfg" "-profiles=instance_11_Chernarus" name=instance_11_Chernarus "-mod=@DayZ_Epoch1031;@DayZ_Epoch_Server1031;@AS"

timeout 5

cd /d "E:\EpochTools\Bec\"

start "BEC" "Bec.exe" -f config.cfg

timeout 1

exit
 
Back
Top