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

	<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>2005-10-14T05:51:59-04:00</updated>

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

		<entry>
		<author><name><![CDATA[De Kus]]></name></author>
		<updated>2005-10-14T05:51:59-04:00</updated>

		<published>2005-10-14T05:51:59-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=56630#p56630</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=56630#p56630"/>
		<title type="html"><![CDATA[Action script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=56630#p56630"><![CDATA[
but you cant bind to week days<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2382">De Kus</a> — Fri Oct 14, 2005 5:51 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Sir_Fz]]></name></author>
		<updated>2005-10-14T05:10:48-04:00</updated>

		<published>2005-10-14T05:10:48-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=56628#p56628</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=56628#p56628"/>
		<title type="html"><![CDATA[Action script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=56628#p56628"><![CDATA[
You can also add several time binds calling the same proc.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3085">Sir_Fz</a> — Fri Oct 14, 2005 5:10 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[De Kus]]></name></author>
		<updated>2005-10-14T04:09:19-04:00</updated>

		<published>2005-10-14T04:09:19-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=56626#p56626</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=56626#p56626"/>
		<title type="html"><![CDATA[Action script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=56626#p56626"><![CDATA[
<blockquote class="uncited"><div>How would i make that do a command at serveral different times a day and on different days of the week ? sorry im a n00b 2 this <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_sad.gif" width="15" height="15" alt=":(" title="Sad"></div></blockquote>bind to "00 *" and check for hour and weekday (refer '<a href="http://www.tcl.tk/man/tcl8.4/TclCmd/clock.htm#M35" class="postlink">clock format</a>' and 'unixtime' in TCLCommands). Oh yes, the most important thing is using a boolan expression in an if construction. You dont have to know about TCL to create this, because this is the same since Basic (at least on C64).<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2382">De Kus</a> — Fri Oct 14, 2005 4:09 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[NTHosts]]></name></author>
		<updated>2005-10-13T20:52:50-04:00</updated>

		<published>2005-10-13T20:52:50-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=56620#p56620</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=56620#p56620"/>
		<title type="html"><![CDATA[Action script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=56620#p56620"><![CDATA[
How would i make that do a command at serveral different times a day and on different days of the week ? sorry im a n00b 2 this <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_sad.gif" width="15" height="15" alt=":(" title="Sad"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6839">NTHosts</a> — Thu Oct 13, 2005 8:52 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Sir_Fz]]></name></author>
		<updated>2005-10-13T17:01:26-04:00</updated>

		<published>2005-10-13T17:01:26-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=56615#p56615</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=56615#p56615"/>
		<title type="html"><![CDATA[Action script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=56615#p56615"><![CDATA[
Use [bind time], this is an example:<div class="codebox"><p>Code: </p><pre><code>bind time - "00 00 *" perform:commandproc perform:command {min hour day mon year} { # do whatever}</code></pre></div>"00 00 *" means perform the command at time 00:00 any day, month and year. Read about it in Tcl-commands.doc.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3085">Sir_Fz</a> — Thu Oct 13, 2005 5:01 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[NTHosts]]></name></author>
		<updated>2005-10-13T13:57:23-04:00</updated>

		<published>2005-10-13T13:57:23-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=56613#p56613</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=56613#p56613"/>
		<title type="html"><![CDATA[Action script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=56613#p56613"><![CDATA[
Hi, does anyone know of a script that will run another script at certains times of the day.<br>You see i have a script that can kick the source on a  shoutcast server when i use a command, is there a script that can perform this command every few hours at pre set times that are easy 2 change ?<br><br>HELP PLZZZ<br><br><img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_biggrin.gif" width="15" height="15" alt=":D" title="Very Happy">:D:D:D:D<br><br>Nick.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6839">NTHosts</a> — Thu Oct 13, 2005 1:57 pm</p><hr />
]]></content>
	</entry>
	</feed>
