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

	<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>2014-01-31T23:43:17-04:00</updated>

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

		<entry>
		<author><name><![CDATA[play4free2]]></name></author>
		<updated>2014-01-31T23:43:17-04:00</updated>

		<published>2014-01-31T23:43:17-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=102571#p102571</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=102571#p102571"/>
		<title type="html"><![CDATA[Botadmin Channel Commands]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=102571#p102571"><![CDATA[
Thanks SpiKe^^ that was a lot of help, I got mine working now <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=12296">play4free2</a> — Fri Jan 31, 2014 11:43 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[SpiKe^^]]></name></author>
		<updated>2014-01-26T01:40:41-04:00</updated>

		<published>2014-01-26T01:40:41-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=102557#p102557</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=102557#p102557"/>
		<title type="html"><![CDATA[Botadmin Channel Commands]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=102557#p102557"><![CDATA[
Try looking at this forum post....<br><br><a href="http://forum.egghelp.org/viewtopic.php?t=19460&amp;highlight=gline" class="postlink">http://forum.egghelp.org/viewtopic.php? ... ight=gline</a><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7749">SpiKe^^</a> — Sun Jan 26, 2014 1:40 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[play4free2]]></name></author>
		<updated>2014-01-25T23:25:20-04:00</updated>

		<published>2014-01-25T23:25:20-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=102556#p102556</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=102556#p102556"/>
		<title type="html"><![CDATA[Botadmin Channel Commands]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=102556#p102556"><![CDATA[
<strong class="text-strong">Update:</strong> I got a code to put the action and messages to different channels.<div class="codebox"><p>Code: </p><pre><code>proc act_func {nick uhost hand chan arg} {  if {[lsearch -exact [channel info $chan] +adminchan] != -1} {    set cmd [string tolower [lindex $arg 0]]    if {$cmd == ""} {      puthelp "NOTICE $nick :.act &lt;#channel&gt; &lt;action&gt; - Sends an action to any channel the bot is in."      return 0      } else {      set chan [lindex [split $arg] 0]      set arg [join [lrange [split $arg] 1 end]]      putserv "PRIVMSG $chan :\001ACTION $arg\001"      return 0    }  }}proc say_func {nick uhost hand chan arg} {  if {[lsearch -exact [channel info $chan] +adminchan] != -1} {    set cmd [string tolower [lindex $arg 0]]    if {$cmd == ""} {      puthelp "NOTICE $nick :.say &lt;#channel&gt; &lt;message&gt; - Sends a message to any channel the bot is in."      return 0      } else {      set chan [lindex [split $arg] 0]      set arg [join [lrange [split $arg] 1 end]]      putserv "PRIVMSG $chan :$arg"      return 0    }  }}</code></pre></div> <br><br>But I am still looking to add the channel commands !gline and !delgline<br><br>Thanks<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12296">play4free2</a> — Sat Jan 25, 2014 11:25 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[play4free2]]></name></author>
		<updated>2014-01-17T20:35:12-04:00</updated>

		<published>2014-01-17T20:35:12-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=102526#p102526</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=102526#p102526"/>
		<title type="html"><![CDATA[Botadmin Channel Commands]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=102526#p102526"><![CDATA[
I know there are a lot of oper.tcl commands.tcl etc. I am working on one that has just the commands I want. The part I can't find in the Archives or written anywhere I have looked. Is one that will have the bot do via channel command .say #channel &lt;message&gt; and .act #channel &lt;action&gt;<br><br>I have found this which is what I want but I also want it to message or put an action to a channel I chose too.<br><div class="codebox"><p>Code: </p><pre><code>proc actall_func {nick uhost hand chan text} {  if {[lsearch -exact [channel info $chan] +admin] != -1} {    if {[string length $text] &gt; 0} {      set text [string trim $text "{}"]      foreach n [channels] { putserv "PRIVMSG $n :\001ACTION $text \001" }    } else { puthelp "NOTICE $nick :.actall &lt;action&gt; - Sends an action to all channels the bot is in." }  }}proc sayall_func {nick uhost hand chan text} {  if {[lsearch -exact [channel info $chan] +admin] != -1} {    if {[string length $text] &gt; 0} {      set text [string trim $text "{}"]      foreach n [channels] { putserv "PRIVMSG $n :$text" }    } else { puthelp "NOTICE $nick :.sayall &lt;message&gt; - Sends a message to all channels the bot is in." }  }}</code></pre></div>I would also like to add the channel commands .gline and .glinedel<br><br>Examples: <br>.gline &lt;user@host mask&gt; [time] &lt;reason&gt;<br>.glinedel &lt;user@host mask&gt;<br><br>If I missed these somewhere please point me in the correct direction.<br><br>Thanks for any help<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12296">play4free2</a> — Fri Jan 17, 2014 8:35 pm</p><hr />
]]></content>
	</entry>
	</feed>
