BEC problem, no broadcasting messages

Robinajax

New Member
Hi guys I have a problem. My bec messages aren't broadcasted.

I don't see what's the problem with this scheduler.

Error log:
00:04:00 : WARNING :: Unable to get info from the arma process, Your reporter account will not be working.
00:04:01 : Parsing the Schedular File Failed, Recheck The File : mismatched tag: line 336, column 2
06:03:09 : WARNING :: Unable to get info from the arma process, Your reporter account will not be working.
06:03:09 : Parsing the Schedular File Failed, Recheck The File : mismatched tag: line 336, column 2
10:18:12 : WARNING :: Unable to get info from the arma process, Your reporter account will not be working.
10:18:12 : Parsing the Schedular File Failed, Recheck The File : mismatched tag: line 336, column 2
12:03:51 : WARNING :: Unable to get info from the arma process, Your reporter account will not be working.
12:03:51 : Parsing the Schedular File Failed, Recheck The File : mismatched tag: line 336, column 2
14:12:46 : WARNING :: Unable to get info from the arma process, Your reporter account will not be working.
14:12:46 : Parsing the Schedular File Failed, Recheck The File : mismatched tag: line 336, column 2

Scheduler.xmt:

Last nine lines (328-336)

<job id="16">
<time>17:59:57</time>
<delay>000000</delay>
<day>1,2,3,4,5,6,7</day>
<loop>1</loop>
<cmd>say -1 Server restarting! :)</cmd>
<cmdtype>0</cmdtype>
</job>
</Scheduler> (this is line 336)
 
You didn't set up <time> right. Thats why it doesn't work.
This is how code should look:

<job id="2">
<time>002500</time>
<delay>000000</delay>
<day>1,2,3,4,5,6,7</day>
<loop>1</loop>
<cmd>say -1 Server restarts every 4 hours; for more performance! Admins: Ata[CS] and [BEANS]ACID_MIX.</cmd>
<cmdtype>0</cmdtype>
</job>

So, how can you see <time>002500</time> means that scheduler will send a message every 002500 (25 minutes), since <loop>1</loop> is set to 1. If you want just warn your players, code should look like:

<job id="16">
<time>060000</time> - After 6 hours
<delay>000000</delay>
<day>1,2,3,4,5,6,7</day>
<loop>1</loop>
<cmd>say -1 Server restarting! :)</cmd>
<cmdtype>0</cmdtype>
</job>
</Scheduler>

Good luck ;)
 
Thank you for you reply: I got the following scheduler now.

<Scheduler>
<!-- *** TEXTNACHRICHTEN WIEDERHOLEND *** -->
<!-- Textnachricht alle 10 Minuten -->
<job id="0">
<time>002000</time>
<delay>000000</delay>
<day>1,2,3,4,5,6,7</day>
<loop>1</loop>
<cmd>say -1 Server hosted by [RFN] members Nick, Robin, Sirus and Bourne4</cmd>
<cmdtype>0</cmdtype>
</job>
<job id="1">
<time>054500</time>
<delay>000000</delay>
<day>1,2,3,4,5,6,7</day>
<loop>1</loop>
<cmd>say -1 Server restart in 15 minutes! (every 6 hours)</cmd>
<cmdtype>0</cmdtype>
</job>
<job id="2">
<time>055500</time>
<delay>000000</delay>
<day>1,2,3,4,5,6,7</day>
<loop>1</loop>
<cmd>say -1 Server restart in 5 minutes! (every 6 hours)</cmd>
<cmdtype>0</cmdtype>
</job>
<job id="3">
<time>055900</time>
<delay>000000</delay>
<day>1,2,3,4,5,6,7</day>
<loop>1</loop>
<cmd>say -1 Server restart in 1 minute! Log out now!</cmd>
<cmdtype>0</cmdtype>
</job>
<job id="4">
<time>002000</time>
<delay>000100</delay>
<day>1,2,3,4,5,6,7</day>
<loop>1</loop>
<cmd>say -1 Want to join the community, see www.theriflesgaming.webs.com </cmd>
<cmdtype>0</cmdtype>
</job>
<job id="5">
<time>001000</time>
<delay>000100</delay>
<day>1,2,3,4,5,6,7</day>
<loop>1</loop>
<cmd>say -1 Admins are [RFN] members Bourne4,Sirusnw, Nick and Robin </cmd>
<cmdtype>0</cmdtype>
</job>
<job id="6">
<time>000010</time>
<delay>000100</delay>
<day>1,2,3,4,5,6,7</day>
<loop>1</loop>
<cmd>say -1 test </cmd>
<cmdtype>0</cmdtype>
</job>
</Scheduler>

No errors according to http://w3schools.com/dom/dom_validate.asp

But they are still not broadcasted and I can see in the errorlog this: WARNING :: Unable to get info from the arma process, Your reporter account will not be working.

I removed the reporter block because I don't want to use that. This should be possible according to : http://ibattle.org/install-and-configure/configure/#Reporter
 
Do you start your server (arma2oaserver.exe) as administrator? If yes, let BEC start with administrator privileges too.
 
Back
Top