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

	<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-04-03T13:03:58-04:00</updated>

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

		<entry>
		<author><name><![CDATA[ppslim]]></name></author>
		<updated>2003-04-03T13:03:58-04:00</updated>

		<published>2003-04-03T13:03:58-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=18490#p18490</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=18490#p18490"/>
		<title type="html"><![CDATA[Logs and ads]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=18490#p18490"><![CDATA[
ou should not do that with the RAW bind.<br><br>This blocks all incoming PRIVMSG commands, including CTCP messages.<br><br>This will make your bot almost uncontactable.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2">ppslim</a> — Thu Apr 03, 2003 1:03 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2003-04-03T12:36:05-04:00</updated>

		<published>2003-04-03T12:36:05-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=18489#p18489</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=18489#p18489"/>
		<title type="html"><![CDATA[Logs and ads]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=18489#p18489"><![CDATA[
Yeah I figured that out myself, but I couldn't get it working with that either, so i had to add the info to the logfile manually. Finally got it working using this:<br><div class="codebox"><p>Code: </p><pre><code>bind raw - privmsg msg_blocker proc msg_blocker {from keyword text} {   if {[string match \*xdcc* $text]} {return 1}     putloglev "*" &lt;mychannel&gt; "&lt;[lindex [split $from "!"] 0]&gt; [join [lrange [split $text ":"] 1 end] ":"]"     return 1}</code></pre></div>Thanks for your help <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><p>Statistics: Posted by Guest — Thu Apr 03, 2003 12:36 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[stdragon]]></name></author>
		<updated>2003-04-02T19:47:58-04:00</updated>

		<published>2003-04-02T19:47:58-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=18471#p18471</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=18471#p18471"/>
		<title type="html"><![CDATA[Logs and ads]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=18471#p18471"><![CDATA[
hmm I didn't copy it right or something<br><br>It should be {*\*\**}, with braces like that<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8">stdragon</a> — Wed Apr 02, 2003 7:47 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2003-04-02T19:46:22-04:00</updated>

		<published>2003-04-02T19:46:22-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=18470#p18470</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=18470#p18470"/>
		<title type="html"><![CDATA[Logs and ads]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=18470#p18470"><![CDATA[
Yes, that actually almost worked, thanks a lot. Problem is that it always rawed, so that nothing said in the channel was logged at all. Very strange actually, it says clearly in tcl-commands.doc that return 1 would make it raw and that return 0 wouldn't.<p>Statistics: Posted by Guest — Wed Apr 02, 2003 7:46 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[stdragon]]></name></author>
		<updated>2003-04-02T16:28:08-04:00</updated>

		<published>2003-04-02T16:28:08-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=18458#p18458</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=18458#p18458"/>
		<title type="html"><![CDATA[Logs and ads]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=18458#p18458"><![CDATA[
This "should" block any lines that have a ** in them (like the ones you pasted). To change it to something else, just change the string match command.<br><div class="codebox"><p>Code: </p><pre><code>bind raw - privmsg msg_blockerproc msg_blocker {from keyword text} {  if {[string match *\*\** $text]} {return 1}  return 0}</code></pre></div>I didn't test it.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8">stdragon</a> — Wed Apr 02, 2003 4:28 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[GodOfSuicide]]></name></author>
		<updated>2003-04-02T14:05:50-04:00</updated>

		<published>2003-04-02T14:05:50-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=18454#p18454</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=18454#p18454"/>
		<title type="html"><![CDATA[Logs and ads]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=18454#p18454"><![CDATA[
i think he doesnt want to let the bot log channel msg's from a certain nick / user because the log file would get too large. he doesn't want the lines to apear in the log file..<br><br>maybe you try something like mel and add some line to ignore it...<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=1433">GodOfSuicide</a> — Wed Apr 02, 2003 2:05 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ppslim]]></name></author>
		<updated>2003-04-02T13:01:33-04:00</updated>

		<published>2003-04-02T13:01:33-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=18453#p18453</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=18453#p18453"/>
		<title type="html"><![CDATA[Logs and ads]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=18453#p18453"><![CDATA[
What you want is to ignore liens like that, but at the same time, not ignore any nicknames?<br><br>I don't see the logic in try to ignore nothing<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2">ppslim</a> — Wed Apr 02, 2003 1:01 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2003-04-02T11:19:27-04:00</updated>

		<published>2003-04-02T11:19:27-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=18447#p18447</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=18447#p18447"/>
		<title type="html"><![CDATA[Logs and ads]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=18447#p18447"><![CDATA[
Yes, I'm sorry about that. Just forget that part, and say that I want to know how I can make eggdrop ignore all lines with sertain words in it. I don't want to ignore any nicks. It's also filling up my logfiles, so I'm afraid configuring pisg is not the answer.<p>Statistics: Posted by Guest — Wed Apr 02, 2003 11:19 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ppslim]]></name></author>
		<updated>2003-04-02T06:12:05-04:00</updated>

		<published>2003-04-02T06:12:05-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=18442#p18442</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=18442#p18442"/>
		<title type="html"><![CDATA[Logs and ads]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=18442#p18442"><![CDATA[
No, not this time, but a warning will be issued. Only because the problem is related to site stats, which is legitimate.<br><br>You would have to see the config of psig to see if there is any way to exclude certain nicknames.<br><br>Though, please do take your warez somwhere else.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2">ppslim</a> — Wed Apr 02, 2003 6:12 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[spock]]></name></author>
		<updated>2003-04-01T19:07:27-04:00</updated>

		<published>2003-04-01T19:07:27-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=18435#p18435</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=18435#p18435"/>
		<title type="html"><![CDATA[Logs and ads]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=18435#p18435"><![CDATA[
omg(!) what will ppslim say.<br><br>take your warez elsewarez <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=2369">spock</a> — Tue Apr 01, 2003 7:07 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2003-04-01T12:35:49-04:00</updated>

		<published>2003-04-01T12:35:49-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=18430#p18430</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=18430#p18430"/>
		<title type="html"><![CDATA[Logs and ads]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=18430#p18430"><![CDATA[
Hi, I'm running an eggdrop and a pisg to write chanstats to a file. Pisg will just read the eggdrop logs, and make a nice html page with stats; most used words, most active nicks, etc. out of that. Problem is I run the bot on a serving channel, which means there's a lot of ads shown. A typical ad would look like this:<br><br>&lt;zaconDCC&gt; ** For a listing type: "/msg zaconDCC xdcc list" **<br>&lt;zaconDCC&gt; ** Futurama Season 5 SVCD releases **<br><br>The statspage says that zaconDCC is a very active nick because he says so much. I don't want that.<br><br>An nice and easy solution would be to make eggdrop skip everything that have "For a listing type" in it. Is there someway i could do that?<br><br>Thanks for any help.<p>Statistics: Posted by Guest — Tue Apr 01, 2003 12:35 pm</p><hr />
]]></content>
	</entry>
	</feed>
