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

	<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>2001-11-24T21:11:00-04:00</updated>

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

		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2001-11-24T21:11:00-04:00</updated>

		<published>2001-11-24T21:11:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=2008#p2008</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=2008#p2008"/>
		<title type="html"><![CDATA[!!! OVER MAXIMUM SERVER QUEUE]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=2008#p2008"><![CDATA[
thanks for the fast reply, too bad im running a bot an bahamut. do you think /who $nick will work?<br><p>Statistics: Posted by Guest — Sat Nov 24, 2001 9:11 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Petersen]]></name></author>
		<updated>2001-11-24T20:45:00-04:00</updated>

		<published>2001-11-24T20:45:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=2006#p2006</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=2006#p2006"/>
		<title type="html"><![CDATA[!!! OVER MAXIMUM SERVER QUEUE]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=2006#p2006"><![CDATA[
at the moment you have the bot sending WHOIS $nick to the server every time someone joins the chan. This will throw back at the minimum 4 lines of response (server numerics 311, 312, 317 and 318). However, if you just did a WHO $nick, it will only respond with 1 line (numeric 315), which contains the realname info (assuming of course you ain't running on a broken ircd such as bahamut)<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=60">Petersen</a> — Sat Nov 24, 2001 8:45 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2001-11-24T19:31:00-04:00</updated>

		<published>2001-11-24T19:31:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=2003#p2003</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=2003#p2003"/>
		<title type="html"><![CDATA[!!! OVER MAXIMUM SERVER QUEUE]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=2003#p2003"><![CDATA[
but doing /who on 1000+ user chan can make the bot sendQ exceed, i have try to make a script that using who command to scan the real name every 1 hours and its makes the bot  disconnected from a server, SendQ exceed.<br><p>Statistics: Posted by Guest — Sat Nov 24, 2001 7:31 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Petersen]]></name></author>
		<updated>2001-11-24T13:47:00-04:00</updated>

		<published>2001-11-24T13:47:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=1985#p1985</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=1985#p1985"/>
		<title type="html"><![CDATA[!!! OVER MAXIMUM SERVER QUEUE]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=1985#p1985"><![CDATA[
Eggdrop has an internal queing system, and by default this is set to 300 messages per queue. You can increase this by changing the value of max-queue-msg in your conf. However, the fact that this is filling up anyway causes concern. A 300 message server queue takes something like half an hour to empty assuming nothing new is added. People are obviously joining the chan faster than your bot can whois them (btw, using who instead of whois would be better as its less irrelivent text sent back).<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=60">Petersen</a> — Sat Nov 24, 2001 1:47 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2001-11-24T12:22:00-04:00</updated>

		<published>2001-11-24T12:22:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=1982#p1982</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=1982#p1982"/>
		<title type="html"><![CDATA[!!! OVER MAXIMUM SERVER QUEUE]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=1982#p1982"><![CDATA[
i have make a tcl script to detect a bad real name of the user using raw command.<br><div class="codebox"><p>Code: </p><pre><code>set chantocheck "#bandung"bind JOIN - * banuser:joinbind raw - 311 banuser:responseproc banuser:join {nick uhost handle channel} {  global chantocheck  set channel [string tolower $channel]  set matchpattern "*$channel*"  if {[string match $matchpattern $chantocheck] == 1} {    putserv "WHOIS $nick"    return 0  } else {    return 0  }}proc banuser:response {from key arg} {global chantocheckset fnick [lindex [split $arg] 1]set fusername [lindex [split $arg] 2]set fhostname [lindex [split $arg] 3]set frealname [string trimleft [join [lrange [split $arg] 5 end]] :]    if {[string match *@*diem*emas*@* $frealname] || [string match *Love*Forever*=* $frealname] || [string match *Rex*Crew* $frealname] || [string match *script* $frealname] || [string match *edition* $frealname] || [string match *UFO*v6* $frealname] } {         putlog "*** $nick maybe a spammer spy based on his realname pattern: $frealname . Now lets ban *!*$fhostname"        putquick "KICK $chantocheck $fnick :Visit http://www.dc28.net/forum/irc link site Complaints for details why you were banned!"         putquick "MODE $chantocheck +b *!*@$fhostname"       }   banuser:unbindall}proc banuser:unbindall { } {  bind raw - 311 banuser:response }putlog "blah.tcl"</code></pre></div>its works very well. but then i received this msg on the bot dcc chat. "&lt;b&gt;!!! OVER MAXIMUM SERVER QUEUE&lt;/b&gt; <br>i dont know is it an error or a bug, can someone one tell me what it is and how to handle it.<br><br>note: the script is put on a bot which stand on channel that have 1000+ user.<br><br><br><br>&lt;font size=-1&gt;[ This Message was edited by: Doni on 2001-11-24 09:27 ]&lt;/font&gt;<br><br>&lt;font size=-1&gt;[ This Message was edited by: Doni on 2001-11-24 16:33 ]&lt;/font&gt;<p>Statistics: Posted by Guest — Sat Nov 24, 2001 12:22 pm</p><hr />
]]></content>
	</entry>
	</feed>
