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

	<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>2003-09-08T12:17:35-04:00</updated>

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

		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2003-09-08T12:17:35-04:00</updated>

		<published>2003-09-08T12:17:35-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=26748#p26748</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=26748#p26748"/>
		<title type="html"><![CDATA[How can I let my bot join a channel?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=26748#p26748"><![CDATA[
Did you ask mister manual?<p>Statistics: Posted by Guest — Mon Sep 08, 2003 12:17 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[caesar]]></name></author>
		<updated>2003-09-08T11:18:07-04:00</updated>

		<published>2003-09-08T11:18:07-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=26746#p26746</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=26746#p26746"/>
		<title type="html"><![CDATA[How can I let my bot join a channel?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=26746#p26746"><![CDATA[
And for what use will be this pub !join when his eggdrop is not in any channel at all? <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"> Anyway, telnet or dcc in then see the <em class="text-italics">.help +chan</em> as you where sugested before me.<br><br>Adding a channel directly in the .conf file will make it static, so your eggdrop will be unable to "forget and erase" it from it's "memory" (channels file) when a dynamic one can be erased at any time. Also the static and the dynamic channels can be "parted" using the +inactive channel flag.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=187">caesar</a> — Mon Sep 08, 2003 11:18 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[GodOfSuicide]]></name></author>
		<updated>2003-09-08T06:40:01-04:00</updated>

		<published>2003-09-08T06:40:01-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=26725#p26725</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=26725#p26725"/>
		<title type="html"><![CDATA[How can I let my bot join a channel?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=26725#p26725"><![CDATA[
or with a public trigger..<div class="codebox"><p>Code: </p><pre><code>bind pub m !join pub_joinproc pub_join {nick host hand chan text} { set addchan [lindex $text 0] if {$addchan == ""} { puthelp "notice $nick :Usage !join #channel" return 0}if {[validchan $addchan] == 1} { puthelp "notice $nick :I allready have $addchan on my database" } else {channel add $addchanputhelp "notice $nick :Added $addchan to my channels"putlog "Added $addchan" }}</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=1433">GodOfSuicide</a> — Mon Sep 08, 2003 6:40 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Darmoth]]></name></author>
		<updated>2003-09-07T16:39:23-04:00</updated>

		<published>2003-09-07T16:39:23-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=26716#p26716</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=26716#p26716"/>
		<title type="html"><![CDATA[How can I let my bot join a channel?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=26716#p26716"><![CDATA[
Eeeeek, well that would work, but it's only a solution if the bot is just in one or just a few channels.<br>Each time you add a chanel to the conf you need to restart the bot to get the changes working.<br>The solution Mr. Snake told, just to add the channel dynamic by using .+chan #channelname ist IMHO the better and more comfortable solution.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=138">Darmoth</a> — Sun Sep 07, 2003 4:39 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[firepac]]></name></author>
		<updated>2003-09-07T15:59:39-04:00</updated>

		<published>2003-09-07T15:59:39-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=26713#p26713</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=26713#p26713"/>
		<title type="html"><![CDATA[How can I let my bot join a channel?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=26713#p26713"><![CDATA[
Find the lines in the conf file that looks like the following and replace #channel with your channel name.<br><br>channel add #channel {<br>  chanmode "+nt"<br>  idle-kick 0<br>  stopnethack-mode 0<br>  revenge-mode 1<br>  aop-delay 0:0<br>  flood-chan 30:10<br>  flood-deop 0:0<br>  flood-kick 0:0<br>  flood-join 10:5<br>  flood-ctcp 0:0<br>  flood-nick 10:5<br>}<br>channel set #channel +enforcebans +dynamicbans +userbans +dynamicexempts +greet<br>channel set #channel +userexempts +dynamicinvites +userinvites +protectops<br>channel set #channel +protectfriends -statuslog +revenge +cycle<br>channel set #channel -revengebot +dontkickops +autovoice -autoop <br>channel set #channel -bitch -secret -shared<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3352">firepac</a> — Sun Sep 07, 2003 3:59 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[gumbydammit]]></name></author>
		<updated>2003-09-07T13:29:47-04:00</updated>

		<published>2003-09-07T13:29:47-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=26700#p26700</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=26700#p26700"/>
		<title type="html"><![CDATA[How can I let my bot join a channel?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=26700#p26700"><![CDATA[
.help +chan<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=1870">gumbydammit</a> — Sun Sep 07, 2003 1:29 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2003-09-07T13:17:02-04:00</updated>

		<published>2003-09-07T13:17:02-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=26696#p26696</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=26696#p26696"/>
		<title type="html"><![CDATA[How can I let my bot join a channel?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=26696#p26696"><![CDATA[
Prolly a silly question, but how can I let my bot join a channel?<br>I can only get it online.<br>I tried several commands, but they appear not to work?<br><br><br>cheerio,<br>MrSnake<p>Statistics: Posted by Guest — Sun Sep 07, 2003 1:17 pm</p><hr />
]]></content>
	</entry>
	</feed>
