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

	<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>2013-11-25T14:54:36-04:00</updated>

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

		<entry>
		<author><name><![CDATA[jerkiejerx]]></name></author>
		<updated>2013-11-25T14:54:36-04:00</updated>

		<published>2013-11-25T14:54:36-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=102238#p102238</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=102238#p102238"/>
		<title type="html"><![CDATA[What if...]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=102238#p102238"><![CDATA[
hello, I hope this thread is still active.<br><br>What if the masskicker is using another nick which is NOT the same as the one with the aop access?  The bot only deop and del aop using the nick.. but not the actual nick with the access.<br><br>Say for example:<br><br>blahblah has AOP access to #channelx.  Reason: Identification to the nickname xlite.<br><br>The nick "blahblah" will be deopped.. However, its access will still be active because the script only aop delete the nick being used for masskicking, not the actual nick with the access.<br><br>Can the script still be improved?  Thank you.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12273">jerkiejerx</a> — Mon Nov 25, 2013 2:54 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[gamble27]]></name></author>
		<updated>2012-03-22T05:54:28-04:00</updated>

		<published>2012-03-22T05:54:28-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=99093#p99093</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=99093#p99093"/>
		<title type="html"><![CDATA[Mass Kick Protection]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=99093#p99093"><![CDATA[
i have checked the tcl caesar, there is no error in the tcl however its not doing anything too. no deletion on kicking the bot or when the user does mkick. I do see on dcc [09:50:54] -ChanServ (<a href="mailto:service@dal.net">service@dal.net</a>)- test ACC #test 10 (AOP) but thats about it. It checks access but doesnt react on any trigger. Thanks : )<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=10110">gamble27</a> — Thu Mar 22, 2012 5:54 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[caesar]]></name></author>
		<updated>2012-03-19T11:17:20-04:00</updated>

		<published>2012-03-19T11:17:20-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=99082#p99082</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=99082#p99082"/>
		<title type="html"><![CDATA[Mass Kick Protection]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=99082#p99082"><![CDATA[
Here is the *upgraded* version of the above code.<div class="codebox"><p>Code: </p><pre><code>namespace eval MassKick {  # set the masskick limit (count:time)  set mass(limit) "3:10"    # timeout of the check access command sent to ChanServ  set mass(timeout) "60"  # memo to be sent when an AOP was removed  set memo(mass) "The AOP of %nick user on %chan channel has been deleted due to attempt to masskick."    # memo to be sent when bot was kicked by an AOP  set memo(bot) "The AOP of %nick user on %chan channel has been deleted cos he kicked me."    # memo to be sent when SOP or higher masskicked and bot didn't triggered any actions  set memo(skip) "User %nick has level %level (%rank) on the %chan channel, so his action (%action) has been ignored, also added him to the skip list."    # memo to be sent when someone without any access triggered a masskick or kicked the bot  set memo(zero) "Someone oped user %nick on the %chan channel and %action the channel..."  # customize the text of %action in the lines above  set memo(action) {"masskicked""booted me off"  }  # ignore the actions of the users that have this flags  set mass(friends) "f|f"  # don't edit below this line  setudef flag massKick    set flags { "massKicker" "massCount" "checkList" "checkAct" "massSkip" }  foreach flag $flags {setudef str $flag  }  # binds  bind kick * * [namespace current]::kicked  bind part - * [namespace current]::remove  bind sign - * [namespace current]::remove  bind nick - * [namespace current]::nickCh  bind notc * * [namespace current]::checkReply  #bind raw - MODE [namespace current]::massMode  # bot kicked  proc botKicked {chan nick} {channel set $chan checkList [lappend [channel get $chan checkAct] $nick "1"]    massCheck $chan $nick  }  # reset  proc resetChan {chan} {if {![validchan $chan]} returnset flags { "massKicker" "massCount" "checkList" "checkAct" }foreach flag $flags {channel set $chan $flag {}}  }    # access checking  proc massCheck {chan nick} {set checkList [channel get $chan checkList]if {$nick in $checkList} {if {$nick in [channel get $chan massSkip]} {set pos [lsearch $checkList$nick]channel set $chan checkList [lreplace $checkList $pos $pos]}return}variable masschannel set $chan checkList [lappend checkList $nick]puthelp "ChanServ access $chan $nick"utimer $mass(timeout) [list [namespace current]::doThis "5" $chan $nick]  }  # reply of ACC command from ChanServ  proc checkReply {nick uhost hand text {dest ""}} {if {[string equal -length 1 # $dest]} returnif {$nick eq "ChanServ"} {foreach {user cmd chan level rank} [split $text] { break }set checkList [channel get $chan checkList]if {$nick ni $checkList} returnset pos [lsearch $checkList$nick]set act [lindex [channel get $chan checkAct] $pos]actLevel $chan $user $level $rank $act}  }    # access trigger actions  proc actLevel {chan nick level rank act} {variable memoset action [lindex $memo(action) $act]set rank [string trim [lindex [split $rank] 0] {()}]switch -- $level {"0" {putserv "Chanserv deop $chan $nick"set message [string map -nocase [list "%chan" "$chan" "%nick" "$nick" "%action" "$action"] $memo(zero)]}"10" {putserv "Chanserv deop $chan $nick"putserv "Chanserv aop $chan del $nick"putlog "del aop &amp; deop"if {$act eq "0"} {set message [string map -nocase [list "%chan" "$chan" "%nick" "$nick"] $memo(mass)]} elseif {$act eq "1"} {set message [string map -nocase [list "%chan" "$chan" "%nick" "$nick"] $memo(bot)]}}"20" - "30" - "40" - "50" - "60" {channel set $chan massSkip [lappend [channel get $chan massSkip] $nick]set message [string map -nocase [list "%chan" "$chan" "%nick" "$nick" "%level" "$level" "%action" "$action" "%rank" "$rank"] $memo(skip)]}}putserv "Memoserv send $chan $message"doThis "2" $chan $nickdoThis "5" $chan $nick  }    # triggers:  # 1 - add, 2 - remove massKicker/massCount, 3 - replace nick  # 4 - replace count, 5 - remove checklist  proc doThis {act chan nick {pos ""} {count ""} {newNick ""}} {set massKicker [channel get $chan massKicker]    set massCount [channel get $chan massCount]set checkAct [channel get $chan checkAct]    switch -- $act {      "1" {        lappend massKicker $nick        lappend massCount 1lappend checkAct 0      }      "2" {set pos [lsearch $massKicker $nick]        set massKicker [lreplace $massKicker $pos $pos]        set massCount [lreplace $massCount $pos $pos]      }      "3" {        set massKicker [lreplace $massKicker $pos $pos $newNick]      }      "4" {        set massCount [lreplace $massCount $pos $pos $count]      }  "5" {set checkList [channel get $chan checkList]if {$nick ni $checkList} returnset pos [lsearch $checkList $nick]channel set $chan checkList [lreplace $checkList $pos $pos]set checkAct [lreplace $checkAct $pos $pos]  }  "6" {set checkList [channel get $chan checkList]if {$nick in $checkList} {set pos [lsearch $checkList $nick]channel set $chan checkList [lreplace $checkList $pos $pos]}set massSkip [channel get $chan massSkip]if {$nick in $massSkip} {set pos [lsearch $massSkip $nick]channel set $chan massSkip [lreplace $massSkip $pos $pos]}  }    }    channel set $chan massKicker $massKicker    channel set $chan massCount $massCountchannel set $chan checkAct $checkAct  }  # triggers:  # 1 - part &amp; sign, 2 - nick change  proc eventThis {event chan nick {newNick ""}} {    set massKicker [channel get $chan massKicker]    if {$nick ni $massKicker} return    set pos [lsearch $massKicker $nick]    switch -- $event {      "1" {        doThis "2" $chan $nickdoThis "5" $chan $nick      }      "2" {        doThis "3" $chan $nick $pos "0" $newNickdoThis "6" $chan $nick $newNick        }    }  }  # part &amp; sign  proc remove {nick uhost handle chan {text ""}} {    if {![channel get $chan massKick]} return    if {[isbotnick $nick]} {      resetChan $chan      } else {      eventThis "1" $chan $nick    }  }  # nick  proc nickCh {nick uhost handle chan newnick} {    if {![channel get $chan massKick]} return    if {[isbotnick $nick]} return    eventThis "2" $chan $nick $newNick  }  # kick  proc kicked {nick uhost hand chan target reason} {    if {![channel get $chan massKick]} return    variable mass    if {[matchattr $hand $mass(friends) $chan]} return    if {[isbotnick $nick]} return    if {$nick eq "ChanServ"} returnif {$nick in [channel get $chan massSkip]} return    if {[isbotnick $target]} {      botKicked $chan $nick      return    }    set massKicker [channel get $chan massKicker]    if {$nick ni $massKicker} {      doThis "1" $chan $nick      return    }    set pos [lsearch $massKicker $nick]    set count [lindex [channel get $chan massCount] $pos]    set info [split $mass(limit) :]    if {$count &gt;= [lindex $info 0]} {massCheck $chan $nick      return      } else {      incr count    }    utimer [lindex $info 1] [list [namespace current]::doThis "2" $chan $nick]    doThis "4" $chan $nick $pos $count  }}</code></pre></div>I did only a few tests on this, so you will have to let me know if something is not working properly. I'll add that missing <em class="text-italics">massMode</em> proc later on that will help out at maintaining the <em class="text-italics">massSkip</em> list.<br><br>To be honest I would rather create a "special" user (like massUser) to the bot and give him some flags that aren't used in any other script and set that flag in <em class="text-italics">mass(friends)</em> in the previous code, then add the host masks of the people that I want to be skipped from any punishment, than depend on ChanServ's reply with the access level of a person that's mass kicking. Right now the bot won't react until it receives a reply of that <em class="text-italics">access</em> command from ChanServ and removes the user from his check list after the timeout that is set at <em class="text-italics">mass(timeout)</em>.<br><br>In the <em class="text-italics">massMode</em> I was thinking on monitoring all +o on the channel, then issue an <em class="text-italics">WHY</em> command and store that user in <em class="text-italics">massSkip</em> list if it's level is above the requirements. This should save some time but in case some user that isn't in that list the script still will depend on how fast ChanServ will reply to the <em class="text-italics">access</em> command.<br><br>If you got any other idea feel free to contribute. <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=187">caesar</a> — Mon Mar 19, 2012 11:17 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[gamble27]]></name></author>
		<updated>2012-03-17T01:28:03-04:00</updated>

		<published>2012-03-17T01:28:03-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=99060#p99060</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=99060#p99060"/>
		<title type="html"><![CDATA[Mass Kick Protection]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=99060#p99060"><![CDATA[
sure caesar take your time,another way to find out the access level its /chanserv why #channel nick, if it returns Sop,manager or founder. ignore it. It should only be activated for aops. Appreciate your work and take your time. Thanks <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=10110">gamble27</a> — Sat Mar 17, 2012 1:28 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[caesar]]></name></author>
		<updated>2012-03-16T14:25:23-04:00</updated>

		<published>2012-03-16T14:25:23-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=99057#p99057</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=99057#p99057"/>
		<title type="html"><![CDATA[Mass Kick Protection]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=99057#p99057"><![CDATA[
Not exactly, cos that script only maintains a list with users that the bot has seen them gaining a +/- <em class="text-italics">a</em> and <em class="text-italics">o</em> flags. I was looking for a way to view the access of a person and found the command I was looking for in <a href="http://docs.dal.net/docs/chanserv.html#13" class="postlink">Dalnet's Chanserv Info page</a>.<blockquote class="uncited"><div>Syntax: /chanserv acc/access #channel [nick]<br><br>Information: This command lets an AOp or higher see what access he/someone else has to the channel. The access is displayed numerically, below are the definitions: <br>-2 = Channel is frozen or closed<br>-1 = AutoKICKed from the channel<br>0 = basic<br>10 = AutoOp<br>20 = SuperOp<br>30 = User has MANAGER access<br>40 = Has founder access via a NickServ access list mask<br>50 = Has founder access via identification to NickServ<br>60 = Has founder access via identification to ChanServ<br><br>If the USER is not online, the access will be 0.<br>Note: You must be an AOp or higher to use that command. </div></blockquote>Give me some time and will make it "forgive" higher ranked users. <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=187">caesar</a> — Fri Mar 16, 2012 2:25 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[willyw]]></name></author>
		<updated>2012-03-16T13:32:03-04:00</updated>

		<published>2012-03-16T13:32:03-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=99056#p99056</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=99056#p99056"/>
		<title type="html"><![CDATA[Mass Kick Protection]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=99056#p99056"><![CDATA[
Is this useful?<br><br><a href="http://thommey.tclhelp.net/?page=scripts" class="postlink">http://thommey.tclhelp.net/?page=scripts</a><br><br>and see:  Arbitrary chanmodes (+q, +a)<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=10420">willyw</a> — Fri Mar 16, 2012 1:32 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[caesar]]></name></author>
		<updated>2012-03-16T13:19:48-04:00</updated>

		<published>2012-03-16T13:19:48-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=99055#p99055</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=99055#p99055"/>
		<title type="html"><![CDATA[Mass Kick Protection]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=99055#p99055"><![CDATA[
Is there a command to to get the level of a certain user?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=187">caesar</a> — Fri Mar 16, 2012 1:19 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[gamble27]]></name></author>
		<updated>2012-03-16T13:17:50-04:00</updated>

		<published>2012-03-16T13:17:50-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=99054#p99054</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=99054#p99054"/>
		<title type="html"><![CDATA[Mass Kick Protection]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=99054#p99054"><![CDATA[
working extremely perfect now caesar, just wondering if we can add a check on the tcl to only works on aop. it shud nt affect sops and above. Tcl should only affect aops. Its wonderful job caesar <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"> Thanks <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=10110">gamble27</a> — Fri Mar 16, 2012 1:17 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[caesar]]></name></author>
		<updated>2012-03-16T12:18:28-04:00</updated>

		<published>2012-03-16T12:18:28-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=99051#p99051</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=99051#p99051"/>
		<title type="html"><![CDATA[Mass Kick Protection]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=99051#p99051"><![CDATA[
@gamble27 : yes, isn't that option self explanatory? <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_razz.gif" width="15" height="15" alt=":P" title="Razz"> I left it with 1 to see if it's working or not.<br><br>@Clubber : first remove <em class="text-italics">setudef flag massKick</em> line then find and remove all instances of:<div class="codebox"><p>Code: </p><pre><code>if {![channel get $chan massKick]} return </code></pre></div>and it will work on all channels or do what heartbroken said. <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=187">caesar</a> — Fri Mar 16, 2012 12:18 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[heartbroken]]></name></author>
		<updated>2012-03-16T12:16:05-04:00</updated>

		<published>2012-03-16T12:16:05-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=99050#p99050</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=99050#p99050"/>
		<title type="html"><![CDATA[Mass Kick Protection]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=99050#p99050"><![CDATA[
.chanset * +masskick   &lt;-- for to run this script on all channels ...<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=11703">heartbroken</a> — Fri Mar 16, 2012 12:16 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Regex]]></name></author>
		<updated>2012-03-16T10:45:45-04:00</updated>

		<published>2012-03-16T10:45:45-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=99049#p99049</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=99049#p99049"/>
		<title type="html"><![CDATA[Mass Kick Protection]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=99049#p99049"><![CDATA[
@caesar how can we use this without .chanset #channel &lt;&lt;<br><br>i need this script without .chanset option. my bot have to work in everychannel.. <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=11617">Regex</a> — Fri Mar 16, 2012 10:45 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[gamble27]]></name></author>
		<updated>2012-03-16T10:21:30-04:00</updated>

		<published>2012-03-16T10:21:30-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=99048#p99048</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=99048#p99048"/>
		<title type="html"><![CDATA[Mass Kick Protection]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=99048#p99048"><![CDATA[
now its working fine, but how can i set that it only deletes op when they reach certain kicks. for example i wanted 4 kicks in 1 sec or 2 sec but currently even 2 kicks its deleting the aop and sending memo. Working fine but where are the settings tht i can set and play ard with ? is it here --&gt; set mass(limit) "1:20"<br><br>Thanks : )<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=10110">gamble27</a> — Fri Mar 16, 2012 10:21 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[caesar]]></name></author>
		<updated>2012-03-16T07:27:16-04:00</updated>

		<published>2012-03-16T07:27:16-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=99046#p99046</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=99046#p99046"/>
		<title type="html"><![CDATA[Mass Kick Protection]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=99046#p99046"><![CDATA[
Alright, I've loaded this on an eggdrop, ran some tests and finally I've nailed down all bugs. It should work smoothly now.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=187">caesar</a> — Fri Mar 16, 2012 7:27 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[caesar]]></name></author>
		<updated>2012-03-16T04:05:23-04:00</updated>

		<published>2012-03-16T04:05:23-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=99044#p99044</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=99044#p99044"/>
		<title type="html"><![CDATA[Mass Kick Protection]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=99044#p99044"><![CDATA[
Looks like I'll have to load this on a bot myself to debug this. <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_rolleyes.gif" width="15" height="15" alt=":roll:" title="Rolling Eyes"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=187">caesar</a> — Fri Mar 16, 2012 4:05 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[gamble27]]></name></author>
		<updated>2012-03-16T03:04:02-04:00</updated>

		<published>2012-03-16T03:04:02-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=99043#p99043</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=99043#p99043"/>
		<title type="html"><![CDATA[Mass Kick Protection]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=99043#p99043"><![CDATA[
im afraid there is still errors :<blockquote class="uncited"><div>[15:00] &lt;(im&gt; [07:00:31] Tcl error [::MassKick::kicked]: bad index "": must be integer?[+-]integer? or end?[+-]integer?<br>[15:00] &lt;(im&gt; [07:00:31] Tcl error [::MassKick::kicked]: bad index "": must be integer?[+-]integer? or end?[+-]integer?<br>[15:00] &lt;(im&gt; [07:00:31] Tcl error [::MassKick::kicked]: bad index "": must be integer?[+-]integer? or end?[+-]integer?<br>[15:00] &lt;(im&gt; [07:00:32] -ChanServ (<a href="mailto:service@dal.net">service@dal.net</a>)- vinkan has been successfully removed from the AOP list of #idsf<br>[15:00] &lt;(im&gt; [07:00:32] -ChanServ (<a href="mailto:service@dal.net">service@dal.net</a>)- DEOP of vinkan on #idsf was successful.<br>[15:00] -ChanServ:#makaveli- import has deopped vinkan<br>[15:00] &lt;(im&gt; [07:00:33] Tcl error in script for 'timer144':<br>[15:00] &lt;(im&gt; [07:00:33] bad index "": must be integer?[+-]integer? or end?[+-]integer?<br>[15:00] &lt;(im&gt; [07:00:33] Tcl error in script for 'timer145':<br>[15:00] &lt;(im&gt; [07:00:33] bad index "": must be integer?[+-]integer? or end?[+-]integer?<br>[15:00] &lt;(im&gt; [07:00:35] -MemoServ (<a href="mailto:service@dal.net">service@dal.net</a>)- Im does not wish to receive memos.<br>[15:00] -MemoServ- New memo from Import. For more information, use: /msg <a href="mailto:MemoServ@services.dal.net">MemoServ@services.dal.net</a> LIST</div></blockquote>It sent me 3 memos of same thing so thts an error too. Thanks and take ure time <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=10110">gamble27</a> — Fri Mar 16, 2012 3:04 am</p><hr />
]]></content>
	</entry>
	</feed>
