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

	<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>2011-03-01T08:26:33-04:00</updated>

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

		<entry>
		<author><name><![CDATA[samhain]]></name></author>
		<updated>2011-03-01T08:26:33-04:00</updated>

		<published>2011-03-01T08:26:33-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=96264#p96264</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=96264#p96264"/>
		<title type="html"><![CDATA[errors....]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=96264#p96264"><![CDATA[
It was from awyeah's post on the forum, with Title mass join clones problem, but anyways, He got it from Algol's clonepro.tcl which is no more exist on the tcl archive, I found agood script by RAna usman for clones anti join, Thanks for your time though caesar. <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=8567">samhain</a> — Tue Mar 01, 2011 8:26 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[caesar]]></name></author>
		<updated>2011-03-01T02:52:37-04:00</updated>

		<published>2011-03-01T02:52:37-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=96258#p96258</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=96258#p96258"/>
		<title type="html"><![CDATA[errors....]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=96258#p96258"><![CDATA[
From what I can see you don't have some pieces of the code, thus the errors. From where you got this code?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=187">caesar</a> — Tue Mar 01, 2011 2:52 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[samhain]]></name></author>
		<updated>2011-02-28T15:52:17-04:00</updated>

		<published>2011-02-28T15:52:17-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=96253#p96253</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=96253#p96253"/>
		<title type="html"><![CDATA[errors....]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=96253#p96253"><![CDATA[
I tried using and loading this script<div class="codebox"><p>Code: </p><pre><code># The channels you want this script active onset cp_chans "#eleet"# Number of *!*@host joins in how many seconds, joins:secondsset cp_j_flood 2:5# Number of *!*user@host join/part cycles in how many seconds, j/p_cycles:secondsset cp_jp_flood 2:8# Period in minutes to ban *!*@host for multiple joins or join/part floodsset clone_btime 10##### DON'T edit anything below this line unless you know what you're doing #####bind join - * clone_pro_joinbind part - * clone_pro_leavebind sign - * clone_pro_leaveproc clone_pro_join {nick uhost hand chan} {   global cp_chans cp_j_flood cp_jp_flood cp_host_count cp_uh_count clone_btime   set uhost [string tolower $uhost]   set host [lindex [split $uhost @] 1]   set chan [string tolower $chan]   set file [open $::kickno r]   set tilnow "[gets $file]"   catch {close $file}   set totalkicks [expr $tilnow]      set cloneban "*!*@[lindex [split $uhost @] 1]"   if {[lsearch -exact $cp_chans $chan] == -1} {return 0}   if {![info exists cp_host_count($host:$chan)]} {      set cp_host_count($host:$chan) 1   } else {      incr cp_host_count($host:$chan)   }   utimer [lindex $cp_j_flood 1] [list cp_expire cp_host_count($host:$chan)]   if {$cp_host_count($host:$chan) &gt; [lindex $cp_j_flood 0]} {            if {[botisop $chan]} {            putquick "MODE $chan +b $cloneban"         timer $clone_btime "pushmode $chan -b $cloneban"          set mask "*!*@[lindex [split $uhost @] 1]"         set list [list]           foreach user [chanlist $chan] {             if {[string equal -nocase $user $nick]} { continue }             if {[string match -nocase $mask "${nick}![getchanhost $user $chan]"]} { lappend list $user }           }           putserv "KICK $chan [join $list {,}] :0,1 Excessive Clone/Botnet Kick 12,0 - 12Detected 2*3 or more* 12clients with the 2host $cloneban 12joining in here, in 2less than 4 secs. 2Excessive Clones 12and 2Botnets 12are 2not allowed 12to 2enter this channel, 12if done so further more 2your host 12will be 2banned permanently.2 - (Kick #$totalkicks)"      }    }   if {![info exists cp_uh_count($uhost:$chan)]} {      set cp_uh_count($uhost:$chan) 1   } else {      incr cp_uh_count($uhost:$chan)   }   utimer [lindex $cp_jp_flood 1] [list cp_expire cp_uh_count($uhost:$chan)]   if {$cp_uh_count($uhost:$chan) &gt;= [expr [lindex $cp_jp_flood 0]*2]} {            if {[botisop $chan]} {            putquick "MODE $chan +b $cloneban"            putquick "KICK $chan $nick :0,1 Mass Join/Part Flood Kick 12,0 - 12Detected 2multiple 12clients in here, with the 2host $cloneban 12performing2 *more than 3* join/part cycles,12 in less than2 10 secs. 2Mass Join/Part floods 12by 2botnets 12are 2prohibited in here, 12if done so further more 212you will be 2banned permanently 12from this 2network/channel.2 - (Kick #$totalkicks)"            timer $clone_btime "pushmode $chan -b $cloneban"      }   }}</code></pre></div>But it gives these errors......<blockquote class="uncited"><div>(Luggage): [19:41] Tcl error [clone_pro_join]: can't read "::kickno": no such variable<br>(Luggage): [19:42] Tcl error [clone_pro_leave]: invalid command name "clone_pro_leave"</div></blockquote>can anyone help please?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8567">samhain</a> — Mon Feb 28, 2011 3:52 pm</p><hr />
]]></content>
	</entry>
	</feed>
