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

	<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>2008-06-23T18:58:24-04:00</updated>

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

		<entry>
		<author><name><![CDATA[strikelight]]></name></author>
		<updated>2008-06-23T18:58:24-04:00</updated>

		<published>2008-06-23T18:58:24-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=83702#p83702</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=83702#p83702"/>
		<title type="html"><![CDATA[Looking for little script here.]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=83702#p83702"><![CDATA[
<blockquote class="uncited"><div><div class="codebox"><p>Code: </p><pre><code>bind mode - "* +b*" check:ban</code></pre></div>Might want to bind the mode to a +b (ban) rather than a -b (unban).  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_wink.gif" width="15" height="15" alt=":wink:" title="Wink"></div></blockquote>Good catch ;x<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2005">strikelight</a> — Mon Jun 23, 2008 6:58 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[speechles]]></name></author>
		<updated>2008-06-23T11:26:25-04:00</updated>

		<published>2008-06-23T11:26:25-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=83699#p83699</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=83699#p83699"/>
		<title type="html"><![CDATA[Looking for little script here.]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=83699#p83699"><![CDATA[
<blockquote class="uncited"><div>for the code above where i can put the ips ?</div></blockquote>Huh? You don't. The script checks if the ban will affect 1 user, and in this case does nothing. Or if it will affect more than 1, will remove the ban, and then remove the channel key with your message. There is no need to tailor a thing.<div class="codebox"><p>Code: </p><pre><code>bind mode - "* +b*" check:ban</code></pre></div>Might want to bind the mode to a +b (ban) rather than a -b (unban).  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_wink.gif" width="15" height="15" alt=":wink:" title="Wink"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8138">speechles</a> — Mon Jun 23, 2008 11:26 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[yD^]]></name></author>
		<updated>2008-06-23T04:07:04-04:00</updated>

		<published>2008-06-23T04:07:04-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=83696#p83696</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=83696#p83696"/>
		<title type="html"><![CDATA[Looking for little script here.]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=83696#p83696"><![CDATA[
Thank you guys for your support,<br><br>but the +e won't let the op banned the nick or the ident and when you banned the nick or ident the user can join as he is not banned ever,<br>so if the bot unbanned the isp and sending notice the ops will banned the nick ,.<br>so i don't need the +e...<br><br>for the code above where i can put the ips ?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9215">yD^</a> — Mon Jun 23, 2008 4:07 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[strikelight]]></name></author>
		<updated>2008-06-22T23:01:03-04:00</updated>

		<published>2008-06-22T23:01:03-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=83692#p83692</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=83692#p83692"/>
		<title type="html"><![CDATA[Looking for little script here.]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=83692#p83692"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code>bind mode - "* -b*" check:banproc check:ban {nick uhost hand chan mode dest} {  set bancount 0  foreach user [chanlist $chan] {    if {[string match $dest *![getchanhost $nick]]} {      incr bancount      if {$bancount &gt; 1} { break }    }  }    if {$bancount &gt; 1} {    putquick "MODE $chan -bk $dest PROTECTED.IP"  }}</code></pre></div>.. untested ..<br><br>edit: yea, exemptions would be better, if you know the nicks/ips you want exempted... otherwise, exemptions won't work i guess...<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2005">strikelight</a> — Sun Jun 22, 2008 11:01 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[speechles]]></name></author>
		<updated>2008-06-22T22:43:28-04:00</updated>

		<published>2008-06-22T22:43:28-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=83691#p83691</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=83691#p83691"/>
		<title type="html"><![CDATA[Looking for little script here.]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=83691#p83691"><![CDATA[
<blockquote class="uncited"><div>Hello again.<br><br>Then what about just unaband the ip and sending notice to the op who banned the ip to banned the nick not the ip.<br>example:-<br><br>&lt;op&gt; sets mode: +b *!*@212.43.12.10 <br>&lt;Bot&gt;sets mode: -bk *!*f@212.43.12.10 Protected.ISP <br>Then sending the notice to the op nick to banned the nick not the ip</div></blockquote>Why not just set exempts for your users you wish to evade those global types of bans?<br>/mode +e nick!ident@host<br>Doesn't your network support exemptions? So for example, take below:<br>/mode +e *!*@78.89.*.* <br>/mode +e *!*@212.43.*.* <br>The problem with this, eggdrop might freak out and not realize why people can evade that ban. It will assume anarchy is reigning and it can't keep control, so will set +mi and try to kick everyone for massive join floods. But if set up properly, eggdrop will respect that exempt list. As a result, seeing the user rejoin after they kick/banned them, the op setting that ban will of course next ban the nickname, exactly as you desire.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8138">speechles</a> — Sun Jun 22, 2008 10:43 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[yD^]]></name></author>
		<updated>2008-06-22T20:17:29-04:00</updated>

		<published>2008-06-22T20:17:29-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=83689#p83689</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=83689#p83689"/>
		<title type="html"><![CDATA[Looking for little script here.]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=83689#p83689"><![CDATA[
Hello again.<br><br>Then what about just unaband the ip and sending notice to the op who banned the ip to banned the nick not the ip.<br>example:-<br><br>&lt;op&gt; sets mode: +b *!*@212.43.12.10 <br>&lt;Bot&gt;sets mode: -bk *!*f@212.43.12.10 Protected.ISP <br>Then sending the notice to the op nick to banned the nick not the ip<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9215">yD^</a> — Sun Jun 22, 2008 8:17 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[strikelight]]></name></author>
		<updated>2008-06-19T11:43:16-04:00</updated>

		<published>2008-06-19T11:43:16-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=83641#p83641</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=83641#p83641"/>
		<title type="html"><![CDATA[Looking for little script here.]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=83641#p83641"><![CDATA[
If there are many users on the same ip, how is the bot to know which nick to use in the nickban?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2005">strikelight</a> — Thu Jun 19, 2008 11:43 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[yD^]]></name></author>
		<updated>2008-06-19T10:37:17-04:00</updated>

		<published>2008-06-19T10:37:17-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=83640#p83640</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=83640#p83640"/>
		<title type="html"><![CDATA[Looking for little script here.]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=83640#p83640"><![CDATA[
Hello,<br><br>this is the idea:<br><br>there is many of users useing the same ip from the same isp. so when my ops banned the user there is alot of users can't join the channel and the filter band will kick more than 1 user. so what am looking for is when the ops banned the isp range of user the bot will delete the ip from ban list and the bot banned the nick not the ip for example:<br><br>the range of isp is: 1- @78.89.*.*  2-@212.43.*.* .. etc<br><br>&lt;op&gt; sets mode: +b *!*@212.43.12.10<br>&lt;Bot&gt;sets mode: +b-bk nick!*@* *!*f@212.43.12.10 Protected.ISP<br><br>Hope it's clear and help many of users not only me..<br><br>My best regards.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9215">yD^</a> — Thu Jun 19, 2008 10:37 am</p><hr />
]]></content>
	</entry>
	</feed>
