<?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/13446" />

	<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>2007-05-03T17:07:54-04:00</updated>

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

		<entry>
		<author><name><![CDATA[user]]></name></author>
		<updated>2007-05-03T17:07:54-04:00</updated>

		<published>2007-05-03T17:07:54-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=72492#p72492</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=72492#p72492"/>
		<title type="html"><![CDATA[bind time]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=72492#p72492"><![CDATA[
Worth noting: the first month is 00, while the first day is 01 (and there's no mention of that in the docs)<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2878">user</a> — Thu May 03, 2007 5:07 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[iamdeath]]></name></author>
		<updated>2007-05-03T15:59:37-04:00</updated>

		<published>2007-05-03T15:59:37-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=72490#p72490</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=72490#p72490"/>
		<title type="html"><![CDATA[bind time]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=72490#p72490"><![CDATA[
Thanks alot that was really useful, i'll use it in a script and let you know if there is any problem I am facing.<br>Thanks <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5982">iamdeath</a> — Thu May 03, 2007 3:59 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Sir_Fz]]></name></author>
		<updated>2007-05-03T14:31:38-04:00</updated>

		<published>2007-05-03T14:31:38-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=72479#p72479</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=72479#p72479"/>
		<title type="html"><![CDATA[bind time]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=72479#p72479"><![CDATA[
This should also be useful (from Tcl-commands.doc):<blockquote class="uncited"><div>*** MATCH CHARACTERS ***<br><br>  Many of the bindings allow match characters in the arguments. Here<br>  are the four special characters:<br><br>  ?  matches any single character<br>  *  matches 0 or more characters of any type<br>  %  matches 0 or more non-space characters (can be used to match a single<br>     word)<br>  ~  matches 1 or more space characters (can be used for whitespace between<br>     words)</div></blockquote>These match-characters can be used in the &lt;mask&gt; of binds (which accept wild cards).<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3085">Sir_Fz</a> — Thu May 03, 2007 2:31 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[nml375]]></name></author>
		<updated>2007-05-03T10:10:05-04:00</updated>

		<published>2007-05-03T10:10:05-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=72466#p72466</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=72466#p72466"/>
		<title type="html"><![CDATA[bind time]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=72466#p72466"><![CDATA[
<blockquote class="uncited"><div>    (37) TIME (stackable)<br>         bind time &lt;flags&gt; &lt;mask&gt; &lt;proc&gt;<br>         proc-name &lt;minute&gt; &lt;hour&gt; &lt;day&gt; &lt;month&gt; &lt;year&gt;<br><br>         Description: allows you to schedule procedure calls at certain<br>           times. mask matches 5 space separated integers of the form:<br>           "minute hour day month year". minute, hour, day, month have a<br>           zero padding so they are exactly two characters long; year is<br>           four characters. Flags are ignored.<br>         Module: core</div></blockquote>Simply put, upon every HOOK_MINUTELY (every minute), a string is created such as this "&lt;minute&gt; &lt;hour&gt; &lt;day&gt; &lt;month&gt; &lt;year&gt;" (the same string could be generated using [clock format -format "%M %H %d %m %Y" [clock seconds]]). This is then matched against all time-bindings you've created (in a similar fashion to "string match", thus allowing wildcards such as *), and if it matches, the associated code is executed.<br><br>The mask "*" would match any time (and thus trigger every minute).<br>The mask "00 *" would match whenever the minute-part is 00 (triggers every hour on the hour).<br>The mask "* 01 *" would match whenever the hour, day, or month is 01 (or any combination of those) - probably not useful, and most scripters were probably intending a completely different result.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8052">nml375</a> — Thu May 03, 2007 10:10 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Alchera]]></name></author>
		<updated>2007-05-03T09:46:07-04:00</updated>

		<published>2007-05-03T09:46:07-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=72465#p72465</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=72465#p72465"/>
		<title type="html"><![CDATA[bind time]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=72465#p72465"><![CDATA[
<a href="http://www.google.com" class="postlink">www.google.com</a><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3646">Alchera</a> — Thu May 03, 2007 9:46 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[iamdeath]]></name></author>
		<updated>2007-05-03T07:26:19-04:00</updated>

		<published>2007-05-03T07:26:19-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=72462#p72462</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=72462#p72462"/>
		<title type="html"><![CDATA[bind time]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=72462#p72462"><![CDATA[
Hi, can anyone please explain to me in detail about bind time ****** ... I don't get it, if you can give me a tutorial link or something liek that I will really appreciate that. Thanks.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5982">iamdeath</a> — Thu May 03, 2007 7:26 am</p><hr />
]]></content>
	</entry>
	</feed>
