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

	<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>2006-06-28T10:53:31-04:00</updated>

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

		<entry>
		<author><name><![CDATA[DragnLord]]></name></author>
		<updated>2006-06-28T10:53:31-04:00</updated>

		<published>2006-06-28T10:53:31-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=64388#p64388</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=64388#p64388"/>
		<title type="html"><![CDATA[Is this possible ? (utimer)]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=64388#p64388"><![CDATA[
have you tried using puthelp instead of putserv?<br>(sometimes it's better to just use the easiest method)<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4461">DragnLord</a> — Wed Jun 28, 2006 10:53 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[De Kus]]></name></author>
		<updated>2006-06-28T04:11:23-04:00</updated>

		<published>2006-06-28T04:11:23-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=64376#p64376</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=64376#p64376"/>
		<title type="html"><![CDATA[Is this possible ? (utimer)]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=64376#p64376"><![CDATA[
As long there is a server queue, it cannot be determined how many seconds it delays. Per default the queue cycle is every 2 secs, so its impossible to have 1 second delay. And still then (when you decrease it in server.c, use putquick or putdccraw), IRC is a laggy thing and 1-2 seconds go missing in some netlag pretty fast.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2382">De Kus</a> — Wed Jun 28, 2006 4:11 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Sir_Fz]]></name></author>
		<updated>2006-06-27T18:44:03-04:00</updated>

		<published>2006-06-27T18:44:03-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=64364#p64364</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=64364#p64364"/>
		<title type="html"><![CDATA[Is this possible ? (utimer)]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=64364#p64364"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code>putserv "msg $chan :bleah"utimer 1 [list putserv "msg $chan :bleah"]utimer 2 [list putserv "msg $chan :bleah"]utimer 3 [list putserv "msg $chan :bleah"]</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3085">Sir_Fz</a> — Tue Jun 27, 2006 6:44 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[krimson]]></name></author>
		<updated>2006-06-27T14:53:05-04:00</updated>

		<published>2006-06-27T14:53:05-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=64358#p64358</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=64358#p64358"/>
		<title type="html"><![CDATA[Is this possible ? (utimer)]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=64358#p64358"><![CDATA[
they would just print out one after another, but one second later than the first time<br><br>i would suggest using utimer in utimer. something like this:<br><div class="codebox"><p>Code: </p><pre><code>utimer 1 { putserv "msg $chan :bleah"  utimer 1 { putserv "msg $chan :bleah"    utimer 1 { putserv "msg $chan :bleah"      [...]    }  }}</code></pre></div>it should do what you want<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7663">krimson</a> — Tue Jun 27, 2006 2:53 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[NTHosts]]></name></author>
		<updated>2006-06-27T13:09:05-04:00</updated>

		<published>2006-06-27T13:09:05-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=64356#p64356</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=64356#p64356"/>
		<title type="html"><![CDATA[Is this possible ? (utimer)]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=64356#p64356"><![CDATA[
say i have a simple responder script that says a few lines like...<br><div class="codebox"><p>Code: </p><pre><code>putserv "msg $chan :bleah"putserv "msg $chan :bleah"putserv "msg $chan :bleah"putserv "msg $chan :bleah"</code></pre></div>is it possible to set utimers between them like..<br><div class="codebox"><p>Code: </p><pre><code>putserv "msg $chan :bleah"utimer 1putserv "msg $chan :bleah"utimer 1putserv "msg $chan :bleah"utimer 1putserv "msg $chan :bleah"</code></pre></div>so it says the next like exactly a second later ?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6839">NTHosts</a> — Tue Jun 27, 2006 1:09 pm</p><hr />
]]></content>
	</entry>
	</feed>
