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

	<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>2010-08-24T11:20:57-04:00</updated>

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

		<entry>
		<author><name><![CDATA[blake]]></name></author>
		<updated>2010-08-24T11:20:57-04:00</updated>

		<published>2010-08-24T11:20:57-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=94085#p94085</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=94085#p94085"/>
		<title type="html"><![CDATA[Joining a channel]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=94085#p94085"><![CDATA[
Eather add it to the end of the config or add it as a script<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=10512">blake</a> — Tue Aug 24, 2010 11:20 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[scyzernix]]></name></author>
		<updated>2010-08-24T10:02:14-04:00</updated>

		<published>2010-08-24T10:02:14-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=94083#p94083</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=94083#p94083"/>
		<title type="html"><![CDATA[Joining a channel]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=94083#p94083"><![CDATA[
<blockquote class="uncited"><div>Hi,<br>Though not a 'dumb' kind of question, it might be a RTFM kind.. <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_wink.gif" width="15" height="15" alt=";)" title="Wink"><br><br>That said, up until 1.6.19 (inclusive), the usual way of adding (static) channels were through the config file using the 'channel add' command. Further channels could also be added on-the-fly using the .+chan dcc-partyline command.<br>As I roughly recall, the .+chan command is the preferred way since 1.6.20.</div></blockquote>Lol. That, I know. Thanks for answering the RTMF ques.<br><blockquote class="uncited"><div><blockquote class="uncited"><div>I know it's kinda a dumb question<br>but seriously, how do I assign my bot to a channel.<br>Been searching everywhere but cant seem to find out.</div></blockquote>You may find this useful it safes having to enter the partyline to add channels in the bots private message just type addchan #channelname<br><div class="codebox"><p>Code: </p><pre><code>bind msg n addchan addchanproc addchan {nick host hand text} {   set chan [join [lindex [split $text] 0]]   if {![string length $chan]} {      putserv "PRIVMSG $nick :You need to specify which channel to join."      return 0   }   if {[validchan $chan]} {      if {[channel get $chan "inactive"]} {         channel set $chan -inactive         return 0      }      putserv "PRIVMSG $nick :I am already on $chan."      return 0   }   channel add $chan}bind msg n delchan delchanproc delchan {nick host hand text} {   set chan [join [lindex [split $text] 0]]   if {![string length $chan]} {      putserv "PRIVMSG $nick :You need to specify which channel to remove."      return 0   }   if {![validchan $chan]} {      putserv "PRIVMSG $nick :Unknown channel: $chan."      return 0   }   channel remove $chan}</code></pre></div></div></blockquote>Thanks, I have to try this one out. The code should be pasted in the .conf correct?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=11306">scyzernix</a> — Tue Aug 24, 2010 10:02 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[blake]]></name></author>
		<updated>2010-08-22T13:44:35-04:00</updated>

		<published>2010-08-22T13:44:35-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=94057#p94057</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=94057#p94057"/>
		<title type="html"><![CDATA[Re: Joining a channel]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=94057#p94057"><![CDATA[
<blockquote class="uncited"><div>I know it's kinda a dumb question<br>but seriously, how do I assign my bot to a channel.<br>Been searching everywhere but cant seem to find out.</div></blockquote>You may find this useful it safes having to enter the partyline to add channels in the bots private message just type addchan #channelname<br><div class="codebox"><p>Code: </p><pre><code>bind msg n addchan addchanproc addchan {nick host hand text} {   set chan [join [lindex [split $text] 0]]   if {![string length $chan]} {      putserv "PRIVMSG $nick :You need to specify which channel to join."      return 0   }   if {[validchan $chan]} {      if {[channel get $chan "inactive"]} {         channel set $chan -inactive         return 0      }      putserv "PRIVMSG $nick :I am already on $chan."      return 0   }   channel add $chan}bind msg n delchan delchanproc delchan {nick host hand text} {   set chan [join [lindex [split $text] 0]]   if {![string length $chan]} {      putserv "PRIVMSG $nick :You need to specify which channel to remove."      return 0   }   if {![validchan $chan]} {      putserv "PRIVMSG $nick :Unknown channel: $chan."      return 0   }   channel remove $chan}</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=10512">blake</a> — Sun Aug 22, 2010 1:44 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[nml375]]></name></author>
		<updated>2010-08-22T08:56:48-04:00</updated>

		<published>2010-08-22T08:56:48-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=94050#p94050</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=94050#p94050"/>
		<title type="html"><![CDATA[Joining a channel]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=94050#p94050"><![CDATA[
Hi,<br>Though not a 'dumb' kind of question, it might be a RTFM kind.. <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_wink.gif" width="15" height="15" alt=";)" title="Wink"><br><br>That said, up until 1.6.19 (inclusive), the usual way of adding (static) channels were through the config file using the 'channel add' command. Further channels could also be added on-the-fly using the .+chan dcc-partyline command.<br>As I roughly recall, the .+chan command is the preferred way since 1.6.20.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8052">nml375</a> — Sun Aug 22, 2010 8:56 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[scyzernix]]></name></author>
		<updated>2010-08-22T03:59:47-04:00</updated>

		<published>2010-08-22T03:59:47-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=94046#p94046</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=94046#p94046"/>
		<title type="html"><![CDATA[Joining a channel]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=94046#p94046"><![CDATA[
I know it's kinda a dumb question<br>but seriously, how do I assign my bot to a channel.<br>Been searching everywhere but cant seem to find out.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=11306">scyzernix</a> — Sun Aug 22, 2010 3:59 am</p><hr />
]]></content>
	</entry>
	</feed>
