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

	<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>2002-05-01T15:59:00-04:00</updated>

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

		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2002-05-01T15:59:00-04:00</updated>

		<published>2002-05-01T15:59:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=6591#p6591</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=6591#p6591"/>
		<title type="html"><![CDATA[invite/action tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=6591#p6591"><![CDATA[
humm weird it works for me, but i try it again  in my bots .. and then i answer u<br>btw show me the errors <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":smile:" title="Smile"><br><br><p>Statistics: Posted by Guest — Wed May 01, 2002 3:59 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2002-04-30T15:57:00-04:00</updated>

		<published>2002-04-30T15:57:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=6556#p6556</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=6556#p6556"/>
		<title type="html"><![CDATA[invite/action tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=6556#p6556"><![CDATA[
tnx very much <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":smile:" title="Smile"> but....dont work <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_sad.gif" width="15" height="15" alt=":sad:" title="Sad"><br>not work in public msg or clone ctcp spam..are my stupid eggdrop?with old tcl in public punish the spammer i dont undestand.this tcl is mi hell <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":smile:" title="Smile"><p>Statistics: Posted by Guest — Tue Apr 30, 2002 3:57 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2002-04-30T09:03:00-04:00</updated>

		<published>2002-04-30T09:03:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=6545#p6545</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=6545#p6545"/>
		<title type="html"><![CDATA[invite/action tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=6545#p6545"><![CDATA[
i've made this small tcl to u try it<br><br>Code ( any bug report it to me <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":smile:" title="Smile"> )<br>i think it works ... not guaranteed <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":smile:" title="Smile"><br><br><br># your chan(s) if chan &gt; 1 =&gt; "#Chan1 #Chan2"  ...<br>set chanz "your-chan"<br><br># kickops ? [1=yes/0=no]<br>set kickops "0"<br><br># kick voices ? [1=yes/0=no]<br>set kickvoices "0"<br><br># no kick flags<br>set nokickflags "f|f"<br><br># set ban time<br>set bantimez 30<br><br># badwords list<br>set notallowed {<br> "*#*"<br> "*www*"<br> "*http://*"<br>}<br><br># kick reason<br>set kickreason "no spam allowed here ... go play outside"<br><br><br>bind pubm - * pubm:notallowed<br>bind ctcp - ACTION ctcp:notallowed<br><br><br>proc pubm:notallowed {nick uhost hand chan arg} {<br>global botnick  chanz bantimez notallowed kickreason <br>global kickops kickvoices nokickflags bantimez<br> if {(([lsearch -exact [string tolower $chanz] [string tolower $chan]] != -1) || ($chanz == "*")) &amp;&amp; (![matchattr $hand b]) &amp;&amp; ($nick != $botnick)} {<br>   foreach bword [string tolower $notallowed] {<br>        if {[string match $bword [string tolower $arg]]} {<br>           if {!$kickops} {if {[isop $nick $chan]} {return 0}}<br>           if {!$kickvoices} {if {[isvoice $nick $chan]} {return 0}}   <br>    if {([info exists nokickflags]) &amp;&amp; ($nokickflags != "")} {<br>             if {([lindex [split $nokickflags |] 1] == "")} {<br>               if {[matchattr $hand $nokickflags]} {return 0}} {<br>               if {[matchattr $hand $nokickflags $chan]} {return 0}} <br>           }<br><br>     set why "Spam"<br>      set creator "noSpamz.tcl"<br>     set banz "*!*$uhost"<br>     newchanban $chan $banz $creator $why $bantimez<br>     putquick "mode $chan +b $banz"<br>     putquick "kick $chan $nick : $kickreason"<br>      dccbroadcast "02noSpamz02: banned $nick from $chan"<br>         }<br>   }<br> }<br>}<br><br><br>proc ctcp:notallowed {nick uhost hand chan keyword arg} {<br> pubm:notallowed $nick $uhost $hand $chan $arg<br>}<br><br>putlog "noSpamz.tcl by KID @ IRC.PTnet.org - 02Loaded02"<br><br><p>Statistics: Posted by Guest — Tue Apr 30, 2002 9:03 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2002-04-29T15:36:00-04:00</updated>

		<published>2002-04-29T15:36:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=6530#p6530</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=6530#p6530"/>
		<title type="html"><![CDATA[invite/action tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=6530#p6530"><![CDATA[
this is a complete tcl<br><br><br>### ban time <br>set btime 30<br>### Reason  kick<br>set bkick "Banned for $btime minuts for spam!!"<br><br>bind pubm - "*#some* banspam<br>bind pubm - "*join #*" banspam<br>bind pubm - "*<a href="www" class="postlink">www</a>.*" banspam<br><br>bind pub o|o !unban unban<br><br>proc unban {nick uhost hand chan argv} {<br>if [killchanban $chan $argv]==0 {<br>putserv "NOTICE $nick :$argv isn't in my Spammer Ban List."<br>} else {<br>putserv "MODE $chan -b $argv"<br>}<br>}<br><br>proc banspam {nick uhost hand chan argv} {<br>global btime bkick<br><br>if [isop $nick $chan]==0 {<br>set banlamer $uhost<br>set why "No Spam"<br>set creator "Anti-Spam"<br>newchanban $chan $uhost $creator $why $btime<br>putserv "MODE $chan +b *!*$uhost"<br>putserv "KICK $chan $nick :$bkick"<br>dccbroadcast "nospam TCL: Banned $nick from $chan"<br>}<br><br>}<p>Statistics: Posted by Guest — Mon Apr 29, 2002 3:36 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2002-04-29T15:01:00-04:00</updated>

		<published>2002-04-29T15:01:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=6529#p6529</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=6529#p6529"/>
		<title type="html"><![CDATA[invite/action tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=6529#p6529"><![CDATA[
tnx but not work <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_sad.gif" width="15" height="15" alt=":sad:" title="Sad"> I'm not a scripter i have take a nospam.tcl but more tcl antispam work only on public message,if you modify it please post in this forum,for me is important.<br>very tnx <p>Statistics: Posted by Guest — Mon Apr 29, 2002 3:01 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2002-04-29T13:00:00-04:00</updated>

		<published>2002-04-29T13:00:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=6525#p6525</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=6525#p6525"/>
		<title type="html"><![CDATA[invite/action tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=6525#p6525"><![CDATA[
put this code in the some file of your banspam pubm proc <br><br>i think this works ... try it<br><br>bind ctcp - ACTION actionzban<br>proc actionzban {nick uhost hand chan key argv} {<br> banspam  $nick $uhost $hand $chan $argv<br>}<p>Statistics: Posted by Guest — Mon Apr 29, 2002 1:00 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2002-04-29T10:32:00-04:00</updated>

		<published>2002-04-29T10:32:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=6523#p6523</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=6523#p6523"/>
		<title type="html"><![CDATA[invite/action tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=6523#p6523"><![CDATA[
bind pubm - "*#kerouac*" banspam<br><br>}<br><br>proc banspam {nick uhost hand chan argv} {<br>global btime bkick<br><br><br>Now this tcl work on msg in the channel,but onli with normal msg,if I wont it work on ACTION,notice; whot can I do??Please help me tnx.<p>Statistics: Posted by Guest — Mon Apr 29, 2002 10:32 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2002-04-27T18:54:00-04:00</updated>

		<published>2002-04-27T18:54:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=6481#p6481</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=6481#p6481"/>
		<title type="html"><![CDATA[invite/action tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=6481#p6481"><![CDATA[
Please i'm looking for a tcl for protect a channel from /invite and /me spam.I don't know why some tcl don't work on eggdrop 1.6.10 not for invite or action.Please somebody help me for a simple tcl. tnx. excuse me for bad english.<br>bye n3v3r<p>Statistics: Posted by Guest — Sat Apr 27, 2002 6:54 pm</p><hr />
]]></content>
	</entry>
	</feed>
