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

	<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-10-30T04:59:42-04:00</updated>

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

		<entry>
		<author><name><![CDATA[[R]]]></name></author>
		<updated>2004-10-30T04:59:42-04:00</updated>

		<published>2004-10-30T04:59:42-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=42409#p42409</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=42409#p42409"/>
		<title type="html"><![CDATA[autolimit :)]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=42409#p42409"><![CDATA[
Hello,<br><br>Thx for all..<br>Maybe I try some autolimit scripts. <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><br>Great Forum <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_biggrin.gif" width="15" height="15" alt=":D" title="Very Happy"><br><br><br>Thx&amp;Greets<br><br>[R]<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4899">[R]</a> — Sat Oct 30, 2004 4:59 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Dedan]]></name></author>
		<updated>2004-10-29T18:30:11-04:00</updated>

		<published>2004-10-29T18:30:11-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=42400#p42400</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=42400#p42400"/>
		<title type="html"><![CDATA[autolimit :)]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=42400#p42400"><![CDATA[
why re-invent the wheel?<br><br>try slennox channel limit script<br>found here.  <a href="http://www.egghelp.org/mytcl.htm" class="postlink">http://www.egghelp.org/mytcl.htm</a><br><br>i am running it on 7 bots for 8 months,<br>with no problems  ...<br><br>you may also want to make this change in your<br>conf file "  set wait-split 1  "<br><br><br> <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_cool.gif" width="15" height="15" alt="8)" title="Cool"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3472">Dedan</a> — Fri Oct 29, 2004 6:30 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Alchera]]></name></author>
		<updated>2004-10-29T17:52:35-04:00</updated>

		<published>2004-10-29T17:52:35-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=42398#p42398</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=42398#p42398"/>
		<title type="html"><![CDATA[autolimit :)]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=42398#p42398"><![CDATA[
You <em class="text-italics">may</em> find the following easier to use.  Limit is number of users in channel +5 and is automatically adjusted as users enter/leave.<div class="codebox"><p>Code: </p><pre><code>########################################################################### Binds                                                                  ###########################################################################bind time - "* * * * *" time:ChanLimit########################################################################### time:ChanLimit start                                                   ###########################################################################proc time:ChanLimit {min hour day month year} {    foreach chan [channels] {set newlimit [expr [llength [chanlist $chan]] + 6]set currentlimit [currentlimit $chan]if {$currentlimit &lt; [expr $newlimit - 1] || $currentlimit &gt; [expr $newlimit + 1]} {    putserv "mode $chan +l $newlimit"}    }    }########################################################################### time:ChanLimit end                                                     ###################################################################################################################################################### currentlimit start                                                     ###########################################################################proc currentlimit {chan} {    set currentmodes [getchanmode $chan]    if {[string match "*l*" [lindex $currentmodes 0]]} {return [lindex $currentmodes end]     }    return 0}########################################################################### currentlimit end                                                       ###################################################################################################################################################### putlog                                                                 ########################################################################### putlog "Loaded ChanLimit (DLF)"</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3646">Alchera</a> — Fri Oct 29, 2004 5:52 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Stealthx]]></name></author>
		<updated>2004-10-29T13:36:42-04:00</updated>

		<published>2004-10-29T13:36:42-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=42390#p42390</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=42390#p42390"/>
		<title type="html"><![CDATA[autolimit :)]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=42390#p42390"><![CDATA[
I've use this TCL before and it's work fine for me as in setting new limit to the channel... So I think most probably your setting to the TCl was abit doesn't suit your "thinking"? Check it again and I guess it would possibly works fine for you as well...  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_razz.gif" width="15" height="15" alt=":P" title="Razz"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5493">Stealthx</a> — Fri Oct 29, 2004 1:36 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[metroid]]></name></author>
		<updated>2004-10-29T10:26:54-04:00</updated>

		<published>2004-10-29T10:26:54-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=42378#p42378</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=42378#p42378"/>
		<title type="html"><![CDATA[autolimit :)]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=42378#p42378"><![CDATA[
[R] Are all your 81 posts only, "Please help me cause i'm too lazy to try and see why myself" ?<br><br>Try figuring it out yourself, It probally not hard.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5078">metroid</a> — Fri Oct 29, 2004 10:26 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Stealthx]]></name></author>
		<updated>2004-10-29T10:02:20-04:00</updated>

		<published>2004-10-29T10:02:20-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=42376#p42376</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=42376#p42376"/>
		<title type="html"><![CDATA[autolimit :)]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=42376#p42376"><![CDATA[
<blockquote class="uncited"><div># This is the difference between the current limit and user count before<br># a new limit is set.<br>set autolimit(diff) 5<br><br># This is the timer, in minutes, between checks.<br>set autolimit(timer) 10</div></blockquote>Did you set right for this options?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5493">Stealthx</a> — Fri Oct 29, 2004 10:02 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[[R]]]></name></author>
		<updated>2004-10-29T08:40:18-04:00</updated>

		<published>2004-10-29T08:40:18-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=42374#p42374</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=42374#p42374"/>
		<title type="html"><![CDATA[autolimit :)]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=42374#p42374"><![CDATA[
Heay<br><br>iam currently using <br><blockquote class="uncited"><div>Script : AutoLimit v1.02 by David Proper (Dr. Nibble [DrN])<br>Copyright 2002 Radical Computer Systems</div></blockquote><br>Sometimes the bot dont adds a new limit.<br>Whats wrong? And whats the best value for this:<br><div class="codebox"><p>Code: </p><pre><code># This is the base number to add to the total channel count for the new limitset autolimit(base) 10</code></pre></div>Thx&amp;Greets<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4899">[R]</a> — Fri Oct 29, 2004 8:40 am</p><hr />
]]></content>
	</entry>
	</feed>
