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

	<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-10-14T23:20:42-04:00</updated>

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

		<entry>
		<author><name><![CDATA[Zecca93]]></name></author>
		<updated>2013-10-14T23:20:42-04:00</updated>

		<published>2013-10-14T23:20:42-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=102119#p102119</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=102119#p102119"/>
		<title type="html"><![CDATA[spam script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=102119#p102119"><![CDATA[
Hey, i have a code for spamming. Bot will stay on op chan and will cycle on other chans, when someone sends him on join http, www he will send msg on op channel.<br><div class="codebox"><p>Code: </p><pre><code>##### 23.08.03# Spam Detective v1.0 by MarlbMan# irc.newnet.net #complete-chat################ Detects on join/on part spam in one channel, and alerts in another channel.########### Credits: I got the idea from Torr/MC_8's Spam Check. I wanted a script that would#          join/part a channel at specified intervals, but instead of kicking/banning#          I wanted it to alert the ops in another channel. This is my 5th script, but#          the first I've made public. Critism is welcome. I will be releasing a few#          more very soon.########### Settings:###### Which channel shall we monitor for spam?set spamdet(monitor_chan) "#"# Which channel shall we posts alerts in?set spamdet(alert_chan) "#"# How many minutes shall we idle in channel?set spamdet(idle_time) "15"# How many seconds shall we stay gone?set spamdet(gone_time) "30"# Exempt by nick (seperate by ,)set spamdet(nexempt) "ChanServ"# Exempt by host (seperate by ,)set spamdet(hexempt) ""# CTCP Keys to ignore (should always include action to prevent actions being reported)set spamdet(kexempt) "ACTION"###### Code (If you edit below this line you will hemmorage uncontrollably from your rectum)#####set spamdet(ver) "1.0"if {![string match *spamdetect* [timers]]} {timer $spamdet(idle_time) spamdetect}proc spamdetect {} {global spamdet botnickchannel set $spamdet(monitor_chan) +inactiveutimer $spamdet(gone_time) "channel set $spamdet(monitor_chan) -inactive"if {![string match *spamdetect* [timers]]} {timer $spamdet(idle_time) spamdetect}}proc EchoMESG { nick uhost handle args } {global spamdetif {![string match *$nick* $spamdet(nexempt)]} {if {![string match *$uhost* $spamdet(hexempt)]} {putserv "PRIVMSG $spamdet(alert_chan) :------------------------------------------------------------------------------"putserv "PRIVMSG $spamdet(alert_chan) :Nickname:\002 $nick \002($uhost): Channels: Type: \002MSG\002"putserv "PRIVMSG $spamdet(alert_chan) :Text:\002 $args \002"putserv "PRIVMSG $spamdet(alert_chan) :$nick spammed times"putserv "PRIVMSG $spamdet(alert_chan) :------------------------------------------------------------------------------"  } }}proc EchoNOTC { nick uhost handle args target } {global spamdetif {![string match *$nick* $spamdet(nexempt)]} {if {![string match *$uhost* $spamdet(hexempt)]} {putserv "PRIVMSG $spamdet(alert_chan) :------------------------------------------------------------------------------"putserv "PRIVMSG $spamdet(alert_chan) :Nickname:\002 $nick \002($uhost): Channels: Type: \002NOTICE\002"putserv "PRIVMSG $spamdet(alert_chan) :Text:\002 $args \002"putserv "PRIVMSG $spamdet(alert_chan) :$nick spammed times"putserv "PRIVMSG $spamdet(alert_chan) :------------------------------------------------------------------------------"  } }}proc EchoCTCP { nick uhost handle target key args } {global spamdetif {![string match *$nick* $spamdet(nexempt)]} {if {![string match *$uhost* $spamdet(hexempt)]} {if {![string match *$key* $spamdet(kexempt)]} {putserv "PRIVMSG $spamdet(alert_chan) :------------------------------------------------------------------------------"putserv "PRIVMSG $spamdet(alert_chan) :Nickname:\002 $nick \002($uhost): Channels: Type: \002CTCP\002"putserv "PRIVMSG $spamdet(alert_chan) :Text:\002 $args \002"putserv "PRIVMSG $spamdet(alert_chan) :$nick spammed times"putserv "PRIVMSG $spamdet(alert_chan) :------------------------------------------------------------------------------"   }  } }}bind ctcp -|- *http* EchoCTCPbind notc -|- *http* EchoNOTCbind msgm -|- *http* EchoMESGbind ctcp -|- *www.* EchoCTCPbind notc -|- *www.* EchoNOTCbind msgm -|- *www.* EchoMESGputlog "Spam Detective v1.0 by MarlbMan loaded"</code></pre></div>My question is how can i make it for multiple channels and how can i add how many times nick spammed if its a same msg here: :$nick spammed times" because of flood.<br>And how can i add channels that nick is on here: Nickname:\002 $nick \002($uhost): Channels: Type: \002CTCP\002"<br><br>Thanks<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=11982">Zecca93</a> — Mon Oct 14, 2013 11:20 pm</p><hr />
]]></content>
	</entry>
	</feed>
