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

	<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>2009-07-25T12:57:43-04:00</updated>

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

		<entry>
		<author><name><![CDATA[tueb]]></name></author>
		<updated>2009-07-25T10:39:02-04:00</updated>

		<published>2009-07-25T10:39:02-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=89653#p89653</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=89653#p89653"/>
		<title type="html"><![CDATA[really really really simple greet [SOLVED]]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=89653#p89653"><![CDATA[
yes<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9349">tueb</a> — Sat Jul 25, 2009 10:39 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[holycrap]]></name></author>
		<updated>2009-07-25T10:35:29-04:00</updated>

		<published>2009-07-25T10:35:29-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=89652#p89652</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=89652#p89652"/>
		<title type="html"><![CDATA[really really really simple greet [SOLVED]]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=89652#p89652"><![CDATA[
So, if I wanted to notice the user on join, I would do this?<br><br>"NOTICE $nick .... " ?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9651">holycrap</a> — Sat Jul 25, 2009 10:35 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[tueb]]></name></author>
		<updated>2009-07-25T10:32:52-04:00</updated>

		<published>2009-07-25T10:32:52-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=89651#p89651</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=89651#p89651"/>
		<title type="html"><![CDATA[really really really simple greet [SOLVED]]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=89651#p89651"><![CDATA[
oh, i missunderstood that. <br><div class="codebox"><p>Code: </p><pre><code>bind join - * tueb_on_joinedproc tueb_on_joined {nick host handle channel} {   set line_one "blah blah blah 1"  set line_two "blah blah blah 2"  set greeting "hi $nick welcome"    puthelp "PRIVMSG $channel :$line_one"  puthelp "PRIVMSG $channel :$line_two"  puthelp "PRIVMSG $channel :$greeting"}</code></pre></div>this will print 3 lines<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9349">tueb</a> — Sat Jul 25, 2009 10:32 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[holycrap]]></name></author>
		<updated>2009-07-25T10:24:52-04:00</updated>

		<published>2009-07-25T10:24:52-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=89650#p89650</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=89650#p89650"/>
		<title type="html"><![CDATA[really really really simple greet [SOLVED]]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=89650#p89650"><![CDATA[
<blockquote class="uncited"><div><div class="codebox"><p>Code: </p><pre><code>bind join - * tueb_on_joinedproc tueb_on_joined {nick host handle channel} {  set greeting "hi $nick welcome"  puthelp "PRIVMSG $channel :$greeting"}</code></pre></div>hi,<br><br>this should do the trick<br><br><br>change "hi $nick welcome" to the greeting you like. use $nick for the nick of the joining user and $channel for the channelname where the user joined.<br><br><br>tueb</div></blockquote>Thanks tueb! Sorry, but I'm a bit confused, so how do I get multiple lines? Like the three that I wanted?<br><br><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=9651">holycrap</a> — Sat Jul 25, 2009 10:24 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[tueb]]></name></author>
		<updated>2009-07-25T09:09:33-04:00</updated>

		<published>2009-07-25T09:09:33-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=89649#p89649</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=89649#p89649"/>
		<title type="html"><![CDATA[really really really simple greet [SOLVED]]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=89649#p89649"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code>bind join - * tueb_on_joinedproc tueb_on_joined {nick host handle channel} {  set greeting "hi $nick welcome"  puthelp "PRIVMSG $channel :$greeting"}</code></pre></div>hi,<br><br>this should do the trick<br><br><br>change "hi $nick welcome" to the greeting you like. use $nick for the nick of the joining user and $channel for the channelname where the user joined.<br><br><br>tueb<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9349">tueb</a> — Sat Jul 25, 2009 9:09 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[holycrap]]></name></author>
		<updated>2009-07-25T12:57:43-04:00</updated>

		<published>2009-07-25T07:58:31-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=89648#p89648</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=89648#p89648"/>
		<title type="html"><![CDATA[really really really simple greet [SOLVED]]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=89648#p89648"><![CDATA[
Hi guys.<br><br>I’ve searched through the forum and archive but was overwhelmed with all the greet scripts. I’m looking for something really simple.<br><br>Three lines, notice the user on join:<br><br>Example:<br><br>* holycrap has joined #channel<br>-bot- blah blah blah<br>-bot- blah blah blah<br>-bot- hi holycrap welcome<br><br>Really appreciated for all the help!<br><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=9651">holycrap</a> — Sat Jul 25, 2009 7:58 am</p><hr />
]]></content>
	</entry>
	</feed>
