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

	<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>2002-09-12T18:09:48-04:00</updated>

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

		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2002-09-12T18:09:48-04:00</updated>

		<published>2002-09-12T18:09:48-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=10828#p10828</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=10828#p10828"/>
		<title type="html"><![CDATA[Excess flood !!!!]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=10828#p10828"><![CDATA[
Once again, thank you both for the replies<br><br> <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><p>Statistics: Posted by Guest — Thu Sep 12, 2002 6:09 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Papillon]]></name></author>
		<updated>2002-09-11T12:52:46-04:00</updated>

		<published>2002-09-11T12:52:46-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=10784#p10784</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=10784#p10784"/>
		<title type="html"><![CDATA[Excess flood !!!!]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=10784#p10784"><![CDATA[
I agree with ppslim... puthelp is the better solution..<br>btw that was not what I meant ppslim.. the utimer solution <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><br>I thought about something like:<br><div class="codebox"><p>Code: </p><pre><code>set our_chan "#hgh" bind pub - %clanrules clanruleshandler proc clanruleshandler {nick uhost hand chan text} {   global our_chan     if {$chan != $our_chan} {     return 0   }   unbind pub - %clanrules clanruleshandler   utimer 30 [ bind pub - %clanrules clanruleshandler ]  putserv "privmsg $nick : 1......."   putserv "privmsg $nick : 10......." </code></pre></div>this should unbind the %clanrules command for 30 secs...<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=852">Papillon</a> — Wed Sep 11, 2002 12:52 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ppslim]]></name></author>
		<updated>2002-09-11T05:16:47-04:00</updated>

		<published>2002-09-11T05:16:47-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=10771#p10771</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=10771#p10771"/>
		<title type="html"><![CDATA[Excess flood !!!!]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=10771#p10771"><![CDATA[
There are three timers provided by eggdrop.<br><br>timer, utimer and the time bind.<br><br>Both timer and the time bind are called/check once per min, on a definable scale (IE, 2 mins, 3 mins, 50 mins). The time bind has more control over when it is first called.<br><br>utimer is a secondly timer, which again, can be called on a definable scale (1 second, 2 seconds, 50 seconds).<br><br><br>The time bind is used mainly in scripts that want to do somthing often, but do not need to manage the next time it is called.<br><br>timer and utimer are setup on the fly, and are ideal to call a single command, in a short time, mainly once.<br><br>Both timer and utimer use the same format <br><blockquote class="uncited"><div>call &lt;time&gt; &lt;command&gt;</div></blockquote>Where "call" is either timer or utimer.<br><br>To post your messages above, you could use<br><div class="codebox"><p>Code: </p><pre><code>utimer 1 [list putserv "privmsg $chan :hello all 1"]utimer 2 [list putserv "privmsg $chan :hello all 2"]utimer 3 [list putserv "privmsg $chan :hello all 3"]utimer 4 [list putserv "privmsg $chan :hello all 4"]</code></pre></div>This sends the message once per second.<br><br>However, these messages will be put in the queue like all other messages, and may not display right away.<br><br>It is far simpler and quicker to use puthelp, which is likely to display the messages just as quick as the timer method.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2">ppslim</a> — Wed Sep 11, 2002 5:16 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2002-09-10T22:02:03-04:00</updated>

		<published>2002-09-10T22:02:03-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=10756#p10756</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=10756#p10756"/>
		<title type="html"><![CDATA[Excess flood !!!!]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=10756#p10756"><![CDATA[
Thanks for the replies. I opted for the easier method of the puthelp, which so far has worked a treat.<br><br>However, Papillon, can u give me a small example of your solution? For my future referance please?<br><br> <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><p>Statistics: Posted by Guest — Tue Sep 10, 2002 10:02 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ppslim]]></name></author>
		<updated>2002-09-10T05:51:23-04:00</updated>

		<published>2002-09-10T05:51:23-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=10724#p10724</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=10724#p10724"/>
		<title type="html"><![CDATA[Excess flood !!!!]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=10724#p10724"><![CDATA[
That or use the puthelp rather than putserv command.<br><br>tcl-commands.doc lightly explains this situation.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2">ppslim</a> — Tue Sep 10, 2002 5:51 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Papillon]]></name></author>
		<updated>2002-09-10T02:43:25-04:00</updated>

		<published>2002-09-10T02:43:25-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=10718#p10718</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=10718#p10718"/>
		<title type="html"><![CDATA[Excess flood !!!!]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=10718#p10718"><![CDATA[
just add a utimer which disables the command for a certain number of seconds<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=852">Papillon</a> — Tue Sep 10, 2002 2:43 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2002-09-10T02:37:58-04:00</updated>

		<published>2002-09-10T02:37:58-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=10717#p10717</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=10717#p10717"/>
		<title type="html"><![CDATA[Excess flood !!!!]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=10717#p10717"><![CDATA[
A friend wrote this simple script for me, which has a public trigger which prvmsg's the requester with a list of the clans rules, in total there are 10 individual rules or prvmsg's.<br><div class="codebox"><p>Code: </p><pre><code>set our_chan "#hgh"bind pub - %clanrules clanruleshandlerproc clanruleshandler {nick uhost hand chan text} {  global our_chan  if {$chan != $our_chan} {    return 0  }  putserv "privmsg $nick : 1......."  putserv "privmsg $nick : 10......."</code></pre></div>But if too many people trigger the request, then the bot quits due to excess flood, which isn't too clever really. I know that to an extent I could get round this by having one block of text to encompass all 10 rules, but would rather have the 10 individual rules, each on their own. Is there a simple way I can get round this excess flood problem?<br>[/code]<p>Statistics: Posted by Guest — Tue Sep 10, 2002 2:37 am</p><hr />
]]></content>
	</entry>
	</feed>
