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

	<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>2021-11-30T15:30:49-04:00</updated>

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

		<entry>
		<author><name><![CDATA[simo]]></name></author>
		<updated>2021-11-30T15:30:49-04:00</updated>

		<published>2021-11-30T15:30:49-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=110563#p110563</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=110563#p110563"/>
		<title type="html"><![CDATA[Detecting identical nicks within time frame]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=110563#p110563"><![CDATA[
That explains it very well thanks SpiKe^^<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12505">simo</a> — Tue Nov 30, 2021 3:30 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[SpiKe^^]]></name></author>
		<updated>2021-11-29T01:39:15-04:00</updated>

		<published>2021-11-29T01:39:15-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=110558#p110558</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=110558#p110558"/>
		<title type="html"><![CDATA[Detecting identical nicks within time frame]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=110558#p110558"><![CDATA[
simo: This script separates out the custom queue part of the clonednicks.tcl<br>Look this over and see if it helps explain the custom queue any...<div class="codebox"><p>Code: </p><pre><code>#### pushkick.tcl ver 0.1 by SpiKe^^ (27Nov2021) #########     ???  New Eggdrop Tcl Command  ???     ###### I believe that Eggdrop should have a new tcl command called pushkick.# It should operate much like the existing pushmode command.# Use this pushkick command as you would use pushmode, but for kicks.# pushkick &lt;chan&gt; &lt;nick&gt;# pushkick &lt;chan&gt; &lt;nick&gt; [reason]# pushkick &lt;chan&gt; &lt;nick,nick,nick,...&gt; [reason]# Description:# Sends out a kick nick or nick,nick,... command# (ex: pushkick #lame goober "go away") through a custom queuing system.# All kicks will be combined into one line as much as possible.proc pushkick {chan nicks {reason ""} } {  # start the custom queue timer if it isn't running #  if {![info exists ::pushkickq($chan)]} {    after 800 [list dopushkicks $chan]  ;# &lt;= set queue timing (in ms) &lt;= #  }  # add the provided nick(s) to the queue variable #  lappend ::pushkickq($chan) $nicks $reason}proc dopushkicks {chan} {  if {![info exists ::pushkickq($chan)]} { return }  if {![botisop $chan]} { unset ::pushkickq($chan) ; return }  set max 4       ;# &lt;= set maximum number of kicks per command &lt;= #  set defreason ""  ;# &lt;= set default kick reason ("" for none) &lt;= #  # prepare a list of nicks to kick and save the last command's reason #  foreach {nicks reason} $::pushkickq($chan) {    foreach {nk} [split $nicks ","] {      lappend knicks $nk    }  }  if {$reason eq ""} { set reason $defreason }  # chunk up the queued nicks as much as possible...#  while {[set len [llength $knicks]] &gt; 0} {    if {$len &gt; $max} {      set nicks [join [lrange $knicks 0 [expr {$max - 1}]] ","]      set knicks [lrange $knicks $max end]    } else {      set nicks [join $knicks ","]      set knicks ""    }    # ...and send each chunk of nicks to the server #    if {$reason eq ""} { putquick "KICK $chan $nicks"    } else { putquick "KICK $chan $nicks :$reason" }  }  # delete the custom queue variable #  unset ::pushkickq($chan)}</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7749">SpiKe^^</a> — Mon Nov 29, 2021 1:39 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[simo]]></name></author>
		<updated>2021-11-26T16:26:36-04:00</updated>

		<published>2021-11-26T16:26:36-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=110548#p110548</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=110548#p110548"/>
		<title type="html"><![CDATA[Detecting identical nicks within time frame]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=110548#p110548"><![CDATA[
i studied the code and couldnt really figure what u used spike^^<br>i seen u used time but couldnt figure why and how and what u checked with it<br>would you care to elaborate on the various functions in the code spike^^ <br><br>thanks<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12505">simo</a> — Fri Nov 26, 2021 4:26 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[simo]]></name></author>
		<updated>2021-11-26T05:50:30-04:00</updated>

		<published>2021-11-26T05:50:30-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=110546#p110546</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=110546#p110546"/>
		<title type="html"><![CDATA[Detecting identical nicks within time frame]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=110546#p110546"><![CDATA[
I would like to thank CrazyCat as well much appreciated<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12505">simo</a> — Fri Nov 26, 2021 5:50 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[simo]]></name></author>
		<updated>2021-11-25T15:38:02-04:00</updated>

		<published>2021-11-25T15:38:02-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=110545#p110545</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=110545#p110545"/>
		<title type="html"><![CDATA[Detecting identical nicks within time frame]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=110545#p110545"><![CDATA[
excellent loaded your latest posted code and it works flawlessly<br>thanks SpiKe^^ much apreciated<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12505">simo</a> — Thu Nov 25, 2021 3:38 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[SpiKe^^]]></name></author>
		<updated>2021-11-25T15:04:17-04:00</updated>

		<published>2021-11-25T15:04:17-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=110544#p110544</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=110544#p110544"/>
		<title type="html"><![CDATA[clonednicks.tcl ver 0.2 by SpiKe^^]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=110544#p110544"><![CDATA[
Updeted script with mode +R lock and partial nick ban?<div class="codebox"><p>Code: </p><pre><code>#### clonednicks.tcl ver 0.2 by SpiKe^^ (25Nov2021) ####bind join - * join:clonednicksproc join:clonednicks {nick uhost hand chan} {  global cnicks cnickq  if {[isbotnick $nick] || ([string length $nick] &lt; 6)} { return 0 }  if {[matchattr $hand f|f $chan]} { return 0 }  set chan [string tolower $chan]  set key [string tolower [string range $nick 0 4]]  set now [clock milliseconds]  if {[info exists cnicks(${key},$chan)]} {    ## just expire any old entries ##    set old [expr {$now - (3 * 1000)}]    set newls [list]    foreach joined $cnicks(${key},$chan) {      if {[lindex [split $joined ","] 1] &gt; $old} { lappend newls $joined }    }    if {![llength $newls]} {  unset cnicks(${key},$chan)    } else {  set cnicks(${key},$chan) $newls  }  }  if {![info exists cnicks(${key},$chan)]} {    set cnicks(${key},$chan) [list "0,${now},${nick}!$uhost"]    return 0  }  if {![info exists cnickq($chan)]} {    after 1000 [list dobans:clonednicks $chan]    dobans:lockchan $chan $key  }  if {[string match "0,*" [set first [lindex $cnicks(${key},$chan) 0]]]} {    set cnicks(${key},$chan) [list "1,[string range $first 2 end]"]    lappend cnickq($chan) [lindex [split $first ","] 2]  }  lappend cnicks(${key},$chan) "1,${now},${nick}!$uhost"  lappend cnickq($chan) "${nick}!$uhost"  return 0}proc dobans:clonednicks {chan} {  global cnickq  if {![info exists cnickq($chan)]} { return 0 }  if {![llength $cnickq($chan)] || ![botisop $chan]} {    unset cnickq($chan)  ;  return 0  }  set bmasks [list]  ;  set knicks [list]  foreach nkuhost $cnickq($chan) {    lassign [split $nkuhost "!@"] n u h    lappend knicks $n    lappend bmasks *!*@$h  }  set max 10  while {[set len [llength $bmasks]] &gt; 0} {    if {$len &gt; $max} {      set mode [string repeat "b" $max]      set masks [join [lrange $bmasks 0 [expr {$max - 1}]]]      set bmasks [lrange $bmasks $max end]    } else {      set mode [string repeat "b" $len]      set masks [join $bmasks]      set bmasks ""    }    putquick "MODE $chan +$mode $masks"  }  set max 4  while {[set len [llength $knicks]] &gt; 0} {    if {$len &gt; $max} {      set nicks [join [lrange $knicks 0 [expr {$max - 1}]] ","]      set knicks [lrange $knicks $max end]    } else {      set nicks [join $knicks ","]      set knicks ""    }    putserv "KICK $chan $nicks :!!! Indentical nicks !!!"  }  unset cnickq($chan)  ;  return 0}bind cron - {*/10 * * * *} cleanup:clonednicksproc cleanup:clonednicks {mn hr da mo wd} {  global cnicks  set old [expr {[clock milliseconds] - (3 * 1000)}]  foreach {key val} [array get cnicks] {    set newls [list]    foreach joined $val {      if {[lindex [split $joined ","] 1] &gt; $old} { lappend newls $joined }    }    if {![llength $newls]} {  unset cnicks($key)    } else {  set cnicks($key) $newls  }  }}proc dobans:lockchan {chan key} {  global cnick_flooded  if {![info exists cnick_flooded($chan)]} {    set cnick_flooded($chan) 1    putquick "MODE $chan +Rb ${key}*!*@*"    utimer 10 [list putquick "MODE $chan -R"]    utimer 10 [list unset -nocomplain ::cnick_flooded($chan)]  }}putlog "clonednicks.tcl ver 0.2 by SpiKe^^ Loaded."</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7749">SpiKe^^</a> — Thu Nov 25, 2021 3:04 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[simo]]></name></author>
		<updated>2021-11-25T12:52:03-04:00</updated>

		<published>2021-11-25T12:52:03-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=110543#p110543</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=110543#p110543"/>
		<title type="html"><![CDATA[Detecting identical nicks within time frame]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=110543#p110543"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code>#### clonednicks.tcl ver 0.1 by SpiKe^^ (24Nov2021) ####bind join - * join:clonednicksproc join:clonednicks {nick uhost hand chan} {global cnicks cnickqif {[isbotnick $nick] || ([string length $nick] &lt; 6)} { return 0 }if {[matchattr $hand f|f $chan]} { return 0 }set chan [string tolower $chan]set key [string tolower [string range $nick 0 4]]set now [clock milliseconds]if {[info exists cnicks(${key},$chan)]} {## just expire any old entries ##set old [expr {$now - (3 * 1000)}]set newls [list]foreach joined $cnicks(${key},$chan) {if {[lindex [split $joined ","] 1] &gt; $old} { lappend newls $joined }}if {![llength $newls]} {  unset cnicks(${key},$chan)} else {  set cnicks(${key},$chan) $newls  }}if {![info exists cnicks(${key},$chan)]} {set cnicks(${key},$chan) [list "0,${now},${nick}!$uhost"]return 0}if {![info exists cnickq($chan)]} {lock:chanz $chanafter 500 [list dobans:clonednicks $chan]}if {[string match "0,*" [set first [lindex $cnicks(${key},$chan) 0]]]} {set cnicks(${key},$chan) [list "1,[string range $first 2 end]"]lappend cnickq($chan) [lindex [split $first ","] 2]}lappend cnicks(${key},$chan) "1,${now},${nick}!$uhost"lappend cnickq($chan) "${nick}!$uhost"return 0}proc dobans:clonednicks {chan} {global cnickqif {![info exists cnickq($chan)]} { return 0 }if {![llength $cnickq($chan)] || ![botisop $chan]} {unset cnickq($chan)  ;  return 0}set bmasks [list]  ;  set knicks [list]foreach nkuhost $cnickq($chan) {lassign [split $nkuhost "!@"] n u hlappend knicks $nlappend bmasks *!*@$h}set max 12while {[set len [llength $bmasks]] &gt; 0} {if {$len &gt; $max} {set mode [string repeat "b" $max]set masks [join [lrange $bmasks 0 [expr {$max - 1}]]]set bmasks [lrange $bmasks $max end]} else {set mode [string repeat "b" $len]set masks [join $bmasks]set bmasks ""}putserv "mode $chan +$mode $masks"}set max 20while {[set len [llength $knicks]] &gt; 0} {if {$len &gt; $max} {set nicks [join [lrange $knicks 0 [expr {$max - 1}]] ","]set knicks [lrange $knicks $max end]} else {set nicks [join $knicks ","]set knicks ""}putquick "kick $chan $nicks :!!! Indentical nicks !!!"}unset cnickq($chan)  ;  return 0}bind cron - {* * * * *} cleanup:clonednicksproc cleanup:clonednicks {mn hr da mo wd} {global cnicksset old [expr {[clock milliseconds] - (3 * 1000)}]foreach {key val} [array get cnicks] {set newls [list]foreach joined $val {if {[lindex [split $joined ","] 1] &gt; $old} { lappend newls $joined }}if {![llength $newls]} {  unset cnicks($key)} else {  set cnicks($key) $newls  }}}proc lock:chanz {chan} {global botnick chan_floodedif {![info exists chan_flooded($chan)]} {set chan_flooded($chan) 1putquick "MODE $chan +Rb $::key*!*@*"utimer 5 [list putquick MODE $chan -R]utimer 5 [list unset -nocomplain chan_flooded($chan)]}}putlog "clonednicks.tcl ver 0.1 by SpiKe^^ Loaded."</code></pre></div><br>i tried to utilize <br><br>set key [string tolower [string range $nick 0 4]]<br><br>not sure i did it proper tho as it doesnt set ban on that as well<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12505">simo</a> — Thu Nov 25, 2021 12:52 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[simo]]></name></author>
		<updated>2021-11-25T12:03:36-04:00</updated>

		<published>2021-11-25T12:03:36-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=110542#p110542</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=110542#p110542"/>
		<title type="html"><![CDATA[Detecting identical nicks within time frame]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=110542#p110542"><![CDATA[
i tried adding the part that sets ban on the identical part SpiKe^^ not sure why it failed it sets the +R tho<br><br><a href="http://paste.tclhelp.net/?id=6qr1" class="postlink">http://paste.tclhelp.net/?id=6qr1</a><br><br>added it on line 34<br><br>oh i forgot i already took it out from this paste<br><br>the putquick "MODE $chan +R"<br><br>it was <br><br>putquick "MODE $chan +Rb $::key*!*@* "<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12505">simo</a> — Thu Nov 25, 2021 12:03 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[simo]]></name></author>
		<updated>2021-11-25T11:39:14-04:00</updated>

		<published>2021-11-25T11:39:14-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=110541#p110541</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=110541#p110541"/>
		<title type="html"><![CDATA[Detecting identical nicks within time frame]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=110541#p110541"><![CDATA[
i also took this opportunity to cleanup my config as i had files all over the place files i hardly used and that cleaned the issues i had <br><br>thanks SpiKe^^ much apreciated<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12505">simo</a> — Thu Nov 25, 2021 11:39 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[simo]]></name></author>
		<updated>2021-11-25T11:41:44-04:00</updated>

		<published>2021-11-25T11:30:32-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=110540#p110540</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=110540#p110540"/>
		<title type="html"><![CDATA[Detecting identical nicks within time frame]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=110540#p110540"><![CDATA[
tested again with only the identical tcl loaded as u suggested on IRC and it worked excactly as expected and reacts instant and gets all identical nicks <br>very nice indeed thanks SpiKe^^ much apreciated<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12505">simo</a> — Thu Nov 25, 2021 11:30 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[SpiKe^^]]></name></author>
		<updated>2021-11-25T10:36:44-04:00</updated>

		<published>2021-11-25T10:36:44-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=110539#p110539</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=110539#p110539"/>
		<title type="html"><![CDATA[Detecting identical nicks within time frame]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=110539#p110539"><![CDATA[
According to the above quote the whole deal was done in under 2/10ths of a second...<br><br>Show the channel logs when it doesn't.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7749">SpiKe^^</a> — Thu Nov 25, 2021 10:36 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[simo]]></name></author>
		<updated>2021-11-25T10:18:28-04:00</updated>

		<published>2021-11-25T10:18:28-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=110538#p110538</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=110538#p110538"/>
		<title type="html"><![CDATA[Detecting identical nicks within time frame]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=110538#p110538"><![CDATA[
anyway to have it react instant non opered as well ?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12505">simo</a> — Thu Nov 25, 2021 10:18 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[simo]]></name></author>
		<updated>2021-11-25T10:21:13-04:00</updated>

		<published>2021-11-25T10:10:30-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=110537#p110537</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=110537#p110537"/>
		<title type="html"><![CDATA[Detecting identical nicks within time frame]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=110537#p110537"><![CDATA[
if its opered it works as expected but for using as non opered it would take 10 seconds and longer for it to react tho and it somewhat freezes and is non responsive<br><br><blockquote class="uncited"><div>15:13:15 Join: clonedyuuppqaqv [ident: Mibbit] *!*@Cloacked-so0.bww.957.408.IP <br>15:13:15 Join: clonedzt [ident: Mibbit] *!*@Cloacked-yt3.urd.878.658.IP <br>15:13:15 Join: clonedgx [ident: Mibbit] *!*@Cloacked-721.395.971.995.IP <br>15:13:15 Join: clonedop [ident: Mibbit] *!*@Cloacked-7au.fcq.288.663.IP <br>15:13:15 Join: clonedyy [ident: Mibbit] *!*@Cloacked-j4e.jve.633.765.IP <br>15:13:15 Join: clonedjxltq [ident: Mibbit] *!*@Cloacked-2ep.625.174.499.IP <br>15:13:15 Join: clonedminfhm [ident: Mibbit] *!*@Cloacked-959.t5y.346.423.IP <br>15:13:15 Join: clonedeuqlei [ident: Mibbit] *!*@Cloacked-rm0.kyf.428.744.IP <br>15:13:15 Join: clonedrqyoiliw [ident: Mibbit] *!*@Cloacked-5zp.n83.075.093.IP <br><br> 15:13:33  @Hawk  Sets Mode on  #test  to:  +bbbbbbbbb *!*@Cloacked-so0.bww.957.408.IP *!*@Cloacked-yt3.urd.878.658.IP *!*@Cloacked-721.395.971.995.IP *!*@Cloacked-7au.fcq.288.663.IP *!*@Cloacked-j4e.jve.633.765.IP *!*@Cloacked-2ep.625.174.499.IP *!*@Cloacked-959.t5y.346.423.IP *!*@Cloacked-rm0.kyf.428.744.IP *!*@Cloacked-5zp.n83.075.093.IP <br><br> 15:13:33  clonedyuuppqaqv  Kicked from  #test  By  @Hawk  ( !!! Indentical nicks !!! ) <br> 15:13:33  clonedzt  Kicked from  #test  By  @Hawk  ( !!! Indentical nicks !!! ) <br> 15:13:34  clonedgx  Kicked from  #test  By  @Hawk  ( !!! Indentical nicks !!! ) <br> 15:13:34  clonedop  Kicked from  #test  By  @Hawk  ( !!! Indentical nicks !!! ) <br> 15:13:34  clonedyy  Kicked from  #test  By  @Hawk  ( !!! Indentical nicks !!! ) <br> 15:13:34  clonedjxltq  Kicked from  #test  By  @Hawk  ( !!! Indentical nicks !!! ) <br> 15:13:34  clonedminfhm  Kicked from  #test  By  @Hawk  ( !!! Indentical nicks !!! ) <br> 15:13:34  clonedeuqlei  Kicked from  #test  By  @Hawk  ( !!! Indentical nicks !!! ) <br> 15:13:34  clonedrqyoiliw  Kicked from  #test  By  @Hawk  ( !!! Indentical nicks !!! ) </div></blockquote><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12505">simo</a> — Thu Nov 25, 2021 10:10 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[SpiKe^^]]></name></author>
		<updated>2021-11-25T09:40:53-04:00</updated>

		<published>2021-11-25T09:40:53-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=110536#p110536</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=110536#p110536"/>
		<title type="html"><![CDATA[Detecting identical nicks within time frame]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=110536#p110536"><![CDATA[
OK, sounds like that code is fine.<br>Thanks<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7749">SpiKe^^</a> — Thu Nov 25, 2021 9:40 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[simo]]></name></author>
		<updated>2021-11-25T02:46:59-04:00</updated>

		<published>2021-11-25T02:46:59-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=110535#p110535</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=110535#p110535"/>
		<title type="html"><![CDATA[Detecting identical nicks within time frame]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=110535#p110535"><![CDATA[
<blockquote class="uncited"><div>Thanks for not bothering to tell me about the variable name issue.<br><br>What's the difference between if opered  and not?<br>Are you changing the putquck to putnow?<br>Explain what you are doing to make it speed up and slow down.<br>That wouldn't be anything the script could change there?<br>Try speeding up the queue after or maybe even slowing it some (it is one second now = 1000ms)</div></blockquote>Oh yea sorry was doing some testing was gonna tell ya about the var<br>No i kept it as is except i opered it altho it shouldn't make a difference just like your anti mass join tcl is decently fast opered and non opered<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12505">simo</a> — Thu Nov 25, 2021 2:46 am</p><hr />
]]></content>
	</entry>
	</feed>
