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

	<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-03-10T08:40:25-04:00</updated>

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

		<entry>
		<author><name><![CDATA[ZeleD]]></name></author>
		<updated>2004-03-10T08:40:25-04:00</updated>

		<published>2004-03-10T08:40:25-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=34408#p34408</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=34408#p34408"/>
		<title type="html"><![CDATA[Re: The script!]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=34408#p34408"><![CDATA[
<blockquote class="uncited"><div><blockquote class="uncited"><div>if {$type == "pub"} {</div></blockquote>Sorry, my mistake.</div></blockquote>No problem m8.... Found the error..... Still, you get the credit for the main thing<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4171">ZeleD</a> — Wed Mar 10, 2004 8:40 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Xpert]]></name></author>
		<updated>2004-03-10T07:19:39-04:00</updated>

		<published>2004-03-10T07:19:39-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=34406#p34406</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=34406#p34406"/>
		<title type="html"><![CDATA[Re: The script!]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=34406#p34406"><![CDATA[
<blockquote class="uncited"><div>if {$type == "pub"} {</div></blockquote>Sorry, my mistake.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4667">Xpert</a> — Wed Mar 10, 2004 7:19 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ZeleD]]></name></author>
		<updated>2004-03-10T05:28:25-04:00</updated>

		<published>2004-03-10T05:28:25-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=34404#p34404</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=34404#p34404"/>
		<title type="html"><![CDATA[The script!]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=34404#p34404"><![CDATA[
Should anyone need such a script I will post here as the one posted by xpert was faulty.<br><br># Enter channels list <br>set channels [list "channel" "channel"] <br><br>bind flud - * flooded<br><br>proc flooded {nick uhost handle type channel} {<br>        global channels<br>        set chan [string tolower $channel]<br>        if {$type == "pub"} {<br>                putlog "MESSAGE FLOOD DETECTED: $chan"<br>                set sres [lsearch $channels $chan]<br>                if {$sres != 1} {<br>                        putserv "MODE $channel +b $uhost"<br>                        putkick $channel $nick "5 Mins ban: Message flooder"<br>                        timer 5 [list putserv "MODE $chan -b $uhost"]<br>                        return 1<br>                }<br>        }<br>}<br><br><br>putlog "Flood Banner 1.0 loaded"<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4171">ZeleD</a> — Wed Mar 10, 2004 5:28 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ZeleD]]></name></author>
		<updated>2004-03-10T04:38:24-04:00</updated>

		<published>2004-03-10T04:38:24-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=34403#p34403</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=34403#p34403"/>
		<title type="html"><![CDATA[Ban flooders ?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=34403#p34403"><![CDATA[
<blockquote class="uncited"><div>and setting  <strong class="text-strong">set ban-time 5</strong> in the conf file wouldn't do this exact thing, without the need for the script, as you originally asked?</div></blockquote>No, as the bot only kicks the user<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4171">ZeleD</a> — Wed Mar 10, 2004 4:38 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[YooHoo]]></name></author>
		<updated>2004-03-10T00:36:57-04:00</updated>

		<published>2004-03-10T00:36:57-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=34398#p34398</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=34398#p34398"/>
		<title type="html"><![CDATA[Ban flooders ?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=34398#p34398"><![CDATA[
and setting  <strong class="text-strong">set ban-time 5</strong> in the conf file wouldn't do this exact thing, without the need for the script, as you originally asked?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2706">YooHoo</a> — Wed Mar 10, 2004 12:36 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Xpert]]></name></author>
		<updated>2004-03-09T11:08:00-04:00</updated>

		<published>2004-03-09T11:08:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=34386#p34386</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=34386#p34386"/>
		<title type="html"><![CDATA[Ban flooders ?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=34386#p34386"><![CDATA[
Your welcome <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_razz.gif" width="15" height="15" alt=":P" title="Razz"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4667">Xpert</a> — Tue Mar 09, 2004 11:08 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ZeleD]]></name></author>
		<updated>2004-03-09T10:53:28-04:00</updated>

		<published>2004-03-09T10:53:28-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=34385#p34385</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=34385#p34385"/>
		<title type="html"><![CDATA[Ban flooders ?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=34385#p34385"><![CDATA[
Thanks alot m8.<br><br>You just spared me a great time<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4171">ZeleD</a> — Tue Mar 09, 2004 10:53 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Xpert]]></name></author>
		<updated>2004-03-09T09:40:59-04:00</updated>

		<published>2004-03-09T09:40:59-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=34381#p34381</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=34381#p34381"/>
		<title type="html"><![CDATA[Ban flooders ?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=34381#p34381"><![CDATA[
<blockquote class="uncited"><div>FLUD (stackable)<br>         bind flud &lt;flags&gt; &lt;type&gt; &lt;proc&gt;<br>         procname &lt;nick&gt; &lt;user@host&gt; &lt;handle&gt; &lt;type&gt; &lt;channel&gt;<br><br>         Description: any floods detected through the flood control settings<br>           (like 'flood-ctcp') are sent here before processing. If the proc<br>           returns 1, no further action is taken on the flood; if the proc<br>           returns 0, the bot will do its normal "punishment" for the flood.<br>           The flood types are: pub, msg, join, or ctcp (and can be masked to<br>           "*" for the bind); flags are ignored.<br>         Module: server</div></blockquote>Example:<div class="codebox"><p>Code: </p><pre><code>bind flud - * chat:floodproc chat:flood {nick host hand type chan} {  if {$type == "msg"} {    putserv "MODE $chan +b $host"    putserv "KICK $chan $nick :Flooding."    return 1  } }</code></pre></div><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=4667">Xpert</a> — Tue Mar 09, 2004 9:40 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ZeleD]]></name></author>
		<updated>2004-03-09T08:17:17-04:00</updated>

		<published>2004-03-09T08:17:17-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=34380#p34380</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=34380#p34380"/>
		<title type="html"><![CDATA[Great!]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=34380#p34380"><![CDATA[
<blockquote class="uncited"><div>Well, for that i think you need a TCL script.</div></blockquote>Okay, thought so....<br><br>any clues on how to detect the flooding event ?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4171">ZeleD</a> — Tue Mar 09, 2004 8:17 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Xpert]]></name></author>
		<updated>2004-03-09T07:28:28-04:00</updated>

		<published>2004-03-09T07:28:28-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=34379#p34379</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=34379#p34379"/>
		<title type="html"><![CDATA[Ban flooders ?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=34379#p34379"><![CDATA[
Well, for that i think you need a TCL script.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4667">Xpert</a> — Tue Mar 09, 2004 7:28 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ZeleD]]></name></author>
		<updated>2004-03-08T17:02:35-04:00</updated>

		<published>2004-03-08T17:02:35-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=34367#p34367</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=34367#p34367"/>
		<title type="html"><![CDATA[Ban flooders ?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=34367#p34367"><![CDATA[
Well yes.<br><br>I have <br><br>.chanset #channel 5:20 <br><br>This way users sending 5 or more messages will kick the user.....<br><br>But I want the user banned for 5 minutes.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4171">ZeleD</a> — Mon Mar 08, 2004 5:02 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Xpert]]></name></author>
		<updated>2004-03-08T13:17:18-04:00</updated>

		<published>2004-03-08T13:17:18-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=34364#p34364</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=34364#p34364"/>
		<title type="html"><![CDATA[Ban flooders ?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=34364#p34364"><![CDATA[
I think <div class="codebox"><p>Code: </p><pre><code>.chanset #channel flood-chan 10:60</code></pre></div> is what you are meaning to.<br><blockquote class="uncited"><div># flood-chan 10:60<br>#    Set here how many channel messages in how many seconds from one<br>#    host constitutes a flood. Setting this to 0 or 0:0 disables<br>#    flood protection for the channel.</div></blockquote>Try that <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_razz.gif" width="15" height="15" alt=":P" title="Razz"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4667">Xpert</a> — Mon Mar 08, 2004 1:17 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ZeleD]]></name></author>
		<updated>2004-03-08T11:40:04-04:00</updated>

		<published>2004-03-08T11:40:04-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=34361#p34361</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=34361#p34361"/>
		<title type="html"><![CDATA[Ban flooders ?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=34361#p34361"><![CDATA[
Is there a way ban flooders without scripting ?<br><br>I want to temp. ban users who violate my flooding settings.<br><br>I know theres severel scripts out there, but as I tend to use my own scripts (that way I know why it fails  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_evil.gif" width="15" height="15" alt=":evil:" title="Evil or Very Mad"> ) and want to know if it can be done without scripting<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4171">ZeleD</a> — Mon Mar 08, 2004 11:40 am</p><hr />
]]></content>
	</entry>
	</feed>
