BEC restart scheduler

Sjd6795

Member
I'm using BEC with a restart scheduler to restart my server every 4 hours but sometimes it will restart it at 30 minutes, 4 hours(like it should), but currently my server has been up for over 5 hours and it has yet to restart it. I'm trying to get this all setup so my server has a day/night cycle. I wouldn't mind even getting a 6 hour scheduler for 4 hour days 2 hour nights. But I can't even get this current one to work right. I copied it from someone else off another post so I'm not sure how they work or how to set one up properly myself. Can anyone point me in the right direction or maybe try to fix mine? I have the tutorial on how to set one up but I'm not good at those kind of things.

Here is my scheduler.xml

Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>

<Scheduler>
   
    <!-- *** RESTARTS *** -->
    <!-- 5 min to the 8:00 restart -->
    <job id="0">
        <time>07:55:00</time>
        <delay>000000</delay>
        <day>1,2,3,4,5,6,7</day>
        <loop>0</loop>
        <cmd>say -1 AUTO SERVER RESTART IN 5 MINUTES</cmd>
        <cmdtype>0</cmdtype>           
    </job>
   
    <job id="1">
        <time>07:57:00</time>
        <delay>000000</delay>
        <day>1,2,3,4,5,6,7</day>
        <loop>0</loop>
        <cmd>say -1 AUTO SERVER RESTART IN 3 MINUTES</cmd>
        <cmdtype>0</cmdtype>           
    </job>
   
    <job id="2">
        <time>07:59:00</time>
        <delay>000000</delay>
        <day>1,2,3,4,5,6,7</day>
        <loop>0</loop>
        <cmd>say -1 AUTO SERVER RESTART IN 1 MINUTE - LOG OUT NOW OR YOU MAY LOSE YOUR GEAR</cmd>
        <cmdtype>0</cmdtype>           
    </job>
   
    <job id="3">
        <time>07:59:30</time>
        <delay>000000</delay>
        <day>1,2,3,4,5,6,7</day>
        <loop>0</loop>
        <cmd>say -1 AUTO SERVER RESTART IN 30 SECONDS - LOG OUT NOW OR YOU MAY LOSE YOUR GEAR</cmd>
        <cmdtype>0</cmdtype>           
    </job>
   
    <!-- 08:00 restart -->
    <job id="4">
        <time>08:00:00</time>
        <delay>000000</delay>
        <day>1,2,3,4,5,6,7</day>
        <loop>0</loop>
        <cmd>#shutdown</cmd>
        <cmdtype>0</cmdtype>           
    </job>
   
    <!-- *** RESTARTS *** -->
    <!-- 5 min to the 12:00 restart -->
    <job id="5">
        <time>11:55:00</time>
        <delay>000000</delay>
        <day>1,2,3,4,5,6,7</day>
        <loop>0</loop>
        <cmd>say -1 AUTO SERVER RESTART IN 5 MINUTES</cmd>
        <cmdtype>0</cmdtype>           
    </job>
   
    <job id="6">
        <time>11:57:00</time>
        <delay>000000</delay>
        <day>1,2,3,4,5,6,7</day>
        <loop>0</loop>
        <cmd>say -1 AUTO SERVER RESTART IN 3 MINUTES</cmd>
        <cmdtype>0</cmdtype>           
    </job>
   
    <job id="7">
        <time>11:59:00</time>
        <delay>000000</delay>
        <day>1,2,3,4,5,6,7</day>
        <loop>0</loop>
        <cmd>say -1 AUTO SERVER RESTART IN 1 MINUTE - LOG OUT NOW OR YOU MAY LOSE YOUR GEAR</cmd>
        <cmdtype>0</cmdtype>           
    </job>
   
    <job id="8">
        <time>11:59:30</time>
        <delay>000000</delay>
        <day>1,2,3,4,5,6,7</day>
        <loop>0</loop>
        <cmd>say -1 AUTO SERVER RESTART IN 30 SECONDS - LOG OUT NOW OR YOU MAY LOSE YOUR GEAR</cmd>
        <cmdtype>0</cmdtype>           
    </job>
   
    <!-- 12:00 restart -->
    <job id="9">
        <time>12:00:00</time>
        <delay>000000</delay>
        <day>1,2,3,4,5,6,7</day>
        <loop>0</loop>
        <cmd>#shutdown</cmd>
        <cmdtype>0</cmdtype>           
    </job>
   
    <!-- *** RESTARTS *** -->
    <!-- 5 min to the 16:00 restart -->
    <job id="10">
        <time>15:55:00</time>
        <delay>000000</delay>
        <day>1,2,3,4,5,6,7</day>
        <loop>0</loop>
        <cmd>say -1 AUTO SERVER RESTART IN 5 MINUTES</cmd>
        <cmdtype>0</cmdtype>           
    </job>
   
    <job id="11">
        <time>15:57:00</time>
        <delay>000000</delay>
        <day>1,2,3,4,5,6,7</day>
        <loop>0</loop>
        <cmd>say -1 AUTO SERVER RESTART IN 3 MINUTES</cmd>
        <cmdtype>0</cmdtype>           
    </job>
   
    <job id="12">
        <time>15:59:00</time>
        <delay>000000</delay>
        <day>1,2,3,4,5,6,7</day>
        <loop>0</loop>
        <cmd>say -1 AUTO SERVER RESTART IN 1 MINUTE - LOG OUT NOW OR YOU MAY LOSE YOUR GEAR</cmd>
        <cmdtype>0</cmdtype>           
    </job>
   
    <job id="13">
        <time>15:59:30</time>
        <delay>000000</delay>
        <day>1,2,3,4,5,6,7</day>
        <loop>0</loop>
        <cmd>say -1 AUTO SERVER RESTART IN 30 SECONDS - LOG OUT NOW OR YOU MAY LOSE YOUR GEAR</cmd>
        <cmdtype>0</cmdtype>           
    </job>
   
    <!-- 16:00 restart -->
    <job id="14">
        <time>16:00:00</time>
        <delay>000000</delay>
        <day>1,2,3,4,5,6,7</day>
        <loop>0</loop>
        <cmd>#shutdown</cmd>
        <cmdtype>0</cmdtype>           
    </job>
   
    <!-- *** RESTARTS *** -->
    <!-- 5 min to the 19:00 restart -->
    <job id="15">
        <time>18:55:00</time>
        <delay>000000</delay>
        <day>1,2,3,4,5,6,7</day>
        <loop>0</loop>
        <cmd>say -1 AUTO SERVER RESTART IN 5 MINUTES</cmd>
        <cmdtype>0</cmdtype>           
    </job>
   
    <job id="16">
        <time>18:57:00</time>
        <delay>000000</delay>
        <day>1,2,3,4,5,6,7</day>
        <loop>0</loop>
        <cmd>say -1 AUTO SERVER RESTART IN 3 MINUTES</cmd>
        <cmdtype>0</cmdtype>           
    </job>
   
    <job id="17">
        <time>18:59:00</time>
        <delay>000000</delay>
        <day>1,2,3,4,5,6,7</day>
        <loop>0</loop>
        <cmd>say -1 AUTO SERVER RESTART IN 1 MINUTE - LOG OUT NOW OR YOU MAY LOSE YOUR GEAR</cmd>
        <cmdtype>0</cmdtype>           
    </job>
   
    <job id="18">
        <time>18:59:30</time>
        <delay>000000</delay>
        <day>1,2,3,4,5,6,7</day>
        <loop>0</loop>
        <cmd>say -1 AUTO SERVER RESTART IN 30 SECONDS - LOG OUT NOW OR YOU MAY LOSE YOUR GEAR</cmd>
        <cmdtype>0</cmdtype>           
    </job>
   
    <!-- 19:00 restart -->
    <job id="19">
        <time>19:00:00</time>
        <delay>000000</delay>
        <day>1,2,3,4,5,6,7</day>
        <loop>0</loop>
        <cmd>#shutdown</cmd>
        <cmdtype>0</cmdtype>           
    </job>
   
    <!-- *** RESTARTS *** -->
    <!-- 5 min to the 22:00 restart -->
    <job id="20">
        <time>21:55:00</time>
        <delay>000000</delay>
        <day>1,2,3,4,5,6,7</day>
        <loop>0</loop>
        <cmd>say -1 AUTO SERVER RESTART IN 5 MINUTES</cmd>
        <cmdtype>0</cmdtype>           
    </job>
   
    <job id="21">
        <time>21:57:00</time>
        <delay>000000</delay>
        <day>1,2,3,4,5,6,7</day>
        <loop>0</loop>
        <cmd>say -1 AUTO SERVER RESTART IN 3 MINUTES</cmd>
        <cmdtype>0</cmdtype>           
    </job>
   
    <job id="22">
        <time>21:59:00</time>
        <delay>000000</delay>
        <day>1,2,3,4,5,6,7</day>
        <loop>0</loop>
        <cmd>say -1 AUTO SERVER RESTART IN 1 MINUTE - LOG OUT NOW OR YOU MAY LOSE YOUR GEAR</cmd>
        <cmdtype>0</cmdtype>           
    </job>
   
    <job id="23">
        <time>21:59:30</time>
        <delay>000000</delay>
        <day>1,2,3,4,5,6,7</day>
        <loop>0</loop>
        <cmd>say -1 AUTO SERVER RESTART IN 30 SECONDS - LOG OUT NOW OR YOU MAY LOSE YOUR GEAR</cmd>
        <cmdtype>0</cmdtype>           
    </job>
   
    <!-- 22:00 restart -->
    <job id="24">
        <time>22:00:00</time>
        <delay>000000</delay>
        <day>1,2,3,4,5,6,7</day>
        <loop>0</loop>
        <cmd>#shutdown</cmd>
        <cmdtype>0</cmdtype>           
    </job>
   
    <!-- *** RESTARTS *** -->
    <!-- 5 min to the 04:00 restart -->
    <job id="25">
        <time>03:55:00</time>
        <delay>000000</delay>
        <day>1,2,3,4,5,6,7</day>
        <loop>0</loop>
        <cmd>say -1 AUTO SERVER RESTART IN 5 MINUTES</cmd>
        <cmdtype>0</cmdtype>           
    </job>
   
    <job id="26">
        <time>03:57:00</time>
        <delay>000000</delay>
        <day>1,2,3,4,5,6,7</day>
        <loop>0</loop>
        <cmd>say -1 AUTO SERVER RESTART IN 3 MINUTES</cmd>
        <cmdtype>0</cmdtype>           
    </job>
   
    <job id="27">
        <time>03:59:00</time>
        <delay>000000</delay>
        <day>1,2,3,4,5,6,7</day>
        <loop>0</loop>
        <cmd>say -1 AUTO SERVER RESTART IN 1 MINUTE - LOG OUT NOW OR YOU MAY LOSE YOUR GEAR</cmd>
        <cmdtype>0</cmdtype>           
    </job>
   
    <job id="28">
        <time>03:59:30</time>
        <delay>000000</delay>
        <day>1,2,3,4,5,6,7</day>
        <loop>0</loop>
        <cmd>say -1 AUTO SERVER RESTART IN 30 SECONDS - LOG OUT NOW OR YOU MAY LOSE YOUR GEAR</cmd>
        <cmdtype>0</cmdtype>           
    </job>
   
    <!-- 04:00 restart -->
    <job id="29">
        <time>04:00:00</time>
        <delay>000000</delay>
        <day>1,2,3,4,5,6,7</day>
        <loop>0</loop>
        <cmd>#shutdown</cmd>
        <cmdtype>0</cmdtype>           
    </job>
       
</Scheduler>
 
I don't know if you find out how but 5 minutes warning seem to be pretty short it doesn't let your players go back to their base. There is mine with 4 hours restart 30 min warning http://pastebin.com/N83ubiPx

Set your scheduler to start at 8pm restart at 4 hours for 24 hours.
 
I don't know if you find out how but 5 minutes warning seem to be pretty short it doesn't let your players go back to their base. There is mine with 4 hours restart 30 min warning http://pastebin.com/N83ubiPx

Set your scheduler to start at 8pm restart at 4 hours for 24 hours.
5 min is not enough time to land a chopper from height in a "safe zone"
I'm a pretty good pilot and I fly at 1000+ to avoid getting shot at and 5min is not long enough to come down safely from 1000 ft in a huey (dam thing takes forever to land!) Unless I nose dive to 100-200 then hit auto hover and hope for the best :p
 
Did you read what I said or not, cause I said to go back to their base, not landing a chopper.
.... Sorry drinking and forums don't mix.... But yer your right if I'm in cherno and my base is near neaf or nwaf and I have no vehicle there no way I'm making it back in 5min

Ps. Took me 3 edits to get that right...bedtime
 
you have to be kidding? I can land a helo at the 2 minute warning from 1000 ft. Turn off your engine you fall faster and auto-rotation kicks in around 2-300 turn your engine back on. As you get better you can do this closer to the ground.


5 min is not enough time to land a chopper from height in a "safe zone"
I'm a pretty good pilot and I fly at 1000+ to avoid getting shot at and 5min is not long enough to come down safely from 1000 ft in a huey (dam thing takes forever to land!) Unless I nose dive to 100-200 then hit auto hover and hope for the best :p
 
you have to be kidding? I can land a helo at the 2 minute warning from 1000 ft. Turn off your engine you fall faster and auto-rotation kicks in around 2-300 turn your engine back on. As you get better you can do this closer to the ground.
really? you can stop mid flight from 1000ft and land safely by stalling the chopper then starting it back up...ok sure its possible but how many ace pilots are there that can do this and depending on the server who wants to risk there chopper in a death stall :) ? now try that with a CH53 Super stallion and post me the video :p (ill try it tonight :) and post my attempt or success :p )
 
CH53 is shit IMO. Little birds fly faster. 53's just look epic that's it.

I have auto-rotated my blackdown down and then turned on the engine to land safely and still had time to log out.

BTW flying at 1k above ground really isn't the best idea. read up on flying military tactics, low flying is always preferred. Enemy has less time to see and shoot you. smaller windows of visual location and ability to hit you. unless if your flying at 2 km/h then your just an idiot.

but do as you wish.

really? you can stop mid flight from 1000ft and land safely by stalling the chopper then starting it back up...ok sure its possible but how many ace pilots are there that can do this and depending on the server who wants to risk there chopper in a death stall :) ? now try that with a CH53 Super stallion and post me the video :p (ill try it tonight :) and post my attempt or success :p )
 
Back
Top