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

	<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-02-02T12:04:02-04:00</updated>

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

		<entry>
		<author><name><![CDATA[caesar]]></name></author>
		<updated>2004-02-02T12:04:02-04:00</updated>

		<published>2004-02-02T12:04:02-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=33177#p33177</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=33177#p33177"/>
		<title type="html"><![CDATA[on connect akill the bad nick]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=33177#p33177"><![CDATA[
CrazyCat : well, duh! he pasted the local client connection:<blockquote class="uncited"><div>-irc[dot]server[dot]com- *** Notice -- Client connecting on port 6667: adopav (~poqvds@202.165.253.12) [clients] </div></blockquote><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=187">caesar</a> — Mon Feb 02, 2004 12:04 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2004-02-02T07:06:21-04:00</updated>

		<published>2004-02-02T07:06:21-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=33175#p33175</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=33175#p33175"/>
		<title type="html"><![CDATA[on connect akill the bad nick]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=33175#p33175"><![CDATA[
<blockquote class="uncited"><div>Take care, this will work only on local server, the message isn't the same if you have more than 1 server and if the bad client connects to a different server than where the bot is connected. <br>You'd better check for Client connecting </div></blockquote>Ok I Understand.<br><br>Akill command will be like this maybe<br><div class="codebox"><p>Code: </p><pre><code>set banmask *!*@[lindex [split $from @] 1] putserv "PRIVMSG OperServ :AKILL ADD +30d $banmask :BadNick" </code></pre></div>But i don't know howto whois and detect bad realname and bad ident<br><br>can u write the full code plz <br><br>actually i wanted something what can detect the flood bot nick ident or realname auto and akill them on connect <br><br>have a look at <a href="http://forum.egghelp.org/viewtopic.php?t=6756" class="postlink">http://forum.egghelp.org/viewtopic.php?t=6756</a><br><br>Thanks for helping me <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 — Mon Feb 02, 2004 7:06 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[CrazyCat]]></name></author>
		<updated>2004-02-02T04:19:49-04:00</updated>

		<published>2004-02-02T04:19:49-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=33170#p33170</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=33170#p33170"/>
		<title type="html"><![CDATA[on connect akill the bad nick]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=33170#p33170"><![CDATA[
<blockquote class="uncited"><div>Thanks alot for this code and can you tell me how i can banned bad ident and real name same way  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_wink.gif" width="15" height="15" alt=":wink:" title="Wink"> </div></blockquote>Perform a /whois $nick and then parse raw 311:<br><strong class="text-strong">311     RPL_WHOISUSER<br>"&lt;nick&gt; &lt;user&gt; &lt;host&gt; * :&lt;real name&gt;"</strong><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=691">CrazyCat</a> — Mon Feb 02, 2004 4:19 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[CrazyCat]]></name></author>
		<updated>2004-02-02T04:16:33-04:00</updated>

		<published>2004-02-02T04:16:33-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=33169#p33169</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=33169#p33169"/>
		<title type="html"><![CDATA[on connect akill the bad nick]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=33169#p33169"><![CDATA[
<blockquote class="uncited"><div><div class="codebox"><p>Code: </p><pre><code>set akillnicks {  "nick1"  "nick2"  "nick3"  "etc."}bind raw - NOTICE client:connectproc client:connect {from keyword args} {  global akillnicks  if {[string match "*Client connecting on port*" $args]} {    set usernick [lindex [split $args] 9]    foreach nick $akillnicks {      if {[string equal -nocase $nick $usernick]} {        # your akill thing here        break      }    }  }}</code></pre></div></div></blockquote>Take care, this will work only on local server, the message isn't the same if you have more than 1 server and if the bad client connects to a different server than where the bot is connected.<br>You'd better check for <strong class="text-strong">Client connecting</strong><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=691">CrazyCat</a> — Mon Feb 02, 2004 4:16 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2004-02-02T01:12:35-04:00</updated>

		<published>2004-02-02T01:12:35-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=33167#p33167</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=33167#p33167"/>
		<title type="html"><![CDATA[on connect akill the bad nick]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=33167#p33167"><![CDATA[
Thanks alot for this code and can you tell me how i can banned bad ident and real name same way  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_wink.gif" width="15" height="15" alt=":wink:" title="Wink"> <br><br><br>Thanks<p>Statistics: Posted by Guest — Mon Feb 02, 2004 1:12 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[caesar]]></name></author>
		<updated>2004-02-01T16:20:38-04:00</updated>

		<published>2004-02-01T16:20:38-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=33154#p33154</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=33154#p33154"/>
		<title type="html"><![CDATA[on connect akill the bad nick]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=33154#p33154"><![CDATA[
try this:<div class="codebox"><p>Code: </p><pre><code>set akillnicks {  "nick1"  "nick2"  "nick3"  "etc."}bind raw - NOTICE client:connectproc client:connect {from keyword args} {  global akillnicks  if {[string match "*Client connecting on port*" $args]} {    set usernick [lindex [split $args] 9]    foreach nick $akillnicks {      if {[string equal -nocase $nick $usernick]} {        # your akill thing here        break      }    }  }}</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=187">caesar</a> — Sun Feb 01, 2004 4:20 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2004-02-01T15:15:36-04:00</updated>

		<published>2004-02-01T15:15:36-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=33145#p33145</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=33145#p33145"/>
		<title type="html"><![CDATA[on connect akill the bad nick]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=33145#p33145"><![CDATA[
is there any tcl for on connect akill for the bad nick?<br>or what will be the code to on connect?<br><br>like:<br><br>-irc[dot]server[dot]com- *** Notice -- Client connecting on port 6667: adopav (~poqvds@202.165.253.12) [clients] <br>-<br>-irc[dot]server[dot]com- *** Global -- from OperServ: BOT added an AKILL for *@202.165.253.12 ([BOT] Badnick) (expires in 69 days)<br><br>Thanks<p>Statistics: Posted by Guest — Sun Feb 01, 2004 3:15 pm</p><hr />
]]></content>
	</entry>
	</feed>
