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

	<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>2012-03-31T05:25:05-04:00</updated>

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

		<entry>
		<author><name><![CDATA[arvent]]></name></author>
		<updated>2012-03-31T05:25:05-04:00</updated>

		<published>2012-03-31T05:25:05-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=99148#p99148</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=99148#p99148"/>
		<title type="html"><![CDATA[ban mask]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=99148#p99148"><![CDATA[
After a few playing around with trial and error I have came to this:<br>from the original:<div class="codebox"><p>Code: </p><pre><code>2 {return *!*[lindex [split [maskhost $uhost] "!"] 1]}</code></pre></div>to:<div class="codebox"><p>Code: </p><pre><code>2 {return *![lindex [split [maskhost $uhost] "!"] 1]}</code></pre></div>Perhaps it is not the most sophisticate solution, but it work for now till there is better one. Since I don't have any TCL code experience it is some kind of success. <br>Thanks again for the effort. <br>Best. Arvent.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=11937">arvent</a> — Sat Mar 31, 2012 5:25 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[arvent]]></name></author>
		<updated>2012-03-30T05:34:10-04:00</updated>

		<published>2012-03-30T05:34:10-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=99144#p99144</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=99144#p99144"/>
		<title type="html"><![CDATA[Re: ban mask]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=99144#p99144"><![CDATA[
You are correct about the eggdrop version. I am using 1.6.21. <br>The ban mask change with the new line to: *!*<a href="mailto:ident@machine.domain.com">ident@machine.domain.com</a> as it is in sl_masktype 1. <br>Thanks for your replay and efforts.<br>Best <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=11937">arvent</a> — Fri Mar 30, 2012 5:34 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[slennox]]></name></author>
		<updated>2012-03-29T19:38:40-04:00</updated>

		<published>2012-03-29T19:38:40-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=99143#p99143</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=99143#p99143"/>
		<title type="html"><![CDATA[Re: ban mask]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=99143#p99143"><![CDATA[
<blockquote class="uncited"><div>I have set it with set sl_masktype 2 in order to get this ban mask: *!*ident@*.domain.com, but instead get the: *!**ident@*.domain.com.<br>Am I doing something wrong and the most important what can I do to fix it? </div></blockquote>Looks as though an argument was added to the masktype command in eggdrop 1.6.20 allowing selection of a hostmask type, but the new default type is different from what the command would've returned prior to 1.6.20, which can break compatibility with scripts that expect it to behave as documented in 1.6.19 and earlier.<br><br>A small change to line 1155 (for the sentinel.tcl included with netbots.tcl v4.10) will probably fix it:<br><br>Replace:<div class="codebox"><p>Code: </p><pre><code>    2 {return *!*[lindex [split [maskhost $uhost] "!"] 1]}</code></pre></div>With:<div class="codebox"><p>Code: </p><pre><code>    2 {return *!*[lindex [split [maskhost $uhost 0] "!"] 1]}</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=13034">slennox</a> — Thu Mar 29, 2012 7:38 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[arvent]]></name></author>
		<updated>2012-03-28T14:14:11-04:00</updated>

		<published>2012-03-28T14:14:11-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=99130#p99130</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=99130#p99130"/>
		<title type="html"><![CDATA[ban mask]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=99130#p99130"><![CDATA[
Hii. I use netbots.tcl v4.10. When sentinel get someone banned it get double * in front of the inent. <br>I have set it with set sl_masktype 2 in order to get this ban mask: *!*ident@*.domain.com, but instead get the: *!**ident@*.domain.com.<br>Am I doing something wrong and the most important what can I do to fix it? <br>Thanks in advance. <br>P.S. <br>Great work with the scripts. Brings much joy and safety.<br>Chears.  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_biggrin.gif" width="15" height="15" alt=":D" title="Very Happy"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=11937">arvent</a> — Wed Mar 28, 2012 2:14 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[mm]]></name></author>
		<updated>2005-02-16T23:33:48-04:00</updated>

		<published>2005-02-16T23:33:48-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=46690#p46690</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=46690#p46690"/>
		<title type="html"><![CDATA[Test version of sentinel.tcl v4.09.1]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=46690#p46690"><![CDATA[
Sorry test2 version is working great. thank you to slennox<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5145">mm</a> — Wed Feb 16, 2005 11:33 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[De Kus]]></name></author>
		<updated>2005-02-16T01:51:42-04:00</updated>

		<published>2005-02-16T01:51:42-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=46659#p46659</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=46659#p46659"/>
		<title type="html"><![CDATA[Test version of sentinel.tcl v4.09.1]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=46659#p46659"><![CDATA[
with a bit teaking I got this test version running as standalone. you just need the settings from netset.tcl and the procs nb_sendcmd and nb_killutimer (i have bitchx simul disabled <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_wink.gif" width="15" height="15" alt=";)" title="Wink">) from netbot.tcl.<br><br>PS: beat me, if I missed any change I made <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_razz.gif" width="15" height="15" alt=":P" title="Razz">.<br><br>PPS: I changed the locktime setting to this<div class="codebox"><p>Code: </p><pre><code>if { $network == "QuakeNet" } {set sl_locktimes {i:30 m:30 r:300}} elseif { $network == "euIRCnet" } {set sl_locktimes {i:30 m:30 R:300}} else {set sl_locktimes {i:120 m:30}}</code></pre></div>probably only intresting when 2 bots running on diffrent networks are running on same directory. But maybe you consider using the "only regististred" Mode in flood cases, this mode will block most multi-host spamer and leave the channel free for kind registred chatters <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_wink.gif" width="15" height="15" alt=";)" title="Wink">.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2382">De Kus</a> — Wed Feb 16, 2005 1:51 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[mm]]></name></author>
		<updated>2005-02-15T23:14:13-04:00</updated>

		<published>2005-02-15T23:14:13-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=46648#p46648</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=46648#p46648"/>
		<title type="html"><![CDATA[Test version of sentinel.tcl v4.09.1]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=46648#p46648"><![CDATA[
Yeah, well i've upload the test2 with the following setting<blockquote class="uncited"><div>set sl_locktimes {i:30 m:60 r:60}<br>set sl_txflood 6:15<br>set sl_txlength 180<br>set sl_nclength 1<br>set sl_linecap 50:15</div></blockquote>then i have used few clone ip's to test this using control char, bold etc, but it didn't trigger at all..<br>when i do .sentinel i can see the setting is there<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5145">mm</a> — Tue Feb 15, 2005 11:14 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Sir_Fz]]></name></author>
		<updated>2005-02-15T08:08:58-04:00</updated>

		<published>2005-02-15T08:08:58-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=46638#p46638</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=46638#p46638"/>
		<title type="html"><![CDATA[Test version of sentinel.tcl v4.09.1]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=46638#p46638"><![CDATA[
<blockquote class="uncited"><div>There are two rules. First, the minimum locktime for any mode is 30 seconds. Second, <strong class="text-strong">modes +i and +m must be included</strong>.</div></blockquote>I guess you can't remove +i and +m.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3085">Sir_Fz</a> — Tue Feb 15, 2005 8:08 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Alchera]]></name></author>
		<updated>2005-02-15T07:05:18-04:00</updated>

		<published>2005-02-15T07:05:18-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=46636#p46636</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=46636#p46636"/>
		<title type="html"><![CDATA[Test version of sentinel.tcl v4.09.1]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=46636#p46636"><![CDATA[
Yes, that should work fine. <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3646">Alchera</a> — Tue Feb 15, 2005 7:05 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[mm]]></name></author>
		<updated>2005-02-14T21:47:32-04:00</updated>

		<published>2005-02-14T21:47:32-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=46626#p46626</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=46626#p46626"/>
		<title type="html"><![CDATA[Test version of sentinel.tcl v4.09.1]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=46626#p46626"><![CDATA[
Hi, how the setting will work for undernet, since undernet has mode +r and may be doesn't need +i<br>so should i set<br>set sl_locktimes {r:120 m:60}?<br><br>thanks<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5145">mm</a> — Mon Feb 14, 2005 9:47 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Alchera]]></name></author>
		<updated>2005-02-14T10:23:50-04:00</updated>

		<published>2005-02-14T10:23:50-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=46603#p46603</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=46603#p46603"/>
		<title type="html"><![CDATA[Test version of sentinel.tcl v4.09.1]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=46603#p46603"><![CDATA[
<blockquote class="uncited"><div>Edit: I realised  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_rolleyes.gif" width="15" height="15" alt=":roll:" title="Rolling Eyes">  , Does this require netbots to work?</div></blockquote>Oh, very much so. <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=3646">Alchera</a> — Mon Feb 14, 2005 10:23 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Vixs]]></name></author>
		<updated>2005-02-14T08:37:23-04:00</updated>

		<published>2005-02-14T08:37:23-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=46596#p46596</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=46596#p46596"/>
		<title type="html"><![CDATA[Test version of sentinel.tcl v4.09.1]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=46596#p46596"><![CDATA[
I am running eggdrop v1.6.18+morecopyrights and have loaded the test2 file and this is wat the error it shows<br><div class="codebox"><p>Code: </p><pre><code>&lt;RockBabe&gt; [16:38] can't read "sl_bxsimul": no such variable&lt;RockBabe&gt;     while executing&lt;RockBabe&gt; "if {$sl_bxsimul} {&lt;RockBabe&gt;   bind raw - 001 sl_bxserverjoin&lt;RockBabe&gt;   if {![info exists sl_bxonestack]} {&lt;RockBabe&gt;     set sl_bxonestack 0&lt;RockBabe&gt;   }&lt;RockBabe&gt;   if {![info exists sl_bxversion..."&lt;RockBabe&gt;     (file "scripts/sentinel.tcl" line 1115)&lt;RockBabe&gt;     invoked from within&lt;RockBabe&gt; "source scripts/sentinel.tcl"&lt;RockBabe&gt;     (file "eggdrop.conf" line 1371)</code></pre></div><br><br>Edit: I realised  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_rolleyes.gif" width="15" height="15" alt=":roll:" title="Rolling Eyes"> , Does this require netbots to work?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4943">Vixs</a> — Mon Feb 14, 2005 8:37 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Alchera]]></name></author>
		<updated>2005-01-23T23:29:38-04:00</updated>

		<published>2005-01-23T23:29:38-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=45763#p45763</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=45763#p45763"/>
		<title type="html"><![CDATA[Test version of sentinel.tcl v4.09.1]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=45763#p45763"><![CDATA[
I've been using Test2 version of sentinel and am pleased with its' performance. So far, with a number of attempts to text flood a number of channels I have bots in, it's performed as expected. In one channel (which I am actually sitting in to watch) last night 6 flood bots entered and only managed to get a total of 12 lines in before the channel locking kicked in; bearing in mind that I have yet to still "play" with the sl_txlength setting. <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile">                                           <p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3646">Alchera</a> — Sun Jan 23, 2005 11:29 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[awyeah]]></name></author>
		<updated>2005-01-23T21:11:54-04:00</updated>

		<published>2005-01-23T21:11:54-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=45760#p45760</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=45760#p45760"/>
		<title type="html"><![CDATA[Test version of sentinel.tcl v4.09.1]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=45760#p45760"><![CDATA[
Oh a new final version of sentinel is finally out! after waiting a long interval of 3 years <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=4875">awyeah</a> — Sun Jan 23, 2005 9:11 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[slennox]]></name></author>
		<updated>2005-01-20T06:41:39-04:00</updated>

		<published>2005-01-20T06:41:39-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=45591#p45591</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=45591#p45591"/>
		<title type="html"><![CDATA[Test version of sentinel.tcl v4.09.1]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=45591#p45591"><![CDATA[
Test2 is <a href="http://www.egghelp.org/files/mytcl/netbots-sentinel4.09.1-test2.tcl.gz" class="postlink">now available</a>. This adds some text and notice flood detection in a way that was relatively simple to implement--as part of an amalgamated text/notice/tsunami/avalanche mechanism. Please refer to the section at the top of the test script for more information.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=13034">slennox</a> — Thu Jan 20, 2005 6:41 am</p><hr />
]]></content>
	</entry>
	</feed>
