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

	<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>2010-04-21T03:45:37-04:00</updated>

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

		<entry>
		<author><name><![CDATA[c0re]]></name></author>
		<updated>2010-04-21T03:45:37-04:00</updated>

		<published>2010-04-21T03:45:37-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=92892#p92892</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=92892#p92892"/>
		<title type="html"><![CDATA[blind time.]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=92892#p92892"><![CDATA[
i figured it out and its work just great.....<br><br><div class="codebox"><p>Code: </p><pre><code>proc livefeed {} {   set pagina "my url"   set http [http::config -useragent mozilla]   set http [http::geturl $pagina -timeout [expr 1000 * 10]]   set html [http::data $http]   putlog "upgrading livefeed."   if {[lsearch [utimers] "* livefeed *"] == -1} {     #No timers left, start a new one     utimer 8 [list livefeed]   } } livefeed</code></pre></div>Thank you so much....<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=10429">c0re</a> — Wed Apr 21, 2010 3:45 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[c0re]]></name></author>
		<updated>2010-04-21T03:39:58-04:00</updated>

		<published>2010-04-21T03:39:58-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=92891#p92891</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=92891#p92891"/>
		<title type="html"><![CDATA[blind time.]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=92891#p92891"><![CDATA[
Thank you for your quick reply.....<br><div class="codebox"><p>Code: </p><pre><code>proc livefeed {} {   set pagina "my url"   set http [http::config -useragent mozilla]   set http [http::geturl $pagina -timeout [expr 1000 * 10]]   set html [http::data $http]   foreach line [split $html "\n"] {  putlog "upgrading livefeed."   if {[lsearch [utimers] "* livefeed *"] == -1} {     #No timers left, start a new one     utimer 5 [list livefeed]   } } </code></pre></div>question is how do i bind it? with timer or something?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=10429">c0re</a> — Wed Apr 21, 2010 3:39 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[nml375]]></name></author>
		<updated>2010-04-20T18:09:45-04:00</updated>

		<published>2010-04-20T18:09:45-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=92890#p92890</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=92890#p92890"/>
		<title type="html"><![CDATA[blind time.]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=92890#p92890"><![CDATA[
The time binding's resolution is down to the minute, so you cannot use that for anything shorter. The most common approach is to use recursive utimer calls:<br><div class="codebox"><p>Code: </p><pre><code>proc someproc {} {  #payload here...  #now for the recursive calling:  #First check for existing timers...  if {[lsearch [utimers] "* someproc *"] == -1} {    #No timers left, start a new one    utimer 4 [list someproc]  }}someproc</code></pre></div>This is a rough skeleton, with a few shortcuts. The check for running timers could probably be prettier, but should do the trick as long as you don't use very complex proc-names..<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8052">nml375</a> — Tue Apr 20, 2010 6:09 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[c0re]]></name></author>
		<updated>2010-04-20T17:53:22-04:00</updated>

		<published>2010-04-20T17:53:22-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=92889#p92889</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=92889#p92889"/>
		<title type="html"><![CDATA[blind time.]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=92889#p92889"><![CDATA[
Hi, i want to blind time every 4 sec. how do i do it?<br><br>bind time -|- {* * * * *} proc_update<br><br>i dont how to set second. please help<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=10429">c0re</a> — Tue Apr 20, 2010 5:53 pm</p><hr />
]]></content>
	</entry>
	</feed>
