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

	<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>2005-05-30T03:43:41-04:00</updated>

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

		<entry>
		<author><name><![CDATA[deadite66]]></name></author>
		<updated>2005-05-30T03:43:41-04:00</updated>

		<published>2005-05-30T03:43:41-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=49978#p49978</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=49978#p49978"/>
		<title type="html"><![CDATA[adding text (bot chat) to logfile]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=49978#p49978"><![CDATA[
thanx<br>the script is bmotion so it has tcl scripts everywhere, i'll experiment sticking the putloglev command in various places.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6296">deadite66</a> — Mon May 30, 2005 3:43 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[demond]]></name></author>
		<updated>2005-05-30T03:28:44-04:00</updated>

		<published>2005-05-30T03:28:44-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=49977#p49977</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=49977#p49977"/>
		<title type="html"><![CDATA[adding text (bot chat) to logfile]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=49977#p49977"><![CDATA[
use [putloglev] with a level defined in your [logfile] command:<div class="codebox"><p>Code: </p><pre><code>logfile jk1 #lamest "logs/lamest.log"</code></pre></div>inside the script, AI or otherwise:<div class="codebox"><p>Code: </p><pre><code>putloglev 1 $chan $text</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5056">demond</a> — Mon May 30, 2005 3:28 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[deadite66]]></name></author>
		<updated>2005-05-30T03:05:11-04:00</updated>

		<published>2005-05-30T03:05:11-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=49975#p49975</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=49975#p49975"/>
		<title type="html"><![CDATA[adding text (bot chat) to logfile]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=49975#p49975"><![CDATA[
is their a way to get the bots output to the channel log.<br>it really annoying having an AI script and not have its sayings logged when they are published online.<br><br>can't believe with all the scripts there isn't a way or someone hasn't made a patch :/<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6296">deadite66</a> — Mon May 30, 2005 3:05 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[YooHoo]]></name></author>
		<updated>2004-06-10T07:59:35-04:00</updated>

		<published>2004-06-10T07:59:35-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=37163#p37163</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=37163#p37163"/>
		<title type="html"><![CDATA[adding text (bot chat) to logfile]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=37163#p37163"><![CDATA[
Maybe something similar to this...  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_razz.gif" width="15" height="15" alt=":P" title="Razz"> <br><div class="codebox"><p>Code: </p><pre><code>set botchatlog "botchat.log"bind pubm - * pubm:botchatproc pubm:botchat  {nick uhost hand chan text} { global botnick botchatlog  if {![$nick == $botnick]} {return 0}    set bc [open $botchatlog w]    puts $bc "$text"    close $bc}</code></pre></div>with a smidgen of luck, this 'lil script <em class="text-italics">should</em> log only public output from the eggdrop itself...be aware that this is <strong class="text-strong">untested</strong>, but I would appreciate any input   <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_mrgreen.gif" width="15" height="15" alt=":mrgreen:" title="Mr. Green"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2706">YooHoo</a> — Thu Jun 10, 2004 7:59 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[bruhv]]></name></author>
		<updated>2004-06-08T10:17:50-04:00</updated>

		<published>2004-06-08T10:17:50-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=37106#p37106</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=37106#p37106"/>
		<title type="html"><![CDATA[Re: adding text (bot chat) to logfile]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=37106#p37106"><![CDATA[
<blockquote class="uncited"><div>hello friend <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><br><br>It seems that di old bot doesn't log its own public chatter, so I wonder how I can do that.<br>The chatter is when the bot sends strings to channels, so it should be as easy as:<br>"putlog $string"<br>but I want this text to be added to a specific file: channel.log.</div></blockquote><blockquote class="uncited"><div>putloglev &lt;level(s)&gt; &lt;channel&gt; &lt;text&gt;<br>Description: sends text to the bot's logfile, tagged with all of the valid levels given. Use "*" to indicate all log levels.<br>Returns: nothing<br>Module: core</div></blockquote>been looking to sort this for a while, as i'm fed up with having to use another client just to log the bot's chat, but, no matter how hard i study the above it just doesn't fall into place for me :/<br>anyone fancy writing a quick bit of code that will make the bot add it's own chat to the logs, or to just one particular log file?<br>would be very much appreciated<br><br> <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_cool.gif" width="15" height="15" alt="8)" title="Cool"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4804">bruhv</a> — Tue Jun 08, 2004 10:17 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[user]]></name></author>
		<updated>2004-04-19T07:28:58-04:00</updated>

		<published>2004-04-19T07:28:58-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=35699#p35699</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=35699#p35699"/>
		<title type="html"><![CDATA[read doc/tcl-commands.doc]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=35699#p35699"><![CDATA[
<blockquote class="uncited"><div>putloglev &lt;level(s)&gt; &lt;channel&gt; &lt;text&gt;<br>Description: sends text to the bot's logfile, tagged with all of the valid levels given. Use "*" to indicate all log levels.<br>Returns: nothing<br>Module: core</div></blockquote><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2878">user</a> — Mon Apr 19, 2004 7:28 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ribot]]></name></author>
		<updated>2004-04-18T19:09:20-04:00</updated>

		<published>2004-04-18T19:09:20-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=35694#p35694</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=35694#p35694"/>
		<title type="html"><![CDATA[adding text (bot chat) to logfile]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=35694#p35694"><![CDATA[
hello friend <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><br><br>It seems that di old bot doesn't log its own public chatter, so I wonder how I can do that.<br>The chatter is when the bot sends strings to channels, so it should be as easy as:<br>"putlog $string"<br>but I want this text to be added to a specific file: channel.log.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3812">ribot</a> — Sun Apr 18, 2004 7:09 pm</p><hr />
]]></content>
	</entry>
	</feed>
