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

	<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>2006-03-12T23:16:08-04:00</updated>

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

		<entry>
		<author><name><![CDATA[stevegarbz]]></name></author>
		<updated>2006-03-12T23:16:08-04:00</updated>

		<published>2006-03-12T23:16:08-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=61019#p61019</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=61019#p61019"/>
		<title type="html"><![CDATA[How many putquick statements should I have?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=61019#p61019"><![CDATA[
I had to remove the script. My bot stopped processing all public commands, including channel protection and global ads.<br><br>This is using a NOTICE method, so it shouldn't be getting a target change or anything like that? Please help, I want this to be functional.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5732">stevegarbz</a> — Sun Mar 12, 2006 11:16 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Sir_Fz]]></name></author>
		<updated>2006-03-12T17:44:21-04:00</updated>

		<published>2006-03-12T17:44:21-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=61015#p61015</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=61015#p61015"/>
		<title type="html"><![CDATA[How many putquick statements should I have?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=61015#p61015"><![CDATA[
The puthelp queue may become very slow sometimes because of huge stack in it, just wait a little bit and I'm sure all messages are going to be delivered. Also, make sure that your server doesn't have some limit for msgs (most servers do).<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3085">Sir_Fz</a> — Sun Mar 12, 2006 5:44 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[stevegarbz]]></name></author>
		<updated>2006-03-12T16:05:41-04:00</updated>

		<published>2006-03-12T16:05:41-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=61013#p61013</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=61013#p61013"/>
		<title type="html"><![CDATA[How many putquick statements should I have?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=61013#p61013"><![CDATA[
I'm using the following script:<br><div class="codebox"><p>Code: </p><pre><code>set onjoin_msg { {  "Hello, $nick - $chan is powered by www.PrecisionEffect.com / #PE - Premium Web Hosting" }}set onjoin_chans "#chicago.cs #esbuilder #terroarized #enervate #angkor #divine #opposition"bind join - * join_onjoinputlog "Onjoin greet script loaded"proc join_onjoin {nick uhost hand chan} { global onjoin_msg onjoin_chans botnick if {(([lsearch -exact [string tolower $onjoin_chans] [string tolower $chan]] != -1) || ($onjoin_chans == "*")) &amp;&amp; (![matchattr $hand b]) &amp;&amp; ($nick != $botnick)} {  set onjoin_temp [lindex $onjoin_msg [rand [llength $onjoin_msg]]]  foreach msgline $onjoin_temp {   puthelp "NOTICE $nick :[subst $msgline]"  } }}</code></pre></div>For some reason, after it sends a few times, the bot stops sending all public messages? This happened on 2-3 greet scripts I have used, I kept switching thinking it was the script. Please help!<br><br>EDIT: Sometimes it works, sometimes it does not.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5732">stevegarbz</a> — Sun Mar 12, 2006 4:05 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[De Kus]]></name></author>
		<updated>2006-03-12T15:53:49-04:00</updated>

		<published>2006-03-12T15:53:49-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=61012#p61012</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=61012#p61012"/>
		<title type="html"><![CDATA[How many putquick statements should I have?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=61012#p61012"><![CDATA[
I personally would use puthelp and dont care any more about flood. I have used puthelp to dump larger amounts of text (command helps), but never ever had any trouble with it. puthelp usually sends the lines in about (rather more) than 2 sec delays and since the server usually kicks for about 512byte in 2 sec and 1 line cannot be bigger than 512 (510 + \r\n) bytes you theoretically cannot be dropped, unless some lag or many putquick statements occur. putserv statements while puthelp queue is played will first put from normal queue and after that continue with help queue.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2382">De Kus</a> — Sun Mar 12, 2006 3:53 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[stevegarbz]]></name></author>
		<updated>2006-03-12T15:48:38-04:00</updated>

		<published>2006-03-12T15:48:38-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=61011#p61011</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=61011#p61011"/>
		<title type="html"><![CDATA[How many putquick statements should I have?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=61011#p61011"><![CDATA[
Hmm, I've used about 3 greet scripts so far, and all of them seem to stop working after a period of time... any ideas why? Bot isn't flooded out.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5732">stevegarbz</a> — Sun Mar 12, 2006 3:48 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[stevegarbz]]></name></author>
		<updated>2006-03-12T09:53:13-04:00</updated>

		<published>2006-03-12T09:53:13-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=61007#p61007</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=61007#p61007"/>
		<title type="html"><![CDATA[How many putquick statements should I have?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=61007#p61007"><![CDATA[
Ok, thank you very much. I changed it to 15:30 using putserv.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5732">stevegarbz</a> — Sun Mar 12, 2006 9:53 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Sir_Fz]]></name></author>
		<updated>2006-03-12T09:46:08-04:00</updated>

		<published>2006-03-12T09:46:08-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=61006#p61006</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=61006#p61006"/>
		<title type="html"><![CDATA[How many putquick statements should I have?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=61006#p61006"><![CDATA[
puthelp is the slowest, then comes putserv and putquick.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3085">Sir_Fz</a> — Sun Mar 12, 2006 9:46 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[stevegarbz]]></name></author>
		<updated>2006-03-12T08:51:18-04:00</updated>

		<published>2006-03-12T08:51:18-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=61005#p61005</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=61005#p61005"/>
		<title type="html"><![CDATA[How many putquick statements should I have?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=61005#p61005"><![CDATA[
Which one is the fastest?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5732">stevegarbz</a> — Sun Mar 12, 2006 8:51 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[caesar]]></name></author>
		<updated>2006-03-12T05:40:05-04:00</updated>

		<published>2006-03-12T05:40:05-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=61001#p61001</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=61001#p61001"/>
		<title type="html"><![CDATA[How many putquick statements should I have?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=61001#p61001"><![CDATA[
If you would like to increase that amount of messages use a slower queue like 'puthelp' or 'putserv'<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=187">caesar</a> — Sun Mar 12, 2006 5:40 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[stevegarbz]]></name></author>
		<updated>2006-03-11T23:04:08-04:00</updated>

		<published>2006-03-11T23:04:08-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=60998#p60998</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=60998#p60998"/>
		<title type="html"><![CDATA[How many putquick statements should I have?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=60998#p60998"><![CDATA[
I've got a greet script that is set to greet people who join channel 'x' using the 'putquick' statement. It greets 8 people in 30 seconds, max. Is this too much, or can I increase the limit? The higher the number, the better. I don't want to flood out my bot, though.<br><br>I'm also running a few other scripts, but they aren't contant like this one.<br><br>Thanks!<br>Steve<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5732">stevegarbz</a> — Sat Mar 11, 2006 11:04 pm</p><hr />
]]></content>
	</entry>
	</feed>
