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

	<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>2005-12-27T21:31:33-04:00</updated>

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

		<entry>
		<author><name><![CDATA[terryd]]></name></author>
		<updated>2005-12-27T21:31:33-04:00</updated>

		<published>2005-12-27T21:31:33-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=58723#p58723</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=58723#p58723"/>
		<title type="html"><![CDATA[On join problems]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=58723#p58723"><![CDATA[
Cheers for that all is now well. To get it going i had to put it in a seperate file for some reason.<br>I have like half a dozen other script sections in my main script file i thought that was ok to do and they all work fine.<br><br>Cheers for your time and  help Alchera <br>  <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=7157">terryd</a> — Tue Dec 27, 2005 9:31 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Alchera]]></name></author>
		<updated>2005-12-27T21:13:14-04:00</updated>

		<published>2005-12-27T21:13:14-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=58721#p58721</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=58721#p58721"/>
		<title type="html"><![CDATA[stuck with On join]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=58721#p58721"><![CDATA[
Just use this instead:<div class="codebox"><p>Code: </p><pre><code>bind join - * onjoin:msgproc onjoin:msg {nick uhost hand chan} {    puthelp "NOTICE $nick :For info on server do !help"}</code></pre></div>.. tested and works! <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_biggrin.gif" width="15" height="15" alt=":D" title="Very Happy"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3646">Alchera</a> — Tue Dec 27, 2005 9:13 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[terryd]]></name></author>
		<updated>2005-12-27T20:14:48-04:00</updated>

		<published>2005-12-27T20:14:48-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=58717#p58717</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=58717#p58717"/>
		<title type="html"><![CDATA[Stuck on join]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=58717#p58717"><![CDATA[
Well i tried your snippet in its complete form and tried to tweak it but to no avail.<br>Today is me first day at this so i must be doing some thing really silly some where <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><br>My other snippets i have been fiddling with just basic stuff to get the feel of things like <br><br>bind pub - !os pub:os<br><br>proc pub:os {nick host handle chan text} {<br>  set uname [exec uname -a]<br>  putserv "PRIVMSG $chan :$uname"<br>}<br><br>for example all work fine its just this join thing. But never mind thanks for your help i will keep reading and tweaking<br><br>Cheers<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7157">terryd</a> — Tue Dec 27, 2005 8:14 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Alchera]]></name></author>
		<updated>2005-12-27T19:44:19-04:00</updated>

		<published>2005-12-27T19:44:19-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=58716#p58716</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=58716#p58716"/>
		<title type="html"><![CDATA[stuck with On join]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=58716#p58716"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code>#Set here the channels that you don't want onjoin msg enabled. Set "*" for all.set no-msg(chan) "#chan1 #chan2"bind join - * onjoin:msgproc onjoin:msg {nick uhost hand chan} {    global no-msg    set chan [string tolower $chan]    if {(([lsearch -exact [string tolower $no-msg(chan)] $chan] &gt;= 0) || ($no-msg(chan) == "*"))} {return}    puthelp "NOTICE $nick :For info on server do !help"}</code></pre></div>The above untested; easily altered to suite your own particular needs. <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=3646">Alchera</a> — Tue Dec 27, 2005 7:44 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[terryd]]></name></author>
		<updated>2005-12-27T19:30:50-04:00</updated>

		<published>2005-12-27T19:30:50-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=58714#p58714</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=58714#p58714"/>
		<title type="html"><![CDATA[Stuck with on join]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=58714#p58714"><![CDATA[
I now have<br><br>bind join - * test<br><br>proc test {nick uhost handle chan } {<br>   putserv "PRIVMSG $chan : $nick :Hello there!"<br>}<br><br>I have also tried a few other ways. The doc you pointed out i have read a dozen time today. But thank you any way<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7157">terryd</a> — Tue Dec 27, 2005 7:30 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[caesar]]></name></author>
		<updated>2005-12-27T18:32:57-04:00</updated>

		<published>2005-12-27T18:32:57-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=58707#p58707</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=58707#p58707"/>
		<title type="html"><![CDATA[stuck with On join]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=58707#p58707"><![CDATA[
<blockquote class="uncited"><div>procname &lt;nick&gt; &lt;user@host&gt; &lt;handle&gt; &lt;channel&gt;</div></blockquote>next time check the doc/tcl-commands.doc file before posting.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=187">caesar</a> — Tue Dec 27, 2005 6:32 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[terryd]]></name></author>
		<updated>2005-12-27T18:19:58-04:00</updated>

		<published>2005-12-27T18:19:58-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=58706#p58706</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=58706#p58706"/>
		<title type="html"><![CDATA[stuck with On join]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=58706#p58706"><![CDATA[
I have<br><br>bind join - * proc_join<br>proc proc_join {nick chan text} {<br>putserv "PRIVMSG $chan :$nick:For info on server do !help"<br>}<br><br>I have tried a few variations and im still reading the docs now.<br>But when i join the channle with the bot no joy<br>all my other things work fine like 1help for example<br><br>Terry<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7157">terryd</a> — Tue Dec 27, 2005 6:19 pm</p><hr />
]]></content>
	</entry>
	</feed>
