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

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

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

		<entry>
		<author><name><![CDATA[neocharles]]></name></author>
		<updated>2013-07-20T23:03:42-04:00</updated>

		<published>2013-07-20T23:03:42-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=101875#p101875</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=101875#p101875"/>
		<title type="html"><![CDATA[eggdrop 1.8 not logging channel chatter]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=101875#p101875"><![CDATA[
Is this fixed as of the current version?  I am having issues with logging myself...<br>&lt;edit&gt;<br>I tried disabling nearly all the other tcl files, and my logs still aren't logging anything (jkp) that is said in the room.... Thoughts?<br><br>(Also realizing I'm running 1.6.21, not 1.8 )<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12227">neocharles</a> — Sat Jul 20, 2013 11:03 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[speechles]]></name></author>
		<updated>2012-11-05T23:30:54-04:00</updated>

		<published>2012-11-05T23:30:54-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=100186#p100186</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=100186#p100186"/>
		<title type="html"><![CDATA[eggdrop 1.8 not logging channel chatter]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=100186#p100186"><![CDATA[
<blockquote class="uncited"><div>speechles,<br>Just a question; is there any particular reason for returning 1 in the first place?</div></blockquote>legacy. I wasn't the creator of this script (I've merely altered it unleashing it's strengths and turned on all the bells and whistles), the return 1 was incith's contribution (hence it still being named after him). In preserving as much of what he had as possible I've left it (this isn't speechles:google). It harms nothing having it there on an 1.6.17 eggdrop/windrop.<br><blockquote class="uncited"><div>Also, your version-test would break on older eggdrops such as 1.6.9, since you are doing a string comparison. I'd rather recommend using numversion for this kind of test.</div></blockquote>True, but in all honesty the script requires tcl8.4 or higher. Most bots compiled so long ago with 1.6.9 would need updating. But I do see your point and in the next release of this script your suggestion will be used. I was more into fixing it as quickly as possible and hadn't taken into account all the ramifications of the difference between the two. Now it is quite clear. Thanks for the advice. <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=8138">speechles</a> — Mon Nov 05, 2012 11:30 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[nml375]]></name></author>
		<updated>2012-11-04T09:20:37-04:00</updated>

		<published>2012-11-04T09:20:37-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=100185#p100185</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=100185#p100185"/>
		<title type="html"><![CDATA[eggdrop 1.8 not logging channel chatter]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=100185#p100185"><![CDATA[
speechles,<br>Just a question; is there any particular reason for returning 1 in the first place?<br>Also, your version-test would break on older eggdrops such as 1.6.9, since you are doing a string comparison. I'd rather recommend using numversion for this kind of test.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8052">nml375</a> — Sun Nov 04, 2012 9:20 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[speechles]]></name></author>
		<updated>2012-11-03T00:13:02-04:00</updated>

		<published>2012-11-03T00:13:02-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=100183#p100183</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=100183#p100183"/>
		<title type="html"><![CDATA[eggdrop 1.8 not logging channel chatter]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=100183#p100183"><![CDATA[
Actually... It's because of the test platform I use. Everything is tested on windrop 1.6.17 at first.<br><blockquote class="uncited"><div>    - Added support to MSGM, PUBM, NOTC, and WALL binds to support bound<br>      procs returning 1 to prevent logging of the trigger message text.</div></blockquote>So now, yeah it has a return 1 where it should be a return 0. <div class="codebox"><p>Code: </p><pre><code>if {$::version &lt; "1.6.18"} { return 1 } { return 0 }</code></pre></div>Future versions of the script will include the code above to detect which value to return. The should fix the logging issue for all versions of eggdrop/windrop.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8138">speechles</a> — Sat Nov 03, 2012 12:13 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[swarfega]]></name></author>
		<updated>2012-11-02T17:09:14-04:00</updated>

		<published>2012-11-02T17:09:14-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=100180#p100180</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=100180#p100180"/>
		<title type="html"><![CDATA[eggdrop 1.8 not logging channel chatter]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=100180#p100180"><![CDATA[
That same script had one of those as well. So I decided to make a dedicated stats bot with no other scripts, which worked.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8269">swarfega</a> — Fri Nov 02, 2012 5:09 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[nml375]]></name></author>
		<updated>2012-11-01T16:24:13-04:00</updated>

		<published>2012-11-01T16:24:13-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=100176#p100176</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=100176#p100176"/>
		<title type="html"><![CDATA[eggdrop 1.8 not logging channel chatter]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=100176#p100176"><![CDATA[
An msgm-binding should not interfer with public (channel) chatter.<br>A pubm-binding however would prevent logging if the triggered code returns 1.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8052">nml375</a> — Thu Nov 01, 2012 4:24 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[swarfega]]></name></author>
		<updated>2012-11-01T13:29:20-04:00</updated>

		<published>2012-11-01T13:29:20-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=100175#p100175</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=100175#p100175"/>
		<title type="html"><![CDATA[eggdrop 1.8 not logging channel chatter]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=100175#p100175"><![CDATA[
I have found this in incith:google and wonder if its causing a conflict:<br><blockquote class="uncited"><div>bind msgm -|- "*" incith::google::private_message</div></blockquote><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8269">swarfega</a> — Thu Nov 01, 2012 1:29 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[swarfega]]></name></author>
		<updated>2012-11-01T12:54:09-04:00</updated>

		<published>2012-11-01T12:54:09-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=100174#p100174</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=100174#p100174"/>
		<title type="html"><![CDATA[eggdrop 1.8 not logging channel chatter]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=100174#p100174"><![CDATA[
I have a recent build of eggdrop 1.8 and the most recent pisg stats. <br><br>I am trying to set up the bot so it logs all channel chatter so that it can be used with pisg. Currently its only logging joins, parts, quits, actions. <br><br>How can I fix this?<br><blockquote class="uncited"><div>set max-logs 50<br>set max-logsize 2000<br>set quick-logs 0<br>set raw-log 0<br><br>logfile mcobxs * "logs/egglog/charlotte.log"<br>logfile jpk #blackoutgaming "logs/blackoutgaming/blackoutgaming.log"<br><br>set log-time 1<br>set timestamp-format {[%H:%M:%S]}<br>set keep-all-logs 1<br>set logfile-suffix ".%d%b%Y"<br>set switch-logfiles-at 000<br>set quiet-save 0<br></div></blockquote><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8269">swarfega</a> — Thu Nov 01, 2012 12:54 pm</p><hr />
]]></content>
	</entry>
	</feed>
