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

	<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>2004-09-22T01:56:36-04:00</updated>

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

		<entry>
		<author><name><![CDATA[metroid]]></name></author>
		<updated>2004-09-22T01:56:36-04:00</updated>

		<published>2004-09-22T01:56:36-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=41123#p41123</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=41123#p41123"/>
		<title type="html"><![CDATA[Ignore when being flooded]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=41123#p41123"><![CDATA[
Talk about digging up old topics.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5078">metroid</a> — Wed Sep 22, 2004 1:56 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[awyeah]]></name></author>
		<updated>2004-09-21T21:12:51-04:00</updated>

		<published>2004-09-21T21:12:51-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=41117#p41117</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=41117#p41117"/>
		<title type="html"><![CDATA[Ignore when being flooded]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=41117#p41117"><![CDATA[
Well this code will work the same as flood-msg internal bot's bind. Ofcourse it would not exempt certain ip's such as your service's hosts or etc if you use flood-msg but don't use this procedure with it. Then for this you would want to bind flud to that event and then make your custom procedure as you like.<br><div class="codebox"><p>Code: </p><pre><code>proc general:msgflood {nick uhost hand type chan} {  global botnick serviceshost ignoretime   if {(![string match -nocase *$serviceshost* $uhost])} {   newignore "*!*@[lindex [split $uhost @] 1]" general:flood "MSG Flooder" $ignoretime   }  return 1 }</code></pre></div>As for the channel flood protection one, use the pub event that would do it.<br>bind flud - pub my:proc<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4875">awyeah</a> — Tue Sep 21, 2004 9:12 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[qwek]]></name></author>
		<updated>2004-09-21T08:55:03-04:00</updated>

		<published>2004-09-21T08:55:03-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=41084#p41084</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=41084#p41084"/>
		<title type="html"><![CDATA[Ignore when being flooded]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=41084#p41084"><![CDATA[
<blockquote class="uncited"><div>Here is something you can try if you don't want<br>to load tcl scripts.<br><br>A small code uses the bots internal<br>flood detection system.<br><div class="codebox"><p>Code: </p><pre><code>#Set here how many msgs in how many seconds from one host #constitutes a flood. If you set this to 0:0, msg flood protection will be #disabled. (This variable can be set from your bots .conf file aswell)set flood-msg 3:8#Set your networks services host here. (These hosts will be exempted)#I've set this to default for DALnet's services.set serviceshost "dal.net"#Set the time in minutes to ignore the flooder for.set ignoretime "15"global flood-msgbind flud - msg general:msgfloodproc general:msgflood {nick uhost hand type chan} { global botnick serviceshost ignoretime  if {(![string match -nocase *$uhost* *$serviceshost*])} {  set userhost "*!*@[lindex [split $uhost @] 1]"  newignore $userhost general:flood "MSG Flooder" $ignoretime  } return 1}</code></pre></div></div></blockquote>it's work <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><br>the first you must to know is what proc and bind you want to use, after that finish you can add awyeah code inside. set ignoretime 1:5 if you scared flood msg on to your bot <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=5465">qwek</a> — Tue Sep 21, 2004 8:55 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[awyeah]]></name></author>
		<updated>2004-06-23T10:06:18-04:00</updated>

		<published>2004-06-23T10:06:18-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=37755#p37755</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=37755#p37755"/>
		<title type="html"><![CDATA[Ignore when being flooded]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=37755#p37755"><![CDATA[
Hmm... good question. I haven't tested it on public channels.<br>But I know it works in private query messages, as I've tested it there.<br><br>You can check it, otherwise they are alot of scripts out there<br>which perform this. <br><br>Some such as sentinel.tcl have this feature. For bot msg/ctcp<br>floods in privates as well as channels.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4875">awyeah</a> — Wed Jun 23, 2004 10:06 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[metroid]]></name></author>
		<updated>2004-06-23T06:28:49-04:00</updated>

		<published>2004-06-23T06:28:49-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=37747#p37747</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=37747#p37747"/>
		<title type="html"><![CDATA[Ignore when being flooded]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=37747#p37747"><![CDATA[
Does this also ignore people that flood the bot with commands in a public channel?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5078">metroid</a> — Wed Jun 23, 2004 6:28 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[awyeah]]></name></author>
		<updated>2004-07-14T07:36:38-04:00</updated>

		<published>2004-06-23T01:53:01-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=37730#p37730</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=37730#p37730"/>
		<title type="html"><![CDATA[Ignore when being flooded]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=37730#p37730"><![CDATA[
Here is something you can try if you don't want<br>to load tcl scripts.<br><br>A small code uses the bots internal<br>flood detection system.<br><div class="codebox"><p>Code: </p><pre><code>#Set here how many msgs in how many seconds from one host #constitutes a flood. If you set this to 0:0, msg flood protection will be #disabled. (This variable can be set from your bots .conf file aswell)set flood-msg 3:8#Set your networks services host here. (These hosts will be exempted)#I've set this to default for DALnet's services.set serviceshost "dal.net"#Set the time in minutes to ignore the flooder for.set ignoretime "15"global flood-msgbind flud - msg general:msgfloodproc general:msgflood {nick uhost hand type chan} { global botnick serviceshost ignoretime  if {(![string match -nocase *$uhost* *$serviceshost*])} {  set userhost "*!*@[lindex [split $uhost @] 1]"  newignore $userhost general:flood "MSG Flooder" $ignoretime  } return 1}</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4875">awyeah</a> — Wed Jun 23, 2004 1:53 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Alchera]]></name></author>
		<updated>2004-06-22T17:10:06-04:00</updated>

		<published>2004-06-22T17:10:06-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=37714#p37714</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=37714#p37714"/>
		<title type="html"><![CDATA[Ignore when being flooded]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=37714#p37714"><![CDATA[
Check out <a href="http://mc.purehype.net/" class="postlink">MC_8's</a> page for a spam check script.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3646">Alchera</a> — Tue Jun 22, 2004 5:10 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[metroid]]></name></author>
		<updated>2004-06-22T13:55:36-04:00</updated>

		<published>2004-06-22T13:55:36-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=37705#p37705</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=37705#p37705"/>
		<title type="html"><![CDATA[Ignore when being flooded]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=37705#p37705"><![CDATA[
Yes, well the thing is, My bot isnt an op in all the channels :\ as its a bot called "Sheepbot" which has things like the Quakenet fishbot, <br>But its not only a repeat thing<br><br>If someone uses more than one command it also has to ignore that person if 5 commands are being used within the minute. For example:<br><br>&lt;*NICK*&gt; hide! <br>* *BOTNICK* quickly hides behind the box <br>&lt;*NICK*&gt; hide! <br>* *BOTNICK* quickly hides behind the box <br>&lt;*NICK*&gt; hide! <br>* *BOTNICK* quickly hides behind the box <br>&lt;*NICK*&gt; hide! <br>* *BOTNICK* quickly hides behind the box <br>&lt;*NICK*&gt; hide! <br>&lt;BOTNICK&gt; Flood detected from *NICK*, Now ignoring *NICK* for 15 minutes <br><br>But also,<br><br>&lt;*NICK*&gt; omg <br>&lt;*BOTNICK*&gt; Oh My God! <br>&lt;*NICK*&gt; stfu<br>&lt;*BOTNICK*&gt; I will not!<br>&lt;*NICK*&gt; hide! <br>* *BOTNICK* quickly hides behind the box <br>&lt;*NICK*&gt; sheep<br>&lt;*BOTNICK*&gt; *NICK*: sheep go meh! <br>&lt;*NICK*&gt; cake<br>&lt;BOTNICK&gt; Flood detected from *NICK*, Now ignoring *NICK* for 15 minutes <br><br>If you catch my drift, Once again i say, The bot is not always opped. (maybe 2 out of 20 channels :\)<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5078">metroid</a> — Tue Jun 22, 2004 1:55 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[greenbear]]></name></author>
		<updated>2004-06-22T11:27:01-04:00</updated>

		<published>2004-06-22T11:27:01-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=37698#p37698</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=37698#p37698"/>
		<title type="html"><![CDATA[Ignore when being flooded]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=37698#p37698"><![CDATA[
Here's a selection of scripts that will deal with repeat floods:<br><a href="http://www.egghelp.org/tclhtml/3478-4-0-0-1-repeat.htm" class="postlink">http://www.egghelp.org/tclhtml/3478-4-0-0-1-repeat.htm</a><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=24">greenbear</a> — Tue Jun 22, 2004 11:27 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[metroid]]></name></author>
		<updated>2004-06-22T08:14:07-04:00</updated>

		<published>2004-06-22T08:14:07-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=37696#p37696</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=37696#p37696"/>
		<title type="html"><![CDATA[Ignore when being flooded]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=37696#p37696"><![CDATA[
Can someone make a script where when the eggdrop is being flooded it will ignore that person for 15 minutes, It has to be ignoring everything then, Like when someone says a trigger, for example:<br><br>&lt;*NICK*&gt; hide!<br>* *BOTNICK* quickly hides behind the box<br><br>Then if spammed,<br><br>&lt;*NICK*&gt; hide!<br>* *BOTNICK* quickly hides behind the box<br>&lt;*NICK*&gt; hide!<br>* *BOTNICK* quickly hides behind the box<br>&lt;*NICK*&gt; hide!<br>* *BOTNICK* quickly hides behind the box<br>&lt;*NICK*&gt; hide!<br>* *BOTNICK* quickly hides behind the box<br>&lt;*NICK*&gt; hide!<br>&lt;BOTNICK&gt; Flood detected from *NICK*, Now ignoring *NICK* for 15 minutes<br><br>Is it possible for someone to do that? It has to be universal, that it doesnt just ignore on some things.<br><br>If someone could make this it would be great <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_biggrin.gif" width="15" height="15" alt=":D" title="Very Happy"> (Don't reply saying i should make it myself as i tried <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=5078">metroid</a> — Tue Jun 22, 2004 8:14 am</p><hr />
]]></content>
	</entry>
	</feed>
