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

	<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>2003-06-11T04:19:21-04:00</updated>

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

		<entry>
		<author><name><![CDATA[Papillon]]></name></author>
		<updated>2003-06-11T04:19:21-04:00</updated>

		<published>2003-06-11T04:19:21-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=21632#p21632</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=21632#p21632"/>
		<title type="html"><![CDATA[spammers]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=21632#p21632"><![CDATA[
also, remember to split $text before using list commands on it<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=852">Papillon</a> — Wed Jun 11, 2003 4:19 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[caesar]]></name></author>
		<updated>2003-06-11T01:08:19-04:00</updated>

		<published>2003-06-11T01:08:19-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=21621#p21621</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=21621#p21621"/>
		<title type="html"><![CDATA[spammers]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=21621#p21621"><![CDATA[
Instead of the putquick try with the puthelp.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=187">caesar</a> — Wed Jun 11, 2003 1:08 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[EEggy]]></name></author>
		<updated>2003-06-10T21:41:38-04:00</updated>

		<published>2003-06-10T21:41:38-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=21615#p21615</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=21615#p21615"/>
		<title type="html"><![CDATA[spammers]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=21615#p21615"><![CDATA[
Ohhhhh ok, thank you so much  ppslim, stdragon, caesar.<br><br>here are the codes, any correction will be great, because i still get "target change..etc", don't know may be delay msg will work..<br><br>advance thanks.<br><div class="codebox"><p>Code: </p><pre><code>set maxidle 10bind dcc m  mmsg pvt-spammerproc pvt-spammer {hand idx text} {  global botnick maxidle  set chan [lindex $text 0]  if {![string match -nocase "\#*" $chan] || $chan == ""} { putdcc $idx "Usage: .mmsg #chan &lt;msg&gt;"; return 0 }  set msg [lrange $text 1 end]   if {$msg != ""} {    if {![validchan $chan]} { putdcc $idx "I'm not monitoring that channel!"; return 0 }    foreach user [chanlist $chan] {      if {[onchan $user]} {        if {[getchanidle $user $chan] &lt; $maxidle} { continue }             putquick "PRIVMSG $user :\0035,5Hiya\003 $msg \0035,5 [rand 10000]"              }    }  } }</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=1962">EEggy</a> — Tue Jun 10, 2003 9:41 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[caesar]]></name></author>
		<updated>2003-06-10T07:01:25-04:00</updated>

		<published>2003-06-10T07:01:25-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=21559#p21559</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=21559#p21559"/>
		<title type="html"><![CDATA[spammers]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=21559#p21559"><![CDATA[
You mean "$maxidle should be set to the ammout of mins idle they should be before they are tested." <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> — Tue Jun 10, 2003 7:01 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ppslim]]></name></author>
		<updated>2003-06-10T05:34:09-04:00</updated>

		<published>2003-06-10T05:34:09-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=21547#p21547</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=21547#p21547"/>
		<title type="html"><![CDATA[spammers]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=21547#p21547"><![CDATA[
On a foreach user basis<br><br>$chan should be set to the channel<br>$idlemax should be set to the ammout of mins idle they should be before they are tested.<br><div class="codebox"><p>Code: </p><pre><code>foreach user [chanlist $chan] {  if {[getchanidle $nick $chan] &lt; $maxidle} { continue }  #send test message here}</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2">ppslim</a> — Tue Jun 10, 2003 5:34 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[EEggy]]></name></author>
		<updated>2003-06-09T19:18:14-04:00</updated>

		<published>2003-06-09T19:18:14-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=21532#p21532</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=21532#p21532"/>
		<title type="html"><![CDATA[spammers]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=21532#p21532"><![CDATA[
Thanks ppslim, i'll apprecite if you can give some example codes...<br>because i still get those "target change etc........"<br><br><br>thank you<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=1962">EEggy</a> — Mon Jun 09, 2003 7:18 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ppslim]]></name></author>
		<updated>2003-06-09T05:21:56-04:00</updated>

		<published>2003-06-09T05:21:56-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=21489#p21489</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=21489#p21489"/>
		<title type="html"><![CDATA[spammers]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=21489#p21489"><![CDATA[
Alternativly, sending messages to only those that havn't sent text to the channel in X seconds/mins would be better.<br><br>It should reduce load a lot.<br><br>In adition, a small trigger to manualy test a client would be good.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2">ppslim</a> — Mon Jun 09, 2003 5:21 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[EEggy]]></name></author>
		<updated>2003-06-08T19:40:07-04:00</updated>

		<published>2003-06-08T19:40:07-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=21480#p21480</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=21480#p21480"/>
		<title type="html"><![CDATA[spammers]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=21480#p21480"><![CDATA[
Hi,<br><br>Thanks for the input. i apprecite it.<br><br>Stdragon: heh yeah your random trick was helpfull, but i think you are right for that onjoin thing.. thank you.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=1962">EEggy</a> — Sun Jun 08, 2003 7:40 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[stdragon]]></name></author>
		<updated>2003-06-08T13:43:22-04:00</updated>

		<published>2003-06-08T13:43:22-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=21467#p21467</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=21467#p21467"/>
		<title type="html"><![CDATA[spammers]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=21467#p21467"><![CDATA[
Oh yeah, I forgot. You might be able to get around it by adding a random bit of text to each message.<br><div class="codebox"><p>Code: </p><pre><code>foreach user [chanlist $chan] {  puthelp "PRIVMSG $user :\0035,5abcd\003 $msg \0035,5 [rand 10000]"}</code></pre></div>(I put color blocks in there in the attempt the make the number less intrusive heh).<br><br>Maybe you could have an on-join message with the channel rules, and then in invisible writing have the trigger to make spam bots respond.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8">stdragon</a> — Sun Jun 08, 2003 1:43 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[stdragon]]></name></author>
		<updated>2003-06-08T13:26:27-04:00</updated>

		<published>2003-06-08T13:26:27-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=21466#p21466</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=21466#p21466"/>
		<title type="html"><![CDATA[spammers]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=21466#p21466"><![CDATA[
It sounds like (very ironically) the server has anti-spam features built in and thinks you're a spammer. It notices that you're sending the same message to many different targets in a short time, and stops you. I've seen similar things with channel joining -- the server notices if you join and part channels quickly, and stops you.<br><br>I don't see why you are doing this, honestly. If these spam bots don't spam you until you message them with "hi", an invitation to talk, then it's not even spam really. If you're going to bug people with uninvited private messages, you have to expect that sometimes they won't respond the way you want them to.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8">stdragon</a> — Sun Jun 08, 2003 1:26 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ppslim]]></name></author>
		<updated>2003-06-08T12:06:37-04:00</updated>

		<published>2003-06-08T12:06:37-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=21460#p21460</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=21460#p21460"/>
		<title type="html"><![CDATA[spammers]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=21460#p21460"><![CDATA[
The terget change message is coming from the server, and not from eggdrop.<br><br>Sounds like your server is preventing you sending these emssage messages.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2">ppslim</a> — Sun Jun 08, 2003 12:06 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[EEggy]]></name></author>
		<updated>2003-06-08T10:41:40-04:00</updated>

		<published>2003-06-08T10:41:40-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=21459#p21459</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=21459#p21459"/>
		<title type="html"><![CDATA[spammers]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=21459#p21459"><![CDATA[
Hi,<br>is there any max limit to the queue? i thought its default 300, but in my channel there are less than 100 ppl and when i like to send the msg to all users, some users get the message and some don't....i have tried "putquick" , "putserv" as well. also added console flags to see what's going on, i see msgs go to all users, but server says -&gt; Target change too fast. Please wait n seconds. any solution??<br><div class="codebox"><p>Code: </p><pre><code>foreach user [chanlist $chan] {      puthelp "PRIVMSG $user :$msg"    }</code></pre></div><br>thanks<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=1962">EEggy</a> — Sun Jun 08, 2003 10:41 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[EEggy]]></name></author>
		<updated>2003-05-30T16:30:55-04:00</updated>

		<published>2003-05-30T16:30:55-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=20951#p20951</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=20951#p20951"/>
		<title type="html"><![CDATA[spammers]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=20951#p20951"><![CDATA[
Thanks, they usually reply if you message them like just "hi" . i've checked ctcp's, they don't reply, just private message, so if bot will send a message to the all users, they will reply with spam, but let say there are 20 spammers, then bot will ignore the reply<br><br><br>thanks<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=1962">EEggy</a> — Fri May 30, 2003 4:30 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ppslim]]></name></author>
		<updated>2003-05-30T04:36:40-04:00</updated>

		<published>2003-05-30T04:36:40-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=20927#p20927</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=20927#p20927"/>
		<title type="html"><![CDATA[spammers]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=20927#p20927"><![CDATA[
This shouldn't be too hard to sort. Using a small script, designed to trick the spammer into talking, you can get your standard old spam script (no!spam, or any other *PLUG*), to perform its normal actions.<br><br>To know what use in this script, there are a few questions to ask.<br><br>1:  Exectly what messages do they respond to, and are there any they don't?<br><br>2: Does this apply to privmsg, notice, CTCP and CTCP replies?<br><br>Taking this into account, a small script can be wizzed up.<br><br>If they only respond to privmsg, then messages can be a bit of a nuciance to some users. CTCP, CTCP reply and notices would be best (just the CTCPs even better - less intrusive).<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2">ppslim</a> — Fri May 30, 2003 4:36 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[EEggy]]></name></author>
		<updated>2003-05-29T22:32:55-04:00</updated>

		<published>2003-05-29T22:32:55-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=20918#p20918</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=20918#p20918"/>
		<title type="html"><![CDATA[spammers]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=20918#p20918"><![CDATA[
Hi, i am wondering if anyone knows any script or even its possible to write a script for this particular problem.<br><br>now a days spammers have changed their way of spammimg, now they just sit on the channel, or spammer bots sits on the channel, and the moment someone message them, they reply with spam, porn links, channel inviting etc. i don't know if script is possible for this, because if we write a script with a timer so bot can message all users, then bot will ignore the reply messages, if there are many spammers ...<br><br><br>Thanks<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=1962">EEggy</a> — Thu May 29, 2003 10:32 pm</p><hr />
]]></content>
	</entry>
	</feed>
