BEC Scheduler Help.

Hooch

New Member
Hi guys,

I have rented a DayZPriv server and have run into an issue with restart schedules, I have tried to follow the setup BEC install post on the BEC website but I don't seem to be able to get it to work.

I wanted the server to restart every 4 hours, with restart warnings 15 minutes, 5 minutes and 1 minute before the restart.

I also wanted to have the BEC messages every 20, 25, 30 and 35 minutes.

Does anyone have a working scheduler? Or can help me set mine up with DayZPriv?

Many thanks for your time guys,
Hooch
 
<?xml version="1.0"?>

<Scheduler>
<job id="0">
<time>035000</time>
<delay>000000</delay>
<day>1,2,3,4,5,6,7</day>
<loop>1</loop>
<cmd>say -1 Restart in 10 minutes.</cmd>
<cmdtype>0</cmdtype>
</job>

<job id="1">
<time>035500</time>
<delay>000000</delay>
<day>1,2,3,4,5,6,7</day>
<loop>1</loop>
<cmd>say -1 5 minutes till restart, please start landing choppers and parking vehicles.</cmd>
<cmdtype>0</cmdtype>
</job>

<job id="2">
<time>035900</time>
<delay>000000</delay>
<day>1,2,3,4,5,6,7</day>
<loop>1</loop>
<cmd>say -1 1 minute till server restarts, log out now.</cmd>
<cmdtype>0</cmdtype>
</job>

<job id="3">
<time>040000</time>
<delay>000000</delay>
<day>1,2,3,4,5,6,7</day>
<loop>1</loop>
<cmd>restart</cmd>
<cmdtype>0</cmdtype>
</job>

<job id="4">
<time>002000</time>
<delay>000000</delay>
<day>1,2,3,4,5,6,7</day>
<loop>1</loop>
<cmd>say -1 Register at the website www.thedogpounddayz.enjin.com</cmd>
<cmdtype>0</cmdtype>
</job>

<job id="5">
<time>003000</time>
<delay>000000</delay>
<day>1,2,3,4,5,6,7</day>
<loop>1</loop>
<cmd>say -1 Join our Teamspeak @ 85.236.100.96:10667</cmd>
<cmdtype>0</cmdtype>
</job>



</Scheduler>
 
instead of restart you should use #shutdown otherwise only the mission will be restarted... not the whole server...

Code:
<job id="3">
<time>040000</time>
<delay>000000</delay>
<day>1,2,3,4,5,6,7</day>
<loop>1</loop>
<cmd>#shutdown</cmd>
<cmdtype>0</cmdtype>
</job>

are the messages working so far?
 
What does it say in the BEC error folder? I just spent a crazy amount of time figuring out a stupid bug in BEC that kept mine from working. In essence you have to delete the "BEServer_active_XXXX.cfg" file and restart the server. The system will generate a new one. It seems that if you change passwords in the beserver.cfg you need to delete the active cfg to let the system remake it itself. You editing it will not work right and BEC won't start (without error logs). I can confirm this on other Dayz.st clients along with mine.
 
Back
Top