<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-gb">
	<link rel="self" type="application/atom+xml" href="https://forum.eggheads.org/app.php/feed/topic/19976" />

	<title>egghelp/eggheads community</title>
	<subtitle>Discussion of eggdrop bots, shell accounts and tcl scripts.</subtitle>
	<link href="https://forum.eggheads.org/index.php" />
	<updated>2015-05-26T01:18:49-04:00</updated>

	<author><name><![CDATA[egghelp/eggheads community]]></name></author>
	<id>https://forum.eggheads.org/app.php/feed/topic/19976</id>

		<entry>
		<author><name><![CDATA[juanamores]]></name></author>
		<updated>2015-05-26T01:18:49-04:00</updated>

		<published>2015-05-26T01:18:49-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=104158#p104158</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=104158#p104158"/>
		<title type="html"><![CDATA[Fixed]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=104158#p104158"><![CDATA[
I fixed.<br>I returned to cron:weekly but with much less lines and working properly. <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_biggrin.gif" width="15" height="15" alt=":D" title="Very Happy"> <br><div class="codebox"><p>Code: </p><pre><code>bind cron - {* * * * *} cron:weekly proc cron:weekly {min hour day month weekday} {if {($min == "50" &amp;&amp; $hour == "23") &amp;&amp; ($weekday == "01" || $weekday == "02" || $weekday == "03" || $weekday == "04")} \   {unbinds;bind cron - {*/10 0 * * 1,2,3,4} advertise}if {($min == "50" &amp;&amp; $hour == "03") &amp;&amp; ($weekday == "00" || $weekday == "05" || $weekday == "06")} \   {unbinds;bind cron - {*/20 4 * * 0,5,6} advertise }if {($min == "50" &amp;&amp; $hour == "17") &amp;&amp; ($weekday == "01" || $weekday == "02" || $weekday == "03" || $weekday == "04")} \   {unbinds;bind cron - {*/10 18 * * *} advertise }}proc unbinds { } {   foreach ele [binds cron] {        foreach {type flags name hits proc} $ele {                if {[string match "advertise" $proc]} {                unbind $type $flags $name $proc                putlog "UNBIND $type $flags $name $proc"                 break                }        }   }}  </code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12499">juanamores</a> — Tue May 26, 2015 1:18 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[juanamores]]></name></author>
		<updated>2015-05-24T15:49:40-04:00</updated>

		<published>2015-05-24T15:49:40-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=104151#p104151</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=104151#p104151"/>
		<title type="html"><![CDATA[bind cron weekly help]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=104151#p104151"><![CDATA[
<blockquote class="uncited"><div>What about<div class="codebox"><p>Code: </p><pre><code>bind cron - {*/20 4 * * 0,5,6} advertisebind cron - {*/20 0 * * 1,2,3,4} advertisebind cron - {*/10 18 * * *} advertise</code></pre></div>Not 100% sure so give this a try. <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><br><br>And in the <em class="text-italics">advertise</em> function do that unbind of the previous cron binds.</div></blockquote> The idea would be not to use <div class="codebox"><p>Code: </p><pre><code>bind cron - {* * * * *} cron:semanal</code></pre></div> and do unbind in the same process advertise ?<br>Something like that ?:<div class="codebox"><p>Code: </p><pre><code>bind cron - {*/20 4 * * 0,5,6} advertisebind cron - {*/20 0 * * 1,2,3,4} advertisebind cron - {*/10 18 * * *} advertiseproc advertise { nick uhost hand chan arg } {unbinds#more stuff....#}proc unbinds { } {   foreach ele [binds cron] {        foreach {type flags name hits proc} $ele {                if {[string match "advertise" $proc]} {                  unbind $type $flags $name $proc                  break                }      }   }} </code></pre></div>This does not <em class="text-italics">unbind</em> me the same <em class="text-italics">cron</em> I'm activating?<br>How I can make the code distinguishes the previous cron binds and not <em class="text-italics">unbind</em> the current cron I'm activating?<br><br>I thought of something to distinguish by the number of hits, if value of hits is zero, it is the current process and performed a <em class="text-italics">break</em> and <em class="text-italics">return</em> in the process unbinds.<br>It might work or is there a better way to do this?<br><div class="codebox"><p>Code: </p><pre><code>proc unbinds { } {   foreach ele [binds cron] {        foreach {type flags name hits proc} $ele {                if {($proc eq "advertise") &amp;&amp; ($hits == 0)}  { break;return }                if {($proc eq "advertise") &amp;&amp; ($hits != 0)} {                  unbind $type $flags $name $proc                  break                }      }   }} </code></pre></div><strong class="text-strong">EDIT: </strong><br> My idea will not work for the following reason:<br>The first time the "unbinds" and "advertise" process run smoothly.<br>But the second time the number of hits of that process will have value 1 and <em class="text-italics">unbind</em> the current bind cron.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12499">juanamores</a> — Sun May 24, 2015 3:49 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[caesar]]></name></author>
		<updated>2015-05-24T04:03:28-04:00</updated>

		<published>2015-05-24T04:03:28-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=104150#p104150</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=104150#p104150"/>
		<title type="html"><![CDATA[bind cron weekly help]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=104150#p104150"><![CDATA[
What about<div class="codebox"><p>Code: </p><pre><code>bind cron - {*/20 4 * * 0,5,6} advertisebind cron - {*/20 0 * * 1,2,3,4} advertisebind cron - {*/10 18 * * *} advertise</code></pre></div>Not 100% sure so give this a try. <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><br><br>And in the <em class="text-italics">advertise</em> function do that unbind of the previous cron binds.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=187">caesar</a> — Sun May 24, 2015 4:03 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[juanamores]]></name></author>
		<updated>2015-05-23T22:42:39-04:00</updated>

		<published>2015-05-23T22:42:39-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=104149#p104149</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=104149#p104149"/>
		<title type="html"><![CDATA[Fixed]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=104149#p104149"><![CDATA[
I found a solution, it is not very "orthodox", but is all I could to do with my limited knowledge of Tcl.<br>I share it to other users who may have the same doubts and I close this topic if no better ideas.<br><div class="codebox"><p>Code: </p><pre><code>bind cron - {* * * * *} cron:semanalproc cron:semanal {min hour day month weekday} {global canal_adminif {![file exists radiochans1.txt]} {return} else {set fname "radiochans1.txt"set fp [open $fname "r"]set data [read -nonewline $fp]close $fpset lines [split $data "\n"]  set onch1 0foreach chan [channels] {if {([lsearch -glob -ascii -nocase $lines $chan] != -1) &amp;&amp; ([onchan $::botnick $chan])} { set onch1 [expr {$onch1 + 1}] }}if {$onch1 == 0} return  if {$min == "00" &amp;&amp; $hour == "04" &amp;&amp; $weekday == "00"} {unbinds;bind cron - {*/20 * * * *} advertise }if {$min == "00" &amp;&amp; $hour == "18" &amp;&amp; $weekday == "00"} {unbinds;bind cron - {*/10 * * * *} advertise }if {$min == "00" &amp;&amp; $hour == "00" &amp;&amp; $weekday == "01"} {unbinds;bind cron - {*/20 * * * *} advertise }if {$min == "00" &amp;&amp; $hour == "18" &amp;&amp; $weekday == "01"} {unbinds;bind cron - {*/10 * * * *} advertise }if {$min == "00" &amp;&amp; $hour == "00" &amp;&amp; $weekday == "02"} {unbinds;bind cron - {*/20 * * * *} advertise }if {$min == "00" &amp;&amp; $hour == "18" &amp;&amp; $weekday == "02"} {unbinds;bind cron - {*/10 * * * *} advertise }if {$min == "00" &amp;&amp; $hour == "00" &amp;&amp; $weekday == "03"} {unbinds;bind cron - {*/20 * * * *} advertise }if {$min == "00" &amp;&amp; $hour == "18" &amp;&amp; $weekday == "03"} {unbinds;bind cron - {*/10 * * * *} advertise }if {$min == "00" &amp;&amp; $hour == "00" &amp;&amp; $weekday == "04"} {unbinds;bind cron - {*/20 * * * *} advertise }if {$min == "00" &amp;&amp; $hour == "18" &amp;&amp; $weekday == "04"} {unbinds;bind cron - {*/10 * * * *} advertise }if {$min == "00" &amp;&amp; $hour == "04" &amp;&amp; $weekday == "05"} {unbinds;bind cron - {*/20 * * * *} advertise }if {$min == "00" &amp;&amp; $hour == "18" &amp;&amp; $weekday == "05"} {unbinds;bind cron - {*/10 * * * *} advertise }if {$min == "00" &amp;&amp; $hour == "04" &amp;&amp; $weekday == "06"} {unbinds;bind cron - {*/20 * * * *} advertise }if {$min == "00" &amp;&amp; $hour == "18" &amp;&amp; $weekday == "06"} {unbinds;bind cron - {*/10 * * * *} advertise }}}proc unbinds { } {foreach ele [binds cron] {        foreach {type flags name hits proc} $ele {                if {[string match "advertise" $proc]} {                  unbind $type $flags $name $proc                  break                }}} }</code></pre></div>I used <em class="text-italics">unbind</em> command because to put range time, not getting the desired results, by joining the previous timer to the next.<br>I tried:<div class="codebox"><p>Code: </p><pre><code>bind cron -|- {*/10 00-04 * * *} advertise</code></pre></div>At 04:00 the process stopped , but continued to run advertising for 10 minutes (queue) and joined to the next.<br><br>The process is activated this way:<br>Sundays 04:00-18:00 every 20 min<br>Sundays 18:00-23:59 every 10 min<br>From Monday to Thursday from 00:00-18:00 every 20 min<br>From Monday to Thursday from 18:00-23:59 every 10 min<br>Friday 00:00-04:00 every 20 min<br>Friday 04:00-18:00 every 10 min<br>Friday 18:00-23:59 every 10 min<br>Saturday from 00:00-04:00 every 10 min<br>Saturday from 04:00-18:00 every 20 min<br>Saturday from 18:00-23:59 every 10 minutes until Sunday at 04:00 am returning every 20 min.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12499">juanamores</a> — Sat May 23, 2015 10:42 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[juanamores]]></name></author>
		<updated>2015-05-22T22:26:46-04:00</updated>

		<published>2015-05-22T22:26:46-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=104142#p104142</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=104142#p104142"/>
		<title type="html"><![CDATA[Re: bind cron weekly help]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=104142#p104142"><![CDATA[
<blockquote class="uncited"><div>What I do:<br>Google for terms such as, "crontab examples".</div></blockquote> This issue is very confusing, the examples I saw on Google for the days used interchangeably: 0-6 or 1-7 (1 digit) or Mon Tue etc ..<br>But in the debuggin the code returns me to day with 2 digits and you can not use abbreviations.<br>00 or 07 Sunday<br>01 Monday<br>etc ....<br> I could only test is that the syntax of the command if I put before, are wrong.<br>This is the correct syntax according to testing.<div class="codebox"><p>Code: </p><pre><code> if {$min == "47" &amp;&amp; $hour == "01" &amp;&amp; $weekday == "06"} {</code></pre></div>Examples are wrong, not working properly.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12499">juanamores</a> — Fri May 22, 2015 10:26 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[juanamores]]></name></author>
		<updated>2015-05-22T09:10:40-04:00</updated>

		<published>2015-05-22T09:10:40-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=104140#p104140</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=104140#p104140"/>
		<title type="html"><![CDATA[bind cron weekly help]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=104140#p104140"><![CDATA[
I did so, not if you work well, I have not had time opportunity to test it.<br>If there is a better way to do it without many <em class="text-italics">if</em> ... I appreciate the help.<br>Please, see if logical and properly bind cron command syntax.<br><br><div class="codebox"><p>Code: </p><pre><code>bind cron - {* * * * *} cron:semanalproc cron:semanal {min hour day month weekday} {if {![file exists radiochans1.txt]} {set fs [open radiochans1.txt w]puts $fs ""close $fs} else {set fname "radiochans1.txt"set fp [open $fname "r"]set data [read -nonewline $fp]close $fpset lines [split $data "\n"]  foreach chan [channels] {if {$chan == "" } continue if {[botonchan $chan] != 1} {break;return}}if {[string trimleft $min 0] == 00 &amp;&amp; [string trimleft $hour 0] == 00 &amp;&amp; [string trimleft $weekday 0] == 1} { bind cron - {*/20 * 00-18 * 1} advertise }if {[string trimleft $min 0] == 00 &amp;&amp; [string trimleft $hour 0] == 18 &amp;&amp; [string trimleft $weekday 0] == 1} { bind cron - {*/10 * 18-24 * 1} advertise }if {[string trimleft $min 0] == 00 &amp;&amp; [string trimleft $hour 0] == 00 &amp;&amp; [string trimleft $weekday 0] == 2} { bind cron - {*/20 * 00-18 * 2} advertise }if {[string trimleft $min 0] == 00 &amp;&amp; [string trimleft $hour 0] == 18 &amp;&amp; [string trimleft $weekday 0] == 2} { bind cron - {*/10 * 18-24 * 2} advertise }if {[string trimleft $min 0] == 00 &amp;&amp; [string trimleft $hour 0] == 02 &amp;&amp; [string trimleft $weekday 0] == 3} { bind cron - {*/20 * 02-18 * 3} advertise }if {[string trimleft $min 0] == 00 &amp;&amp; [string trimleft $hour 0] == 18 &amp;&amp; [string trimleft $weekday 0] == 3} { bind cron - {*/10 * 18-24 * 3} advertise }if {[string trimleft $min 0] == 00 &amp;&amp; [string trimleft $hour 0] == 02 &amp;&amp; [string trimleft $weekday 0] == 4} { bind cron - {*/20 * 02-18 * 4} advertise }if {[string trimleft $min 0] == 00 &amp;&amp; [string trimleft $hour 0] == 18 &amp;&amp; [string trimleft $weekday 0] == 4} { bind cron - {*/10 * 18-24 * 4} advertise }if {[string trimleft $min 0] == 00 &amp;&amp; [string trimleft $hour 0] == 00 &amp;&amp; [string trimleft $weekday 0] == 5} { bind cron - {*/20 * 00-19 * 5} advertise }if {[string trimleft $min 0] == 00 &amp;&amp; [string trimleft $hour 0] == 19 &amp;&amp; [string trimleft $weekday 0] == 5} { bind cron - {*/10 * 19-24 * 5} advertise }if {[string trimleft $min 0] == 00 &amp;&amp; [string trimleft $hour 0] == 00 &amp;&amp; [string trimleft $weekday 0] == 6} { bind cron - {*/20 * 00-19 * 6} advertise }if {[string trimleft $min 0] == 00 &amp;&amp; [string trimleft $hour 0] == 19 &amp;&amp; [string trimleft $weekday 0] == 6} { bind cron - {*/10 * 19-24 * 6} advertise }if {[string trimleft $min 0] == 00 &amp;&amp; [string trimleft $hour 0] == 00 &amp;&amp; [string trimleft $weekday 0] == 7} { bind cron - {*/20 * 00-19 * 7} advertise }if {[string trimleft $min 0] == 00 &amp;&amp; [string trimleft $hour 0] == 19 &amp;&amp; [string trimleft $weekday 0] == 7} { bind cron - {*/10 * 19-24 * 7} advertise }}}</code></pre></div><strong class="text-strong">EDIT:</strong><br> I had doubts, I did not know how to put 18 - 23:59, because I think it does not allow the syntax of this command.<br>i.e:<div class="codebox"><p>Code: </p><pre><code>if {[string trimleft $min 0] == 00 &amp;&amp; [string trimleft $hour 0] == 18 &amp;&amp; [string trimleft $weekday 0] == 1} { bind cron - {*/10 * 18-24 * 1} advertise } </code></pre></div>If I put 18-00 and would be in the next day. <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_confused.gif" width="15" height="15" alt=":?" title="Confused"><br><strong class="text-strong"><br>EDIT2:</strong>  The more I read about it the less I understand. <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_confused.gif" width="15" height="15" alt=":?" title="Confused"><br>The example below, it means the <em class="text-italics">advertise</em> command will run every 10 minutes between 18 and 23:59 every Monday ?<div class="codebox"><p>Code: </p><pre><code>bind cron - {0-59/10 18-23 * * 1} advertise </code></pre></div><strong class="text-strong">=======================================</strong><br> If my reasoning is correct, the examples below would be fine.<br><strong class="text-strong"><span style="color:red">Sunday</span> every 10 min 0:00 - 03:59</strong><div class="codebox"><p>Code: </p><pre><code>if {[string trimleft $min 0] == 00 &amp;&amp; [string trimleft $hour 0] == 0 &amp;&amp; [string trimleft $weekday 0] == 0} { bind cron - {0-59/10 0-3 * * 0} advertise }</code></pre></div><strong class="text-strong"><span style="color:red">Sunday</span> every 20 min 4:00 - 18:59</strong><div class="codebox"><p>Code: </p><pre><code>  if {[string trimleft $min 0] == 00 &amp;&amp; [string trimleft $hour 0] == 0 &amp;&amp; [string trimleft $weekday 0] == 0} { bind cron - {0-59/20 4-18 * * 0} advertise }</code></pre></div><strong class="text-strong"><span style="color:red">Sunday</span> every 10 min 19:00 - 23:59</strong><div class="codebox"><p>Code: </p><pre><code>  if {[string trimleft $min 0] == 00 &amp;&amp; [string trimleft $hour 0] == 19 &amp;&amp; [string trimleft $weekday 0] == 0} { bind cron - {0-59/10 19-23 * * 0} advertise }</code></pre></div><strong class="text-strong">=======================================</strong><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12499">juanamores</a> — Fri May 22, 2015 9:10 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[willyw]]></name></author>
		<updated>2015-05-22T09:00:01-04:00</updated>

		<published>2015-05-22T09:00:01-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=104139#p104139</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=104139#p104139"/>
		<title type="html"><![CDATA[Re: bind cron weekly help]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=104139#p104139"><![CDATA[
<blockquote class="uncited"><div>...<br>I read the  eggdrop documentation but did not understand how it works. ...<br>...<br>If you can explain how it is done, so the next codes I will modify without help, I have 10 more processes to change.<br>...</div></blockquote>The eggdrop tcl-commands.doc does not go into depth on this.   It simply says that to refer to the crontab manual.<br><br>What I do:<br>Google for terms such as, "crontab examples".<br><br>You will find lots of help that way.  With the various specifics that you require,  I think you will find ways to accomplish them, with different lines for each in your crontab.<br><br>I hope this helps.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=10420">willyw</a> — Fri May 22, 2015 9:00 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[juanamores]]></name></author>
		<updated>2015-05-20T23:55:11-04:00</updated>

		<published>2015-05-20T23:55:11-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=104129#p104129</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=104129#p104129"/>
		<title type="html"><![CDATA[bind cron weekly help]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=104129#p104129"><![CDATA[
Need a process is active:<br><strong class="text-strong">monday to thursday</strong><br>from 02:01AM to 6PM every 20 minutes<br>from 6:01PM to 02:00AM the next day every 10 minutes<br><strong class="text-strong">Fridays, Saturdays and Sundays</strong><br>from 4:01AM to 7PM every 15min<br>from 7:01PM to 4:00AM the next day every 5min<br><strong class="text-strong"><span style="color:red">(please see EDIT)</span><br></strong><br>I read the  eggdrop documentation but did not understand how it works. <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_redface.gif" width="15" height="15" alt=":oops:" title="Embarassed"> <br><br>The proc:<blockquote class="uncited"><div><span style="color:red">bind cron - {?????} advertise</span></div></blockquote><div class="codebox"><p>Code: </p><pre><code>proc advertise { nick uhost hand chan arg } {global advertisetext status1 topicountif {($status1 != "ON") || ($topicount == 0 )}  { return  } else {if {![file exists radiochans1.txt]} { return } else {set fname "radiochans1.txt"set fp [open $fname "r"]set data [read -nonewline $fp]close $fpset lines [split $data "\n"]  foreach chan [channels] {if {$lines != "" } {if {([lsearch -exact [string tolower $lines] [string tolower $chan]] != -1)} { putserv "privmsg $chan :$advertisetext" }}}}}}</code></pre></div>If you can explain how it is done, so the next codes I will modify without help, I have 10 more processes to change.<br><br><strong class="text-strong"><span style="color:red">EDIT:</span></strong><br>Reviewing the consultation, I made an inconsistency between Sunday and Monday:<br><strong class="text-strong"><br>Monday  must be</strong>:<br>from 04:01AM to 6PM every 20 minutes<br>from 6:01PM to 02:00AM (tuesday)the next day every 10 minutes<br><strong class="text-strong">Tuesday and Wednesday</strong><br>from 02:01AM to 6PM every 20 minutes<br>from 6:01PM to 02:00AM the next day every 10 minutes<br><strong class="text-strong">Thursday</strong><br>from 02:01AM to 6PM every 20 minutes<br>from 6:01PM to 04:00AM (friday)the next day every 10 minutes<br><strong class="text-strong">Fridays, Saturdays and Sundays</strong><br>from 4:01AM to 7PM every 15min<br>from 7:01PM to 4:00AM the next day every 5min<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12499">juanamores</a> — Wed May 20, 2015 11:55 pm</p><hr />
]]></content>
	</entry>
	</feed>
