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

	<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-01-04T20:40:23-04:00</updated>

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

		<entry>
		<author><name><![CDATA[kingkong]]></name></author>
		<updated>2013-01-04T20:40:23-04:00</updated>

		<published>2013-01-04T20:40:23-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=100546#p100546</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=100546#p100546"/>
		<title type="html"><![CDATA[works great :)]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=100546#p100546"><![CDATA[
i tested it and works great. i formatted text colors and looks awesome. thanks you <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=11957">kingkong</a> — Fri Jan 04, 2013 8:40 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[SpiKe^^]]></name></author>
		<updated>2013-01-04T13:26:08-04:00</updated>

		<published>2013-01-04T13:26:08-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=100538#p100538</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=100538#p100538"/>
		<title type="html"><![CDATA[Fake user tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=100538#p100538"><![CDATA[
One last try...<br>Adds a couple options and fixes some badword matching issues.<div class="codebox"><p>Code: </p><pre><code># eggforward.tcl ver 0.3 by SpiKe^^ (4 Jan 2013) ## author:  SpiKe^^ ## e-mail:  spike&lt;at&gt;mytclscripts&lt;dot&gt;com ## webpage: http://mytclscripts.com/ ## This file is Copyrighted under the GNU Public License. ## http://www.gnu.org/copyleft/gpl.html ###### Based Almost Entirely on This Script by tomekk ###### eggforward.tcl ver 0.1 by tomekk                       ## Author: tomekk                                         ##                                                        ## e-mail:  tomekk/@/tomekk/./org                         ## home page: http://tomekk.org/                          ##                                                        ## Version 0.1                                            ##                                                        ## This file is Copyrighted under the GNU Public License. ## http://www.gnu.org/copyleft/gpl.html                   ############################################################ Set the private channel (all msgs sent to the bot, will be sent here)set private_channel "#private" # Enable multi bot support???  ( 0 = NO  |  1 = YES )# 0 = The reply command is: !forward &lt;target&gt; &lt;text&gt;# 1 = The reply command is: !&lt;botnick&gt; &lt;target&gt; &lt;text&gt;set is_multi_bot "0"# Set the command prefix for the !forward and !&lt;botnick&gt; triggersset forward_cmd "!"# List things not to forward to the channel, one item per line: # list commands first, then any badwords not to forward.# List commands like this:  op * # List badwords like this:  * badword *  :or:  *badword*#  Note: use * badword * for only the whole word 'badword'#        use *badword* for anywhere in words (match. 'isabadword')set dont_forward {   auth *   ident *   op * }  ;## end of dont_forward setting ## # If a msg to the bot contains a *badword*,# would like a line sent to private_channel stating that??# Leave this empty to just ignore message with badwords.# or set this the the text to use (will be prefixed by: nick -&gt; )set say_badword "Message Contains badword"############################################################## bind msgm - "*" private_proc set dont_forward [split [string trim $dont_forward] \n]set say_badword [string trim $say_badword]proc lets_do_unbind {} { foreach bnd [binds forward_proc] {  foreach {ty fl na hi pr} $bnd { break }  unbind $ty $fl $na $pr }}lets_do_unbindif {$is_multi_bot=="1"} {  bind pubm - "*" forward_proc } else {  bind pub - ${forward_cmd}forward forward_proc  }proc private_proc { nick uhost hand arg } {   global private_channel dont_forward say_badword  foreach item $dont_forward {     set item [string trim $item]     if {[string index $item 0] eq "*"} {      if {[string match -nocase $item " $arg "]} {        if {$say_badword eq ""} {  return  }        set arg $say_badword  ;  break      }    } elseif {[string match -nocase $item $arg]} {  return  }   }   if {[botonchan $private_channel]} {     puthelp "PRIVMSG $private_channel :$nick -&gt; $arg"   }   return } proc forward_proc { nick uhost hand chan arg } {   global private_channel is_multi_bot botnick forward_cmd  set forward_arg [split $arg]   if {$is_multi_bot=="1"} {  set trig [lindex $forward_arg 0]    if {![string match -nocase $trig $forward_cmd$botnick]} { return }    set forward_arg [lrange $forward_arg 1 end]  } else {  set trig ${forward_cmd}forward  }  set forward_to [lindex $forward_arg 0]   set forward_msg [join [lrange $forward_arg 1 end]]   if {[string match -nocase $chan $private_channel]} {     if {$forward_msg ne ""} {       puthelp "PRIVMSG $forward_to :$forward_msg"     } else {       puthelp "PRIVMSG $chan :use: $trig &lt;nick&gt; &lt;msg&gt;"     }   }   return } putlog "eggforward.tcl ver 0.3 by SpiKe^^ loaded" </code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7749">SpiKe^^</a> — Fri Jan 04, 2013 1:26 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[SpiKe^^]]></name></author>
		<updated>2013-01-04T13:28:52-04:00</updated>

		<published>2013-01-03T22:47:23-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=100533#p100533</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=100533#p100533"/>
		<title type="html"><![CDATA[eggforward.tcl ver 0.2]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=100533#p100533"><![CDATA[
Well, was asked to make this script work for multiple bots all reporting to the same channel.<br>As it was, when you tried to make one bot reply to someone, they all did:)<br>This changes the trigger to !botnick if multi bot is enabled.<div class="codebox"><p>Code: </p><pre><code># eggforward.tcl ver 0.2 by SpiKe^^ (3 Jan 2013) ## author:  SpiKe^^ ## e-mail:  spike&lt;at&gt;mytclscripts&lt;dot&gt;com ## webpage: http://mytclscripts.com/ ## This file is Copyrighted under the GNU Public License. ## http://www.gnu.org/copyleft/gpl.html ###### Based Almost Entirely on This Script by tomekk ###### eggforward.tcl ver 0.1 by tomekk                       ## Author: tomekk                                         ##                                                        ## e-mail:  tomekk/@/tomekk/./org                         ## home page: http://tomekk.org/                          ##                                                        ## Version 0.1                                            ##                                                        ## This file is Copyrighted under the GNU Public License. ## http://www.gnu.org/copyleft/gpl.html                   ############################################################ Set the private channel (all msgs sent to the bot, will be sent here)set private_channel "#private" # Enable multi bot support???  ( 0 = NO  |  1 = YES )# 0 = The reply command is: !forward &lt;target&gt; &lt;text&gt;# 1 = The reply command is: !&lt;botnick&gt; &lt;target&gt; &lt;text&gt;set is_multi_bot "0"# List things not to forward to the channel, one item per line: # List commands like this:  op * # List badwords like this:  * badword *  :or:  *badword* set dont_forward {   auth *   ident *   op * }  ;## end of dont_forward setting ## ############################################################## bind msgm - "*" private_proc set dont_forward [split [string trim $dont_forward] \n]proc lets_do_unbind {} { foreach bnd [binds forward_proc] {  foreach {ty fl na hi pr} $bnd { break }  unbind $ty $fl $na $pr }}lets_do_unbindif {$is_multi_bot=="1"} {  bind pubm - "*" forward_proc } else {  bind pub - !forward forward_proc  }proc private_proc { nick uhost hand arg } {   global private_channel dont_forward   foreach item $dont_forward {     set item [string trim $item]     if {[string match -nocase $item $arg]} {  return  }   }   if {[botonchan $private_channel]} {     puthelp "PRIVMSG $private_channel :$nick -&gt; $arg"   }   return } proc forward_proc { nick uhost hand chan arg } {   global private_channel is_multi_bot botnick  set forward_arg [split $arg]   if {$is_multi_bot=="1"} {  set trig [lindex $forward_arg 0]    if {![string match -nocase $trig !$botnick]} {  return  }    set forward_arg [lrange $forward_arg 1 end]  } else {  set trig !forward  }  set forward_to [lindex $forward_arg 0]   set forward_msg [join [lrange $forward_arg 1 end]]   if {[string match -nocase $chan $private_channel]} {     if {$forward_msg ne ""} {       puthelp "PRIVMSG $forward_to :$forward_msg"     } else {       puthelp "PRIVMSG $chan :use: $trig &lt;nick&gt; &lt;msg&gt;"     }   }   return } putlog "eggforward.tcl ver 0.2 by SpiKe^^ loaded" </code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7749">SpiKe^^</a> — Thu Jan 03, 2013 10:47 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[SpiKe^^]]></name></author>
		<updated>2013-01-03T21:03:13-04:00</updated>

		<published>2013-01-03T21:03:13-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=100531#p100531</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=100531#p100531"/>
		<title type="html"><![CDATA[Fake user tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=100531#p100531"><![CDATA[
caesar wrote:<br><blockquote class="uncited"><div>You don't need to count the lines (length $dont_forward) cos if there aren't any the foreach loop won't execute anything.</div></blockquote>O.K., I'll buy that:)  Removed the check from the above script.<br><blockquote class="uncited"><div>Also, I think you meant break not return in: <br>Quote: <br><br>if {[string match -nocase $item $arg]} { return } </div></blockquote>Actually, I did mean return. If the typed text matches any of the string patterns in the dont_forward setting, I want the process to return out, and not say anything to the private_channel.<br><blockquote class="uncited"><div>Besides, you should check only the first argument (word) from user input against the $dont_forward variable, make $dont_forward a list and use lsearch (with -nocase to make it case insensitive) to see if that argument (command, word or whatever you want to call it) is in there or not.</div></blockquote>Actually, I did mean to do it the way I did, I just didn't explain the reasons why at all.  <br>I was talking to the person I was fixing the script for on irc,  <br>and they wanted to be able to keep the bot from forwarding text to the channel that contained bad words.  <br>Believe you would have to do it the way i did to catch those bad words anywhere in the typed string.<br><blockquote class="uncited"><div>Leave putquick to important stuff and use puthelp instead.</div></blockquote>O.K., I'll buy that:) I did not write that part of the script, but have fixed the above script to reflect a more correct puthelp.<br><blockquote class="uncited"><div>Edit: While we are at the MSGM subject, in the tcl-commands.doc I've noticed this: <br>Quote: <br><br>If the exclusive-binds setting is enabled, MSG binds will not be triggered by text that a MSGM bind has already handled. <br> <br><br>dose anyone know what's that exclusive-binds setting refers to?</div></blockquote>My understanding of that is:<br>Eggdrop processes MSGM binds first, before MSG binds.<br>With the exclusive-binds setting enabled,  if this script was loaded on a bot, and someone was to try to op with the bot, <br>this script would trigger first. <br>Then, if the built in OP command is tied to a MSG bind, it will never trigger at all, because this script has already handled it.<br><br>I believe if you have any scripts with the bind: bind msgm - "*" anyproc<br>you can not ever enable that setting!<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7749">SpiKe^^</a> — Thu Jan 03, 2013 9:03 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[caesar]]></name></author>
		<updated>2013-01-03T15:30:28-04:00</updated>

		<published>2013-01-03T15:30:28-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=100530#p100530</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=100530#p100530"/>
		<title type="html"><![CDATA[Fake user tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=100530#p100530"><![CDATA[
You don't need to count the lines (<em class="text-italics">length $dont_forward</em>) cos if there aren't any the foreach loop won't execute anything.<br><br>Also, I think you meant <em class="text-italics">break</em> not <em class="text-italics">return</em> in:<blockquote class="uncited"><div>if {[string match -nocase $item $arg]} {  return  }</div></blockquote>Besides, you should check only the first argument (word) from user input against the $dont_forward variable, make $dont_forward a list and use <em class="text-italics">lsearch</em> (with -nocase to make it case insensitive) to see if that argument (command, word or whatever you want to call it) is in there or not.<br><br>Leave <em class="text-italics">putquick</em> to important stuff and use <em class="text-italics">puthelp</em> instead.<br><br>Edit: While we are at the MSGM subject, in the tcl-commands.doc I've noticed this:<blockquote class="uncited"><div>If the exclusive-binds setting is enabled, MSG binds will not be triggered by text that a MSGM bind has already handled.</div></blockquote>dose anyone know what's that exclusive-binds setting refers to?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=187">caesar</a> — Thu Jan 03, 2013 3:30 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[SpiKe^^]]></name></author>
		<updated>2013-01-04T13:29:32-04:00</updated>

		<published>2013-01-03T13:26:24-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=100529#p100529</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=100529#p100529"/>
		<title type="html"><![CDATA[Fake user tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=100529#p100529"><![CDATA[
This should keep the bot from sending your password to the private channel when doing '/msg botnick auth pass' command... <div class="codebox"><p>Code: </p><pre><code># Author: tomekk # e-mail:  tomekk/@/tomekk/./org # home page: http://tomekk.org/ # # Version 0.1 # # This file is Copyrighted under the GNU Public License. # http://www.gnu.org/copyleft/gpl.html set private_channel "#private" # List things not to forward to the channel, one item per line:# List commands like this:  op *# list badwords like this:  * badword *  :or:  *badword*set dont_forward {  auth *  ident *  op *}  ;## end of dont_forward setting ################################################################ bind pub - !forward forward_proc bind msgm - "*" private_proc set dont_forward [split [string trim $dont_forward] \n]proc private_proc { nick uhost hand arg } {         global private_channel dont_forward        foreach item $dont_forward {          set item [string trim $item]          if {[string match -nocase $item $arg]} {  return  }        }        if {[botonchan $private_channel]} {                 puthelp "PRIVMSG $private_channel :$nick -&gt; $arg"         }         return} proc forward_proc { nick uhost hand chan arg } {         global private_channel         set forward_arg [split $arg]         set forward_to [lindex $forward_arg 0]         set forward_msg [join [lrange $forward_arg 1 end]]         if {$chan == $private_channel} {                 if {$forward_msg != ""} {                         puthelp "PRIVMSG $forward_to :$forward_msg"                 } {                         puthelp "PRIVMSG $chan :use: !forward &lt;nick&gt; &lt;msg&gt;"                 }         }         return} putlog "eggforward.tcl ver 0.1 by tomekk loaded"</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7749">SpiKe^^</a> — Thu Jan 03, 2013 1:26 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[SpiKe^^]]></name></author>
		<updated>2012-12-23T20:32:04-04:00</updated>

		<published>2012-12-23T20:32:04-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=100489#p100489</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=100489#p100489"/>
		<title type="html"><![CDATA[Fake user tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=100489#p100489"><![CDATA[
janii wrote...<blockquote class="uncited"><div>i want it one more feature tht whn i type <br>!forward #egghelp hey <br>it shall msg that in #egghelp hey </div></blockquote>That should already be working in the script:)<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7749">SpiKe^^</a> — Sun Dec 23, 2012 8:32 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[janii]]></name></author>
		<updated>2012-12-23T19:28:21-04:00</updated>

		<published>2012-12-23T19:28:21-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=100487#p100487</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=100487#p100487"/>
		<title type="html"><![CDATA[Fake user tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=100487#p100487"><![CDATA[
hello tomek vry nice tcl i used it it was a jem i want to ask if u can add 2 things in it <br>first <br>whn ever i give /msg botnick auth pass <br>the bot show my pass in channel where everyone can see it<br>2nd<br>!forward janii hello<br>will pvt msg me<br>i want it one more feature tht whn i type<br>!forward #egghelp hey<br>it shall msg that in #egghelp hey<br>thanks in advance<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=11746">janii</a> — Sun Dec 23, 2012 7:28 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[duarteper]]></name></author>
		<updated>2012-12-07T18:04:39-04:00</updated>

		<published>2012-12-07T18:04:39-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=100393#p100393</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=100393#p100393"/>
		<title type="html"><![CDATA[thanks a lot  tomekk]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=100393#p100393"><![CDATA[
works like a charm, very well<br><br>thanks so mutch tomekk for your great work<br><br>some day (some year) i will make tcl like you, i wish, lol<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12154">duarteper</a> — Fri Dec 07, 2012 6:04 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[tomekk]]></name></author>
		<updated>2012-12-07T16:40:28-04:00</updated>

		<published>2012-12-07T16:40:28-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=100390#p100390</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=100390#p100390"/>
		<title type="html"><![CDATA[Fake user tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=100390#p100390"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code># Author: tomekk# e-mail:  tomekk/@/tomekk/./org# home page: http://tomekk.org/## Version 0.1## This file is Copyrighted under the GNU Public License.# http://www.gnu.org/copyleft/gpl.htmlset private_channel "#private"##############################################################bind pub - !forward forward_procbind msgm - "*" private_procproc private_proc { nick uhost hand arg } {        global private_channel        if {[botonchan $private_channel]} {                putquick "PRIVMSG $private_channel :$nick -&gt; $arg"        }}proc forward_proc { nick uhost hand chan arg } {        global private_channel        set forward_arg [split $arg]        set forward_to [lindex $forward_arg 0]        set forward_msg [join [lrange $forward_arg 1 end]]        if {$chan == $private_channel} {                if {$forward_msg != ""} {                        putquick "PRIVMSG $forward_to :$forward_msg"                } {                        putquick "PRIVMSG $chan :use: !forward &lt;nick&gt; &lt;msg&gt;"                }        }}putlog "eggforward.tcl ver 0.1 by tomekk loaded"</code></pre></div>Try it.<br>'private_channel' is the channel with all private messages<br>use '!forward &lt;nick&gt; &lt;msg&gt;' on this channel to send the msg to the user<br><br>/tiny fix, please redownload the script/<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=10332">tomekk</a> — Fri Dec 07, 2012 4:40 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[duarteper]]></name></author>
		<updated>2012-12-07T16:10:44-04:00</updated>

		<published>2012-12-07T16:10:44-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=100389#p100389</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=100389#p100389"/>
		<title type="html"><![CDATA[Fake user tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=100389#p100389"><![CDATA[
i wont use this comand in channel and see the bot private messages in channel as well<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12154">duarteper</a> — Fri Dec 07, 2012 4:10 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[tomekk]]></name></author>
		<updated>2012-12-07T14:41:05-04:00</updated>

		<published>2012-12-07T14:41:05-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=100386#p100386</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=100386#p100386"/>
		<title type="html"><![CDATA[Fake user tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=100386#p100386"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code>cmd ex: !BotNick Nick hello </code></pre></div>You want to use this command on this 'private' channel or?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=10332">tomekk</a> — Fri Dec 07, 2012 2:41 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[duarteper]]></name></author>
		<updated>2012-12-06T23:21:42-04:00</updated>

		<published>2012-12-06T23:21:42-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=100379#p100379</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=100379#p100379"/>
		<title type="html"><![CDATA[Fake user tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=100379#p100379"><![CDATA[
Hello<br><br>its possible to make a script that shows bot privates mgs in a restricted and private channel, and answer bot privates msg by typing in channel with this cmd ex: !BotNick Nick hello<br><br>Thanks in advance<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12154">duarteper</a> — Thu Dec 06, 2012 11:21 pm</p><hr />
]]></content>
	</entry>
	</feed>
