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

	<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>2007-05-28T22:36:21-04:00</updated>

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

		<entry>
		<author><name><![CDATA[notrox]]></name></author>
		<updated>2007-05-28T22:36:21-04:00</updated>

		<published>2007-05-28T22:36:21-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=73127#p73127</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=73127#p73127"/>
		<title type="html"><![CDATA[/msg nick join and part]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=73127#p73127"><![CDATA[
i'm looking for the exact same thing , but to msg me when anyone joins a selected channel<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9030">notrox</a> — Mon May 28, 2007 10:36 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Riddler]]></name></author>
		<updated>2007-05-24T18:43:27-04:00</updated>

		<published>2007-05-24T18:43:27-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=72969#p72969</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=72969#p72969"/>
		<title type="html"><![CDATA[/msg nick join and part]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=72969#p72969"><![CDATA[
<blockquote class="uncited"><div>Tcl has some issues with a few characters, such as "-", within variable names. In these cases you need to enclose the variable name with {}, ie. ${default-flags}.</div></blockquote>Thank you nml375  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_biggrin.gif" width="15" height="15" alt=":D" title="Very Happy"> , the script works great now...just didn`t need no more for the $default-flags, because the eggdrop.conf has a option to set them and the adduser comand work with that option.  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_cool.gif" width="15" height="15" alt="8)" title="Cool"> <br><br>The new cod :<div class="codebox"><p>Code: </p><pre><code>bind msg n addchan s:addchanbind msg n delchan s:delchanproc s:addchan {nick uhost hand text} { global botnick default-flags  if {$text == "" || [string index $text 0] != "#"} {    putserv "NOTICE $nick :SYNTAX: /msg $botnick addchan #channel"    } elseif {[validchan $text]} {    putserv "NOTICE $nick :\002$text \002is already added"    } else {    channel add $text    adduser ~$text    chattr ~$text +C    putserv "NOTICE $nick :Channel added:\002 $text \002"  }}proc s:delchan {nick uhost hand text} { global botnick  if {$text == "" || [string index $text 0] != "#"} {    putserv "NOTICE $nick :SYNTAX: /msg $botnick delchan #channel"    } elseif {![validchan $text]} {    putserv "NOTICE $nick :\002$text \002is not a valid channel"    } else {    channel remove $text    deluser ~$text    putserv "NOTICE $nick :Channel deleted:\002 $text \002"  }}</code></pre></div>now I ask one last thing, how do add an option that will not add the username to the database with the "#" in front of the name ?<br><div class="codebox"><p>Code: </p><pre><code>&lt;|Rbot1&gt; [00:38] |Rbot2: newuser ~#chan hp(01:41:09) &lt;|Rbot1&gt; [00:38] |Rbot2: chattr ~#chan hpC----&lt;h4nd&gt; .whois ~#chan&lt;|Rbot1&gt; [00:37] #h4nd# whois ~#chan&lt;|Rbot1&gt; HANDLE       PASS NOTES FLAGS           LAST&lt;|Rbot1&gt; ~#chan      no       0 hpC             never (nowhere)</code></pre></div>a simple adduser without the "#" , some thing like this:<br><div class="codebox"><p>Code: </p><pre><code>&lt;h4nd&gt; .whois ~chan&lt;|Rbot1&gt; [00:37] #h4nd# whois ~chan&lt;|Rbot1&gt; HANDLE       PASS NOTES FLAGS           LAST&lt;|Rbot1&gt; ~chan      no       0 hpC             never (nowhere)</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9010">Riddler</a> — Thu May 24, 2007 6:43 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[nml375]]></name></author>
		<updated>2007-05-24T17:43:48-04:00</updated>

		<published>2007-05-24T17:43:48-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=72967#p72967</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=72967#p72967"/>
		<title type="html"><![CDATA[/msg nick join and part]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=72967#p72967"><![CDATA[
@xU:<br>Try replacing "stirng" with "string". And dont, ever, use lindex on plain strings! It's designed to be used on proper tcl-lists only (<a href="http://www.tcl.tk/man/tcl8.4/TclCmd/list.htm" class="postlink">list</a> and <a href="http://www.tcl.tk/man/tcl8.4/TclCmd/split.htm" class="postlink">split</a> is your friend here).<br><br>Also, I am abit confused as to why you have a hardcoded nick in the middle of the code...<br><br>Finally, for simple informational msgs, you'd be better off using puthelp rather than putquick.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8052">nml375</a> — Thu May 24, 2007 5:43 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[xU]]></name></author>
		<updated>2007-05-24T17:33:48-04:00</updated>

		<published>2007-05-24T17:33:48-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=72964#p72964</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=72964#p72964"/>
		<title type="html"><![CDATA[/msg nick join and part]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=72964#p72964"><![CDATA[
Hi,  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_biggrin.gif" width="15" height="15" alt=":D" title="Very Happy"> <div class="codebox"><p>Code: </p><pre><code>############################################## Date: 25May06 ##############################      xU (Qadsia@hotmail.com        WeArab: #Qadsia ########      msg-part.tcl        ####################################################################################################################################################################################                                                             #       Note:             ##                    Name: MeShari                            #                         ##                Nickname:  xU                                #        None             ##                     IRC: Irc.WeArab.Net: -j #qadsia         #                         ##                   Email: Qadsia@hotmail.com                 #                         ##                                                             #                         ##                                                             #################################################################################################################### ## bind ############bind msgm - * proc:privmsg## proc ############proc proc:privmsg { nick uhost hand text } {set text [string tolower $text]if {([stirng tolower bondie] == "[string tolower $nick]")} {if {[lindex $text 0]) == "!join")} {if {([lindex $text 1] == "")} {putquick "privmsg $nick :WARNING: Please enter Channel /msg &lt;botnet&gt; !join #channel"}if {([botonchan [lindex $text 1]])} {putquick "privmsg $nick :WARNING: Iam already on channel!"} else {if {([lindex $text 1]) != "")} {putquick "privmsg $chan :NOTE: Try to join [lindex $text 1];channel add [lindex $text 1];utimer 1 save}}}if {[lindex $text 0]) == "!part")} {if {([lindex $text 1] == "")} {putquick "privmsg $nick :WARNING: Please enter Channel /msg &lt;botnet&gt; !part #channel"}if {(![botonchan [lindex $text 1]])} {putquick "privmsg $nick :WARNING: Iam not in channel!"} else {if {([lindex $text 1]) != "")} {putquick "privmsg $chan :NOTE: Try to part [lindex $text 1];channel remove [lindex $text 1];utimer 1 save}}}}}</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9018">xU</a> — Thu May 24, 2007 5:33 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[nml375]]></name></author>
		<updated>2007-05-22T13:20:59-04:00</updated>

		<published>2007-05-22T13:20:59-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=72908#p72908</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=72908#p72908"/>
		<title type="html"><![CDATA[/msg nick join and part]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=72908#p72908"><![CDATA[
Tcl has some issues with a few characters, such as "-", within variable names. In these cases you need to enclose the variable name with {}, ie. ${default-flags}.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8052">nml375</a> — Tue May 22, 2007 1:20 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Riddler]]></name></author>
		<updated>2007-05-22T08:31:02-04:00</updated>

		<published>2007-05-22T08:31:02-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=72907#p72907</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=72907#p72907"/>
		<title type="html"><![CDATA[/msg nick join and part]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=72907#p72907"><![CDATA[
<blockquote class="uncited"><div>I looked everywhere for this "<strong class="text-strong">killuser</strong>" command, and didn't find squat.  Where'd you get this at?<div class="codebox"><p>Code: </p><pre><code>  deluser &lt;handle&gt;    Description: attempts to erase the user record for a handle    Returns: 1 if successful, 0 if no such user exists    Module: core</code></pre></div></div></blockquote>oki...thanks for the advice...<br><br>New modification to the Code and i have this:<br><div class="codebox"><p>Code: </p><pre><code>bind msg n addchan s:addchan bind msg n delchan s:delchan proc s:addchan {nick uhost hand text} {  global botnick default-flags   if {$text == "" || [string index $text 0] != "#"} {     putserv "NOTICE $nick :SYNTAX: /msg $botnick addchan #channel"     } elseif {[validchan $text]} {     putserv "NOTICE $nick :\002$text \002is already added"     } else {     channel add $text     newuser ~$text $default-flags     chattr ~$text +C     putserv "NOTICE $nick :Channel added:\002 $text \002"   } } proc s:delchan {nick uhost hand text} {  global botnick   if {$text == "" || [string index $text 0] != "#"} {     putserv "NOTICE $nick :SYNTAX: /msg $botnick delchan #channel"     } elseif {![validchan $text]} {     putserv "NOTICE $nick :\002$text \002is not a valid channel"     } else {     channel remove $text     deluser ~$text     putserv "NOTICE $nick :Channel deleted:\002 $text \002"   } }</code></pre></div>Ok, the <strong class="text-strong">delchan</strong> command works great, but the addchan command has still an error. <br><div class="codebox"><p>Code: </p><pre><code> [14:28] Tcl error [s:addchan]: can't read "default": no such variable</code></pre></div>.....<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9010">Riddler</a> — Tue May 22, 2007 8:31 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[YooHoo]]></name></author>
		<updated>2007-05-21T19:01:29-04:00</updated>

		<published>2007-05-21T19:01:29-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=72897#p72897</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=72897#p72897"/>
		<title type="html"><![CDATA[/msg nick join and part]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=72897#p72897"><![CDATA[
I looked everywhere for this "<strong class="text-strong">killuser</strong>" command, and didn't find squat.  Where'd you get this at?<div class="codebox"><p>Code: </p><pre><code>  deluser &lt;handle&gt;    Description: attempts to erase the user record for a handle    Returns: 1 if successful, 0 if no such user exists    Module: core</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2706">YooHoo</a> — Mon May 21, 2007 7:01 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Riddler]]></name></author>
		<updated>2007-05-21T17:22:19-04:00</updated>

		<published>2007-05-21T17:22:19-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=72893#p72893</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=72893#p72893"/>
		<title type="html"><![CDATA[/msg nick join and part]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=72893#p72893"><![CDATA[
<blockquote class="uncited"><div>Try:<br><div class="codebox"><p>Code: </p><pre><code>bind msg n {join} msg:joinbind msg n {part} msg:partproc msg:join {nick uhost hand text} {  global botnick lastbind  if {$text == "" || [string index $text 0] != "#"} {    putserv "NOTICE $nick :Usage: /msg $botnick $lastbind #channel."  } elseif {[llength [channels]] &gt;= 20} {    putserv "NOTICE $nick :All channels filled!"  } elseif {[validchan $text]} {    putserv "NOTICE $nick :$text is already added."  } else {    channel add $text    putserv "NOTICE $nick :Joined $text."  }}proc msg:part {nick uhost hand text} {  global botnick lastbind  if {$text == "" || [string index $text 0] != "#"} {    putserv "NOTICE $nick :Usage: /msg $botnick $lastbind #channel."  } elseif {![validchan $text]} {    putserv "NOTICE $nick :$text is not a valid channel."  } else {    channel remove $text    putserv "NOTICE $nick :Parted $text."  }}</code></pre></div>NOTE: Not Tested!</div></blockquote>Ok, I`ve tested in this original structure, and it works very good <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_biggrin.gif" width="15" height="15" alt=":D" title="Very Happy"> but ..<br>i want to change some of the code and make the bot add the channel olso like a user in eggdrop.user with a the $default-flags and a +C. <br><div class="codebox"><p>Code: </p><pre><code>bind msg n addchan s:addchanbind msg n delchan s:delchanproc s:addchan {nick uhost hand text} { global botnick default-flags  if {$text == "" || [string index $text 0] != "#"} {    putserv "NOTICE $nick :SYNTAX: /msg $botnick addchan #channel"    } elseif {[validchan $text]} {    putserv "NOTICE $nick :\002$text \002is already added"    } else {    channel add $text     newuser ~$text $default-flags    chattr ~$text +C    putserv "NOTICE $nick :Channel added:\002 $text \002"  }}proc s:delchan {nick uhost hand text} { global botnick   if {$text == "" || [string index $text 0] != "#"} {    putserv "NOTICE $nick :SYNTAX: /msg $botnick delchan #channel"    } elseif {![validchan $text]} {    putserv "NOTICE $nick :\002$text \002is not a valid channel"    } else {    channel remove $text     killuser ~$text    putserv "NOTICE $nick :Channel deleted:\002 $text \002"  }}</code></pre></div>but i has an error... <div class="codebox"><p>Code: </p><pre><code>[23:10] Tcl error [s:addchan]: can't read "default": no such variable</code></pre></div>and this<div class="codebox"><p>Code: </p><pre><code>[23:21] Tcl error [s:delchan]: invalid command name "killuser"</code></pre></div>any sugestions ?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9010">Riddler</a> — Mon May 21, 2007 5:22 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[metroid]]></name></author>
		<updated>2006-12-19T15:09:21-04:00</updated>

		<published>2006-12-19T15:09:21-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=69080#p69080</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=69080#p69080"/>
		<title type="html"><![CDATA[/msg nick join and part]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=69080#p69080"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code>bind msg - "join" cmd:joinbind msg - "part" cmd:partproc cmd:join {nick uhost hand arg} {  if {[string match -nocase "mynick" $nick]} {    channel add $arg  }}proc cmd:part {nick uhost hand arg} {  if {[string match -nocase "mynick" $nick]} {    channel remove $arg  }}</code></pre></div>though this would work, you shouldn't use string match.<br><div class="codebox"><p>Code: </p><pre><code>bind msg - "join" cmd:joinbind msg - "part" cmd:partproc cmd:join {nick uhost hand arg} {  if {[string equal -nocase "mynick" $nick]} {    channel add $arg  }}proc cmd:part {nick uhost hand arg} {  if {[string equal -nocase "mynick" $nick]} {    channel remove $arg  }}</code></pre></div>is the script I'd use (though as mentioned before, you should use handles rather than nick matching)<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5078">metroid</a> — Tue Dec 19, 2006 3:09 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Alchera]]></name></author>
		<updated>2006-12-18T20:17:32-04:00</updated>

		<published>2006-12-18T20:17:32-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=69055#p69055</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=69055#p69055"/>
		<title type="html"><![CDATA[/msg nick join and part]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=69055#p69055"><![CDATA[
<blockquote class="uncited"><div>Still using the wrong proc arguments. All of you except tosser for that matter.</div></blockquote>Comes with being tired probably. <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_lol.gif" width="15" height="15" alt=":lol:" title="Laughing"><br><br><span style="color:red">* Alchera slaps his forehead</span><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3646">Alchera</a> — Mon Dec 18, 2006 8:17 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[r0t3n]]></name></author>
		<updated>2006-12-18T19:39:44-04:00</updated>

		<published>2006-12-18T19:39:44-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=69053#p69053</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=69053#p69053"/>
		<title type="html"><![CDATA[/msg nick join and part]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=69053#p69053"><![CDATA[
<blockquote class="uncited"><div>Hmm isnt this part of the Forum called request ?!  Sometimes its easier just to write down how it worx then "quizzing" around<br><br><div class="codebox"><p>Code: </p><pre><code>bind MSG - "join" joinbind MSG - "part" partproc join { nickname hostname handle channel } {    channel add $channel  }} proc part { nickname hostname handle channel } {    channel remove $channel  }}</code></pre></div></div></blockquote>Bondie you obv. dont know your proc header for MSG, how do you get channel from a private message? Also you missed out arguments (text) in that header..<br>Your also overwriting the built-in command 'join'<br><br>Try:<br><div class="codebox"><p>Code: </p><pre><code>bind msg - "join" cmd:joinbind msg - "part" cmd:partproc cmd:join {nick uhost hand arg} {  if {[string match -nocase "mynick" $nick]} {    channel add $arg  }}proc cmd:part {nick uhost hand arg} {  if {[string match -nocase "mynick" $nick]} {    channel remove $arg  }}</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6300">r0t3n</a> — Mon Dec 18, 2006 7:39 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Bondie]]></name></author>
		<updated>2006-12-18T15:24:33-04:00</updated>

		<published>2006-12-18T15:24:33-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=69046#p69046</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=69046#p69046"/>
		<title type="html"><![CDATA[/msg nick join and part]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=69046#p69046"><![CDATA[
Hmm isnt this part of the Forum called request ?!  Sometimes its easier just to write down how it worx then "quizzing" around<br><br><div class="codebox"><p>Code: </p><pre><code>bind MSG - "join" joinbind MSG - "part" partproc join { nickname hostname handle channel } {    channel add $channel  }} proc part { nickname hostname handle channel } {    channel remove $channel  }}</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8503">Bondie</a> — Mon Dec 18, 2006 3:24 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[metroid]]></name></author>
		<updated>2006-12-18T14:00:58-04:00</updated>

		<published>2006-12-18T14:00:58-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=69045#p69045</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=69045#p69045"/>
		<title type="html"><![CDATA[/msg nick join and part]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=69045#p69045"><![CDATA[
Still using the wrong proc arguments. All of you except tosser for that matter.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5078">metroid</a> — Mon Dec 18, 2006 2:00 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[bloodLiner]]></name></author>
		<updated>2006-12-18T12:15:18-04:00</updated>

		<published>2006-12-18T12:15:18-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=69044#p69044</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=69044#p69044"/>
		<title type="html"><![CDATA[/msg nick join and part]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=69044#p69044"><![CDATA[
He told you what to do <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_wink.gif" width="15" height="15" alt=";)" title="Wink"><div class="codebox"><p>Code: </p><pre><code>bind MSG - "join" joinbind MSG - "part" partproc join {nickname hostname handle channel argument} {if {$nickname == "bondie"} {   channel add $channel   }} proc part {nickname hostname handle channel argument} {if {$nickname == "bondie"} {   channel remove $channel   }}</code></pre></div>But it isn't that smart to bind the command to - and check for the nickname. Anyone could just name himself to Bondie and they could let your bot join/part channels <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_wink.gif" width="15" height="15" alt=";)" title="Wink"><br>This would be better <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_biggrin.gif" width="15" height="15" alt=":D" title="Very Happy"><div class="codebox"><p>Code: </p><pre><code>bind MSG n "join" joinbind MSG n "part" partproc join {nickname hostname handle channel argument} {   channel add $channel} proc part {nickname hostname handle channel argument} {   channel remove $channel}</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8505">bloodLiner</a> — Mon Dec 18, 2006 12:15 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Bondie]]></name></author>
		<updated>2006-12-18T09:52:41-04:00</updated>

		<published>2006-12-18T09:52:41-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=69043#p69043</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=69043#p69043"/>
		<title type="html"><![CDATA[/msg nick join and part]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=69043#p69043"><![CDATA[
well if i  knew how to i wouldnt post it in request.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8503">Bondie</a> — Mon Dec 18, 2006 9:52 am</p><hr />
]]></content>
	</entry>
	</feed>
