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

	<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>2005-06-17T18:33:14-04:00</updated>

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

		<entry>
		<author><name><![CDATA[stevegarbz]]></name></author>
		<updated>2005-06-17T18:33:14-04:00</updated>

		<published>2005-06-17T18:33:14-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=50985#p50985</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=50985#p50985"/>
		<title type="html"><![CDATA[Help with advertising bot script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=50985#p50985"><![CDATA[
Hey it works now! I set the limit to 5. Thanks a lot!<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5732">stevegarbz</a> — Fri Jun 17, 2005 6:33 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[demond]]></name></author>
		<updated>2005-06-17T18:31:07-04:00</updated>

		<published>2005-06-17T18:31:07-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=50984#p50984</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=50984#p50984"/>
		<title type="html"><![CDATA[Help with advertising bot script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=50984#p50984"><![CDATA[
<blockquote class="uncited"><div>Well, are you sure it's not something in the code?</div></blockquote>as sure as that 2+2=4<br><br>this didn't flood out my bot:<div class="codebox"><p>Code: </p><pre><code>&lt;demond&gt; .tcl for {set i 0} {$i &lt; 50} {incr i} {putqueue "privmsg #o:zone :test test test test test test test test test test test test test test test test test test test test test test "}</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5056">demond</a> — Fri Jun 17, 2005 6:31 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[demond]]></name></author>
		<updated>2005-06-17T18:22:09-04:00</updated>

		<published>2005-06-17T18:22:09-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=50983#p50983</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=50983#p50983"/>
		<title type="html"><![CDATA[Help with advertising bot script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=50983#p50983"><![CDATA[
<blockquote class="uncited"><div>if it floods out using puthelp, he might want to rise '#define msgrate' in server.c anyway.<br>puthelp SHOULD send only every 2 seconds anyway, so the queue code doesnt change much ^-^.</div></blockquote>au contraire, it gives you configurable rate limiting, as opposed to hard-coded one in eggdrop's source<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5056">demond</a> — Fri Jun 17, 2005 6:22 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[stevegarbz]]></name></author>
		<updated>2005-06-17T18:18:20-04:00</updated>

		<published>2005-06-17T18:18:20-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=50980#p50980</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=50980#p50980"/>
		<title type="html"><![CDATA[Help with advertising bot script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=50980#p50980"><![CDATA[
Well, are you sure it's not something in the code?<br><div class="codebox"><p>Code: </p><pre><code>##### GENERAL SETTINGS ##### EDIT the channel names or REMOVE one or two depending on which channel you intend the bot the advertiseset channel "#PE #PE1 #PE2 #PE3 #PE4 #PE5 #PE6 #PE7 #PE8 #PE9 #PE10 #PE11 #PE12 #PE13 #PE14 #PE15"# Edit the time cycle which is in minutes format depending on the time intervals you want the bot to flow out the advertismentset time 30# EDIT the text or REMOVE or ADD lines including inverted commas at the starting and ending at each line set text {"MSGHERE"}##### DO NOT EDIT ANYTHING BELOW THIS LINE UNLESS YOU KNOW WHAT YOU ARE DOING #####if {[string compare [string index $time 0] "!"] == 0} { set timer [string range $time 1 end] } { set timer [expr $time * 60] }if {[lsearch -glob [utimers] "* go *"] == -1} { utimer $timer go }set queue {} set frequency 5 ;# seconds proc getqueue {} {    if {$::queue != {}} {       puthelp [lindex $::queue 0]       set ::queue [lreplace $::queue 0 0]    }    utimer $::frequency getqueue } proc putqueue {str} {    lappend ::queue $str } getqueue proc go {} {global channel time text timerforeach chan $channel {foreach line $text { putqueue "PRIVMSG $chan :$line" }}if {[lsearch -glob [utimers] "* go *"] == -1} { utimer $timer go }}putlog "Loaded Advertise Script by es"</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5732">stevegarbz</a> — Fri Jun 17, 2005 6:18 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[De Kus]]></name></author>
		<updated>2005-06-17T18:16:32-04:00</updated>

		<published>2005-06-17T18:16:32-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=50979#p50979</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=50979#p50979"/>
		<title type="html"><![CDATA[Help with advertising bot script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=50979#p50979"><![CDATA[
if it floods out using puthelp, he might want to rise '#define msgrate' in server.c anyway.<br>puthelp SHOULD send only every 2 seconds anyway, so the queue code doesnt change much ^-^.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2382">De Kus</a> — Fri Jun 17, 2005 6:16 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[stevegarbz]]></name></author>
		<updated>2005-06-17T18:14:57-04:00</updated>

		<published>2005-06-17T18:14:57-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=50978#p50978</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=50978#p50978"/>
		<title type="html"><![CDATA[Help with advertising bot script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=50978#p50978"><![CDATA[
I put it on 7 once and it still errored.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5732">stevegarbz</a> — Fri Jun 17, 2005 6:14 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[demond]]></name></author>
		<updated>2005-06-17T18:14:27-04:00</updated>

		<published>2005-06-17T18:14:27-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=50977#p50977</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=50977#p50977"/>
		<title type="html"><![CDATA[Help with advertising bot script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=50977#p50977"><![CDATA[
did you experiment with other freq values, say 5?<br><br>if it still floods out on 5, it's your fault dude, no IRC server on Earth will disconnect you for one message every 5 secs - you somehow flood it in some other way<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5056">demond</a> — Fri Jun 17, 2005 6:14 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[stevegarbz]]></name></author>
		<updated>2005-06-17T18:05:00-04:00</updated>

		<published>2005-06-17T18:05:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=50975#p50975</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=50975#p50975"/>
		<title type="html"><![CDATA[Help with advertising bot script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=50975#p50975"><![CDATA[
Any answer?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5732">stevegarbz</a> — Fri Jun 17, 2005 6:05 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[demond]]></name></author>
		<updated>2005-06-17T18:10:46-04:00</updated>

		<published>2005-06-17T18:04:41-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=50974#p50974</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=50974#p50974"/>
		<title type="html"><![CDATA[Help with advertising bot script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=50974#p50974"><![CDATA[
heh, this is the simplest (yet efficient) form of output rate limiting - if you can't get this to work... you better stick with ready-made scripts and hope for the best (although I fail to see how another output rate limiting scheme would work for you, given that this wouldn't - I'd bet you somehow messed it up, possibly with another script)<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5056">demond</a> — Fri Jun 17, 2005 6:04 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[stevegarbz]]></name></author>
		<updated>2005-06-17T17:47:58-04:00</updated>

		<published>2005-06-17T17:47:58-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=50971#p50971</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=50971#p50971"/>
		<title type="html"><![CDATA[Help with advertising bot script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=50971#p50971"><![CDATA[
Nope, it still floods out with "Excess Flood" after it messages like 2-3 channels - It's not gamesurge I can assure you that.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5732">stevegarbz</a> — Fri Jun 17, 2005 5:47 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[demond]]></name></author>
		<updated>2005-06-17T16:14:07-04:00</updated>

		<published>2005-06-17T16:14:07-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=50964#p50964</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=50964#p50964"/>
		<title type="html"><![CDATA[Help with advertising bot script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=50964#p50964"><![CDATA[
you didn't get this to work?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5056">demond</a> — Fri Jun 17, 2005 4:14 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[stevegarbz]]></name></author>
		<updated>2005-06-17T15:43:43-04:00</updated>

		<published>2005-06-17T15:43:43-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=50963#p50963</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=50963#p50963"/>
		<title type="html"><![CDATA[Help with advertising bot script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=50963#p50963"><![CDATA[
Gamesurge :\ Are there any other scripts will full flood protection all in one?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5732">stevegarbz</a> — Fri Jun 17, 2005 3:43 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[demond]]></name></author>
		<updated>2005-06-17T13:29:46-04:00</updated>

		<published>2005-06-17T13:29:46-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=50953#p50953</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=50953#p50953"/>
		<title type="html"><![CDATA[Help with advertising bot script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=50953#p50953"><![CDATA[
it doesn't matter how many channels this is run on, the freq value specifies how fast the output queue is being flushed to the server - in my code, that's being done every 2 seconds - i.e. you have a single message (doesn't matter for which channel) sent to the server every 2 seconds, for as long as the output queue is not empty - and this shouldn't flood the bot out (unless you are on a server with nazi flood settings)<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5056">demond</a> — Fri Jun 17, 2005 1:29 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[stevegarbz]]></name></author>
		<updated>2005-06-17T12:17:03-04:00</updated>

		<published>2005-06-17T12:17:03-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=50946#p50946</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=50946#p50946"/>
		<title type="html"><![CDATA[Help with advertising bot script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=50946#p50946"><![CDATA[
What does the frequency value do. And this is because I am running the ad in about 13 channels, not just 1 like it shows on the code.<br><br>It still floods out. It only gets sent to 2 channels<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5732">stevegarbz</a> — Fri Jun 17, 2005 12:17 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[demond]]></name></author>
		<updated>2005-06-17T11:57:43-04:00</updated>

		<published>2005-06-17T11:57:43-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=50943#p50943</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=50943#p50943"/>
		<title type="html"><![CDATA[Help with advertising bot script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=50943#p50943"><![CDATA[
if it still gets desconnected with "Excess Flood" reason, that can't possibly be because of this script - check your other scripts and do as much logging as possible (including +d); also experiment with frequency value<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5056">demond</a> — Fri Jun 17, 2005 11:57 am</p><hr />
]]></content>
	</entry>
	</feed>
