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

	<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>2009-11-25T06:55:45-04:00</updated>

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

		<entry>
		<author><name><![CDATA[pseudo]]></name></author>
		<updated>2009-11-25T06:55:45-04:00</updated>

		<published>2009-11-25T06:55:45-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=91071#p91071</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=91071#p91071"/>
		<title type="html"><![CDATA[how can i disable the mode-queue ?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=91071#p91071"><![CDATA[
In addition to the putnow command, msgrate is now a config variable "msg-rate" and you no longer need to recompile in order to change it.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=10974">pseudo</a> — Wed Nov 25, 2009 6:55 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[thommey]]></name></author>
		<updated>2009-11-20T21:37:20-04:00</updated>

		<published>2009-11-20T21:37:20-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=90983#p90983</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=90983#p90983"/>
		<title type="html"><![CDATA[how can i disable the mode-queue ?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=90983#p90983"><![CDATA[
As of eggdrop1.6.20 there will be an internal "putnow" command and "putdccraw" will be gone.<br>So I'd recommend:<div class="codebox"><p>Code: </p><pre><code>if {[catch {package require eggdrop 1.6.20}]} {  proc putnow {text args} {    set text "[string trim $text]\r\n"    putdccraw 0 [string length $text] $text  }  foreach cmd {putserv putquick puthelp} {    if {[info commands ${cmd}_r] eq ""} {      rename $cmd ${cmd}_r      interp alias {} $cmd {} putnow    }  }}</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9830">thommey</a> — Fri Nov 20, 2009 9:37 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[MrStonedOne]]></name></author>
		<updated>2009-11-15T13:10:50-04:00</updated>

		<published>2009-11-15T13:10:50-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=90921#p90921</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=90921#p90921"/>
		<title type="html"><![CDATA[how can i disable the mode-queue ?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=90921#p90921"><![CDATA[
my bot is oper and i have it sajoining itself to all the channels on its list (it then parts inactive channels)<br><div class="codebox"><p>Code: </p><pre><code>putnow "sajoin $::botnick [join [channels] ,]"</code></pre></div>add something like that inside of a init-server evnt bind<br><br>Note: putnow is a tcl proc i have that uses putdccraw.<br><div class="codebox"><p>Code: </p><pre><code>proc putnow {a {options "0"}} {append a "\n"putdccraw 0 [string length $a] $a}rename putserv ""rename putquick ""rename puthelp ""proc putserv {text {options "0"}} {  putnow $text}proc putquick {text {options "0"}} {  putnow $text}proc puthelp {text {options "0"}} {  putnow $text}</code></pre></div>also, from testing the msgrate to 0 trick should work, just make sure to make distclean and fully recompile<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8744">MrStonedOne</a> — Sun Nov 15, 2009 1:10 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[user]]></name></author>
		<updated>2009-08-06T09:04:52-04:00</updated>

		<published>2009-08-06T09:04:52-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=89763#p89763</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=89763#p89763"/>
		<title type="html"><![CDATA[how can i disable the mode-queue ?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=89763#p89763"><![CDATA[
Edit server.c (#define msgrate 0) and recompile.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2878">user</a> — Thu Aug 06, 2009 9:04 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[T4nc]]></name></author>
		<updated>2009-08-05T18:30:24-04:00</updated>

		<published>2009-08-05T18:30:24-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=89759#p89759</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=89759#p89759"/>
		<title type="html"><![CDATA[how can i disable the mode-queue ?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=89759#p89759"><![CDATA[
Hi guys,<br><br>i would like to know how I can disable the mode-queue at the start of the eggdrop.<br>I have tried to change some things like setting the msgrate value to 0 in the source of the server.mod but this didn't solved the problem.<br>My bot is joining more than 100 Channel on the network and while he is doing this after a restart the queue gets filled. The Bot got a special user-class so he does not have any flood restrictions.<br><br>Does anyone got experience with this ?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=10773">T4nc</a> — Wed Aug 05, 2009 6:30 pm</p><hr />
]]></content>
	</entry>
	</feed>
