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

	<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>2003-11-02T10:47:30-04:00</updated>

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

		<entry>
		<author><name><![CDATA[caesar]]></name></author>
		<updated>2003-11-02T10:47:30-04:00</updated>

		<published>2003-11-02T10:47:30-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=29348#p29348</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=29348#p29348"/>
		<title type="html"><![CDATA[Timer]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=29348#p29348"><![CDATA[
Oh, thanks for the tip. <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_surprised.gif" width="15" height="15" alt=":o" title="Surprised"> <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_razz.gif" width="15" height="15" alt=":P" title="Razz"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=187">caesar</a> — Sun Nov 02, 2003 10:47 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[user]]></name></author>
		<updated>2003-11-02T10:37:44-04:00</updated>

		<published>2003-11-02T10:37:44-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=29347#p29347</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=29347#p29347"/>
		<title type="html"><![CDATA[Timer]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=29347#p29347"><![CDATA[
<blockquote class="uncited"><div>Well, it's "minute hour day month year" so yes, the "bind time - "00 * * * *" yourproc" should be correct. Anyway, if it's working then don't repair it. <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"></div></blockquote>If you want the proc triggered once every hour, sure <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_razz.gif" width="15" height="15" alt=":P" title="Razz"> The request was for every 5 minutes. The only reason to keep the extra chars in the masks would be if you want to waste cpu matching those spaces that are always there.<br>bloated == broken imo.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2878">user</a> — Sun Nov 02, 2003 10:37 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[caesar]]></name></author>
		<updated>2003-11-02T10:25:12-04:00</updated>

		<published>2003-11-02T10:25:12-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=29346#p29346</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=29346#p29346"/>
		<title type="html"><![CDATA[Timer]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=29346#p29346"><![CDATA[
Well, it's "minute hour day month year" so yes, the "bind time - "00 * * * *" yourproc" should be correct. Anyway, if it's working then don't repair it. <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=187">caesar</a> — Sun Nov 02, 2003 10:25 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[user]]></name></author>
		<updated>2003-11-02T10:11:31-04:00</updated>

		<published>2003-11-02T10:11:31-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=29344#p29344</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=29344#p29344"/>
		<title type="html"><![CDATA[Timer]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=29344#p29344"><![CDATA[
<blockquote class="uncited"><div>huh? for every 5 min how will "?0 *" work? <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"></div></blockquote>You still need the "?5 *" mask too, but "00 *" doesn't match anything but the whole hour, so your two binds would trigger the proc at 00 05 15 25 35 45 and 55. (not exactly every 5 minutes <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_razz.gif" width="15" height="15" alt=":P" title="Razz">)<br><br>Btw: why do you insist on matching all the spaces?<div class="codebox"><p>Code: </p><pre><code>bind time - ?0* procbind time - ?5* proc</code></pre></div>There's no need to match those spaces at the end. They're always there, so you don't need to verify it by including them in your mask.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2878">user</a> — Sun Nov 02, 2003 10:11 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[caesar]]></name></author>
		<updated>2003-11-02T10:07:53-04:00</updated>

		<published>2003-11-02T10:07:53-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=29343#p29343</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=29343#p29343"/>
		<title type="html"><![CDATA[Timer]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=29343#p29343"><![CDATA[
huh? for every 5 min how will "?0 *" work? <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=187">caesar</a> — Sun Nov 02, 2003 10:07 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[user]]></name></author>
		<updated>2003-11-02T10:06:10-04:00</updated>

		<published>2003-11-02T10:06:10-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=29342#p29342</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=29342#p29342"/>
		<title type="html"><![CDATA[Timer]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=29342#p29342"><![CDATA[
<blockquote class="uncited"><div><div class="codebox"><p>Code: </p><pre><code>bind time - "00 * * * *" yourproc</code></pre></div></div></blockquote>Or rather "?0 *".  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_wink.gif" width="15" height="15" alt=":wink:" title="Wink"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2878">user</a> — Sun Nov 02, 2003 10:06 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Jag]]></name></author>
		<updated>2003-11-02T10:03:28-04:00</updated>

		<published>2003-11-02T10:03:28-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=29341#p29341</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=29341#p29341"/>
		<title type="html"><![CDATA[Timer]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=29341#p29341"><![CDATA[
10x <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_razz.gif" width="15" height="15" alt=":P" title="Razz"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3871">Jag</a> — Sun Nov 02, 2003 10:03 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[caesar]]></name></author>
		<updated>2003-11-02T10:00:14-04:00</updated>

		<published>2003-11-02T10:00:14-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=29340#p29340</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=29340#p29340"/>
		<title type="html"><![CDATA[Timer]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=29340#p29340"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code>bind time - "?5 * * * *" yourproc bind time - "00 * * * *" yourproc </code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=187">caesar</a> — Sun Nov 02, 2003 10:00 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Jag]]></name></author>
		<updated>2003-11-02T09:11:04-04:00</updated>

		<published>2003-11-02T09:11:04-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=29334#p29334</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=29334#p29334"/>
		<title type="html"><![CDATA[Timer]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=29334#p29334"><![CDATA[
10x <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><br>There is a way to do a timer on every five mins in "bind time"?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3871">Jag</a> — Sun Nov 02, 2003 9:11 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2003-11-02T08:50:51-04:00</updated>

		<published>2003-11-02T08:50:51-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=29332#p29332</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=29332#p29332"/>
		<title type="html"><![CDATA[Timer]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=29332#p29332"><![CDATA[
bind time - "30 * * * *" yourproc<br>bind time - "00 * * * *" yourproc<br><br>proc yourproc {min hour day moth year} { blabla }<br><br>executes yourproc at XX:00 and XX:30<p>Statistics: Posted by Guest — Sun Nov 02, 2003 8:50 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[BarkerJr]]></name></author>
		<updated>2003-10-31T01:38:18-04:00</updated>

		<published>2003-10-31T01:38:18-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=29219#p29219</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=29219#p29219"/>
		<title type="html"><![CDATA[Timer]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=29219#p29219"><![CDATA[
And don't rehash! :P<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2933">BarkerJr</a> — Fri Oct 31, 2003 1:38 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[duofruo]]></name></author>
		<updated>2003-10-30T15:42:59-04:00</updated>

		<published>2003-10-30T15:42:59-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=29205#p29205</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=29205#p29205"/>
		<title type="html"><![CDATA[Timer]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=29205#p29205"><![CDATA[
<blockquote class="uncited"><div>timer 30 procname<br>proc procname {bla bla what u need} { <br>    puthelp "PRIVMSG ........"<br>    timer 30 procname<br>} <br></div></blockquote><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4023">duofruo</a> — Thu Oct 30, 2003 3:42 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Jag]]></name></author>
		<updated>2003-10-30T15:19:53-04:00</updated>

		<published>2003-10-30T15:19:53-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=29202#p29202</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=29202#p29202"/>
		<title type="html"><![CDATA[Timer]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=29202#p29202"><![CDATA[
if i want to do a timer that every 30 mins the eggdrop will do something, how can i do that?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3871">Jag</a> — Thu Oct 30, 2003 3:19 pm</p><hr />
]]></content>
	</entry>
	</feed>
