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

	<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-04-30T08:32:47-04:00</updated>

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

		<entry>
		<author><name><![CDATA[Sir_Fz]]></name></author>
		<updated>2006-04-30T08:32:47-04:00</updated>

		<published>2006-04-30T08:32:47-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=62490#p62490</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=62490#p62490"/>
		<title type="html"><![CDATA[A bot's flood protection]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=62490#p62490"><![CDATA[
<strong class="text-strong">putdccraw</strong> can be a solution as well. It sends the command directly to the server without using the eggdrop queue.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3085">Sir_Fz</a> — Sun Apr 30, 2006 8:32 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[blinky]]></name></author>
		<updated>2006-04-30T03:58:55-04:00</updated>

		<published>2006-04-30T03:58:55-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=62489#p62489</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=62489#p62489"/>
		<title type="html"><![CDATA[A bot's flood protection]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=62489#p62489"><![CDATA[
thanks a lot dragnlord. i found a patch on google but page 2 :[. it worked though. i post it here if anyone wants to use it.<br><div class="codebox"><p>Code: </p><pre><code>--- eggdrop-1.6.15/src/mod/server.mod/server.c.old2004-01-01 22:33:47.112948000 -0500+++ eggdrop-1.6.15/src/mod/server.mod/server.c2004-01-01 22:33:57.329394864 -0500@@ -120,7 +120,7 @@  * lower this value at your own risk.  ircd is known to start flood control  * at 512 bytes/2 seconds.  */-#define msgrate 2+#define msgrate 0  /* Maximum messages to store in each queue. */ static int maxqmsg;@@ -151,17 +151,17 @@   int ok = 0;    /* now &lt; last_time tested 'cause clock adjustments could mess it up */-  if ((now - last_time) &gt;= msgrate || now &lt; (last_time - 90)) {+  /* if ((now - last_time) &gt;= msgrate || now &lt; (last_time - 90)) { */     last_time = now;     if (burst &gt; 0)       burst--;     ok = 1;-  }+  /* } */   if (serv &lt; 0)     return;   /* Send upto 4 msgs to server if the *critical queue* has anything in it */   if (modeq.head) {-    while (modeq.head &amp;&amp; (burst &lt; 4) &amp;&amp; ((last_time - now) &lt; MAXPENALTY)) {+    while (modeq.head &amp;&amp; (burst &lt; 4)/* &amp;&amp; ((last_time - now) &lt; MAXPENALTY) */) {       if (deq_kick(DP_MODE)) {         burst++;         continue;@@ -924,7 +924,7 @@     }   } -  if (which == DP_MODE || which == DP_MODE_NEXT)+  /* if (which == DP_MODE || which == DP_MODE_NEXT) */     deq_msg(); /* DP_MODE needs to be sent ASAP, flush if possible. */ } </code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7697">blinky</a> — Sun Apr 30, 2006 3:58 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[DragnLord]]></name></author>
		<updated>2006-04-26T20:07:21-04:00</updated>

		<published>2006-04-26T20:07:21-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=62397#p62397</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=62397#p62397"/>
		<title type="html"><![CDATA[A bot's flood protection]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=62397#p62397"><![CDATA[
try searching for 'queue' and 'msgrate'<br><blockquote class="uncited"><div>i have everything on putquick</div></blockquote>-next is in the docs<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4461">DragnLord</a> — Wed Apr 26, 2006 8:07 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[blinky]]></name></author>
		<updated>2006-04-26T19:46:08-04:00</updated>

		<published>2006-04-26T19:46:08-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=62396#p62396</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=62396#p62396"/>
		<title type="html"><![CDATA[A bot's flood protection]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=62396#p62396"><![CDATA[
editing the source shouldnt be a problem. can you hint me some places where it is discussed or what to search. every time i search bot flood or whatever i get the channel flood protections. also i cant find -next, what is that?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7697">blinky</a> — Wed Apr 26, 2006 7:46 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[DragnLord]]></name></author>
		<updated>2006-04-26T19:30:55-04:00</updated>

		<published>2006-04-26T19:30:55-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=62395#p62395</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=62395#p62395"/>
		<title type="html"><![CDATA[A bot's flood protection]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=62395#p62395"><![CDATA[
other then using the -next option, to get faster message rates you would have to edit the source code (discussed in other topics)<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4461">DragnLord</a> — Wed Apr 26, 2006 7:30 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[blinky]]></name></author>
		<updated>2006-04-26T19:13:39-04:00</updated>

		<published>2006-04-26T19:13:39-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=62394#p62394</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=62394#p62394"/>
		<title type="html"><![CDATA[A bot's flood protection]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=62394#p62394"><![CDATA[
i have everything on putquick but it still had a 2 second delay on every line after the first 3<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7697">blinky</a> — Wed Apr 26, 2006 7:13 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[DragnLord]]></name></author>
		<updated>2006-04-26T19:10:34-04:00</updated>

		<published>2006-04-26T19:10:34-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=62393#p62393</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=62393#p62393"/>
		<title type="html"><![CDATA[A bot's flood protection]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=62393#p62393"><![CDATA[
look at the docs for 'putquick'<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4461">DragnLord</a> — Wed Apr 26, 2006 7:10 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[blinky]]></name></author>
		<updated>2006-04-26T19:08:28-04:00</updated>

		<published>2006-04-26T19:08:28-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=62392#p62392</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=62392#p62392"/>
		<title type="html"><![CDATA[A bot's flood protection]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=62392#p62392"><![CDATA[
Is there a way to allow the bot to send messages as fast as possible. I have the bot on my network on it's own server that has it's sendq disabled so it won't flood out if it tries to send messages to fast and i want to to be able to notice very fast. Thanks. i hope you understand what im trying to say <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=7697">blinky</a> — Wed Apr 26, 2006 7:08 pm</p><hr />
]]></content>
	</entry>
	</feed>
