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

	<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>2004-08-26T16:45:02-04:00</updated>

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

		<entry>
		<author><name><![CDATA[Ofloo]]></name></author>
		<updated>2004-08-26T16:45:02-04:00</updated>

		<published>2004-08-26T16:45:02-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=40229#p40229</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=40229#p40229"/>
		<title type="html"><![CDATA[bind time]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=40229#p40229"><![CDATA[
hmm i think i understand now .. tnx<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3151">Ofloo</a> — Thu Aug 26, 2004 4:45 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[user]]></name></author>
		<updated>2004-08-26T08:31:19-04:00</updated>

		<published>2004-08-26T08:31:19-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=40209#p40209</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=40209#p40209"/>
		<title type="html"><![CDATA[bind time]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=40209#p40209"><![CDATA[
<blockquote class="uncited"><div>hmm how come this works clock sec ?? from what i recall its only "scan seconds format clicks" just wondering not trying to correct u <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_wink.gif" width="15" height="15" alt=";)" title="Wink"></div></blockquote>From the 'clock' manual page:<blockquote class="uncited"><div>... The legal options (<strong class="text-strong">which may be abbreviated</strong>) are: ...</div></blockquote><a href="http://forum.egghelp.org/viewtopic.php?t=4444#20546" class="postlink">http://forum.egghelp.org/viewtopic.php?t=4444#20546</a><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2878">user</a> — Thu Aug 26, 2004 8:31 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Ofloo]]></name></author>
		<updated>2004-08-25T19:50:17-04:00</updated>

		<published>2004-08-25T19:50:17-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=40184#p40184</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=40184#p40184"/>
		<title type="html"><![CDATA[bind time]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=40184#p40184"><![CDATA[
hmm how come this works clock sec ?? from what i recall its only "scan seconds format clicks" just wondering not trying to correct u <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_wink.gif" width="15" height="15" alt=";)" title="Wink"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3151">Ofloo</a> — Wed Aug 25, 2004 7:50 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[user]]></name></author>
		<updated>2004-08-23T10:53:34-04:00</updated>

		<published>2004-08-23T10:53:34-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=40069#p40069</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=40069#p40069"/>
		<title type="html"><![CDATA[bind time]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=40069#p40069"><![CDATA[
Nope..that's 2 minutes past every ten minutes. How about reading tcl-commands.doc? The mask is matched against the current time each minute.<br>There's no way to match every 2 minutes with a single mask. (you need five: "?0 *", "?2 *", "?4 *", "?6 *" and "?8 *")<br>It would probably be better to do the interval check from inside the proc and just bind to "*" (every minute)<div class="codebox"><p>Code: </p><pre><code>bind time - * mi_procproc mi_proc args {set interval 2;# minutesif {(([clock sec]/60)%$interval)==0} {putlog "This is an example..."}}</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2878">user</a> — Mon Aug 23, 2004 10:53 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[makam]]></name></author>
		<updated>2004-08-23T10:24:31-04:00</updated>

		<published>2004-08-23T10:24:31-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=40067#p40067</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=40067#p40067"/>
		<title type="html"><![CDATA[bind time]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=40067#p40067"><![CDATA[
if i want each 2 minutes?<br><br>"?2 * * * *"  <br><br>is it ok?  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_rolleyes.gif" width="15" height="15" alt=":roll:" title="Rolling Eyes"> <br><br><br>Thx...<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5167">makam</a> — Mon Aug 23, 2004 10:24 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[user]]></name></author>
		<updated>2004-08-23T06:08:02-04:00</updated>

		<published>2004-08-23T06:08:02-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=40060#p40060</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=40060#p40060"/>
		<title type="html"><![CDATA[bind time]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=40060#p40060"><![CDATA[
<blockquote class="uncited"><div>well, this code may be ejecute each 10 minutes, right?</div></blockquote>"10 *" means ten minutes past every hour, try "?0 *" instead <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=2878">user</a> — Mon Aug 23, 2004 6:08 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[makam]]></name></author>
		<updated>2004-08-23T03:25:26-04:00</updated>

		<published>2004-08-23T03:25:26-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=40053#p40053</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=40053#p40053"/>
		<title type="html"><![CDATA[bind time]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=40053#p40053"><![CDATA[
well, this code may be ejecute each 10 minutes, right?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5167">makam</a> — Mon Aug 23, 2004 3:25 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[makam]]></name></author>
		<updated>2004-08-23T03:19:46-04:00</updated>

		<published>2004-08-23T03:19:46-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=40051#p40051</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=40051#p40051"/>
		<title type="html"><![CDATA[bind time]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=40051#p40051"><![CDATA[
Why this code dont ejecute?<br><br>bind time - "10 * * * *" mi_proc<br><br>proc mi_proc {min hour d month year} {<br>  putlog "This is an example..."<br>}<br><br><br><br>...ugh?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5167">makam</a> — Mon Aug 23, 2004 3:19 am</p><hr />
]]></content>
	</entry>
	</feed>
