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

	<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>2004-12-04T12:57:57-04:00</updated>

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

		<entry>
		<author><name><![CDATA[metroid]]></name></author>
		<updated>2004-12-04T12:57:57-04:00</updated>

		<published>2004-12-04T12:57:57-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=43441#p43441</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=43441#p43441"/>
		<title type="html"><![CDATA['error trying to set greet for #chan, Invalid option']]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=43441#p43441"><![CDATA[
go look in the tcl archive, i'm sure it has some kind of greet script.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5078">metroid</a> — Sat Dec 04, 2004 12:57 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Hatred]]></name></author>
		<updated>2004-12-04T11:00:08-04:00</updated>

		<published>2004-12-04T11:00:08-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=43440#p43440</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=43440#p43440"/>
		<title type="html"><![CDATA['error trying to set greet for #chan, Invalid option']]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=43440#p43440"><![CDATA[
thankyou for your help.<br>though is there a way that i can set the greet to greet people in chan depending on their current handle/hostmask?<br><br>how do i make it recognise my host on IRC ?<br>/msg &lt;botname&gt; IDENT &lt;password&gt; was suggested to me though i have currently had no luck.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5730">Hatred</a> — Sat Dec 04, 2004 11:00 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Alchera]]></name></author>
		<updated>2004-12-04T04:33:15-04:00</updated>

		<published>2004-12-04T04:33:15-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=43434#p43434</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=43434#p43434"/>
		<title type="html"><![CDATA['error trying to set greet for #chan, Invalid option']]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=43434#p43434"><![CDATA[
<blockquote class="uncited"><div>i found 'that' in the thread that Alchera posted.</div></blockquote>I thought you would have read down further in that thread I posted; maybe I should have been more specific - It was Metroid's script solution I'd hoped you'd have found. <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> — Sat Dec 04, 2004 4:33 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[metroid]]></name></author>
		<updated>2004-12-04T03:35:55-04:00</updated>

		<published>2004-12-04T03:35:55-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=43432#p43432</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=43432#p43432"/>
		<title type="html"><![CDATA['error trying to set greet for #chan, Invalid option']]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=43432#p43432"><![CDATA[
Go try this then.<br><div class="codebox"><p>Code: </p><pre><code># The configuration set flags(owner) "A Bot Owner Has Entered The Channel!" set flags(master) "A Bot Master Has Entered The Channel!" set flags(op) "A Bot Op Has Entered The Channel!" set flags(halfop) "A Bot Halfop Has Entered The Channel!" set flags(cowner) "A Channel Owner Has Entered The Channel!" set flags(cmaster) "A Channel Master Has Entered The Channel!" set flags(cop) "A Channel Op Has Entered The Channel!" set flags(chalfop) "A Channel Halfop Has Entered The Channel!" bind JOIN - * flags:join proc flags:join { nickname hostname handle channel } { global flags if {[matchattr $handle n]} { putquick "PRIVMSG $channel :\[ $nickname \] $flags(owner)" } elseif {[matchattr $handle m]} { putquick "PRIVMSG $channel :\[ $nickname \] $flags(master)" } elseif {[matchattr $handle o]} { putquick "PRIVMSG $channel :\[ $nickname \] $flags(op)" } elseif {[matchattr $handle l]} { putquick "PRIVMSG $channel :\[ $nickname \] $flags(halfop)" } elseif {[matchattr $handle |n $channel]} { putquick "PRIVMSG $channel :\[ $nickname \] $flags(cowner)" } elseif {[matchattr $handle |m $channel]} { putquick "PRIVMSG $channel :\[ $nickname \] $flags(cmaster)" } elseif {[matchattr $handle |o $channel]} { putquick "PRIVMSG $channel :\[ $nickname \] $flags(cop)" } elseif {[matchattr $handle |l $channel]} { putquick "PRIVMSG $channel :\[ $nickname \] $flags(chalfop)" } } </code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5078">metroid</a> — Sat Dec 04, 2004 3:35 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[KrzychuG]]></name></author>
		<updated>2004-12-03T19:50:29-04:00</updated>

		<published>2004-12-03T19:50:29-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=43417#p43417</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=43417#p43417"/>
		<title type="html"><![CDATA['error trying to set greet for #chan, Invalid option']]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=43417#p43417"><![CDATA[
Those command (.onjoin) is available only if you add a special tcl script. You can find that script <a href="http://www.egghelp.org/files/tcl/flagonjoin31.tcl.gz" class="postlink">here</a><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3672">KrzychuG</a> — Fri Dec 03, 2004 7:50 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Hatred]]></name></author>
		<updated>2004-12-03T17:36:03-04:00</updated>

		<published>2004-12-03T17:36:03-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=43414#p43414</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=43414#p43414"/>
		<title type="html"><![CDATA['error trying to set greet for #chan, Invalid option']]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=43414#p43414"><![CDATA[
i found 'that' in the thread that Alchera posted.<br>and .help was, of course, one of the first things i tried, <br>I wouldn't start posting on a forum without trying .help first.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5730">Hatred</a> — Fri Dec 03, 2004 5:36 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[KrzychuG]]></name></author>
		<updated>2004-12-03T17:27:11-04:00</updated>

		<published>2004-12-03T17:27:11-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=43413#p43413</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=43413#p43413"/>
		<title type="html"><![CDATA['error trying to set greet for #chan, Invalid option']]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=43413#p43413"><![CDATA[
<blockquote class="uncited"><div>I've tried the commands listed,<br>and the results were as follows.<br><br><br>.onjoin flags<br>What?  You need '.help'<br>.onjoin messages<br>What?  You need '.help'<br>.onjoin add * +n testing<br>What?  You need '.help'<br><br> :cry:</div></blockquote>Where you found that? Use .help on party-line to see available commands.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3672">KrzychuG</a> — Fri Dec 03, 2004 5:27 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Hatred]]></name></author>
		<updated>2004-12-03T17:07:47-04:00</updated>

		<published>2004-12-03T17:07:47-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=43412#p43412</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=43412#p43412"/>
		<title type="html"><![CDATA['error trying to set greet for #chan, Invalid option']]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=43412#p43412"><![CDATA[
I've tried the commands listed,<br>and the results were as follows.<br><br><br>.onjoin flags<br>What?  You need '.help'<br>.onjoin messages<br>What?  You need '.help'<br>.onjoin add * +n testing<br>What?  You need '.help'<br><br> <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_cry.gif" width="15" height="15" alt=":cry:" title="Crying or Very sad"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5730">Hatred</a> — Fri Dec 03, 2004 5:07 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Alchera]]></name></author>
		<updated>2004-12-03T16:57:10-04:00</updated>

		<published>2004-12-03T16:57:10-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=43411#p43411</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=43411#p43411"/>
		<title type="html"><![CDATA['error trying to set greet for #chan, Invalid option']]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=43411#p43411"><![CDATA[
Read <a href="http://forum.egghelp.org/viewtopic.php?t=8549&amp;postdays=0&amp;postorder=asc&amp;start=0" class="postlink">this</a> post; there's a scripting solution to setting a greet via DCC. <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> — Fri Dec 03, 2004 4:57 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Hatred]]></name></author>
		<updated>2004-12-03T16:45:42-04:00</updated>

		<published>2004-12-03T16:45:42-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=43408#p43408</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=43408#p43408"/>
		<title type="html"><![CDATA['error trying to set greet for #chan, Invalid option']]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=43408#p43408"><![CDATA[
Yea, one of the first things I did.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5730">Hatred</a> — Fri Dec 03, 2004 4:45 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Alchera]]></name></author>
		<updated>2004-12-03T16:40:51-04:00</updated>

		<published>2004-12-03T16:40:51-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=43406#p43406</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=43406#p43406"/>
		<title type="html"><![CDATA['error trying to set greet for #chan, Invalid option']]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=43406#p43406"><![CDATA[
You've tried .chanset #chan +greet ?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3646">Alchera</a> — Fri Dec 03, 2004 4:40 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Hatred]]></name></author>
		<updated>2004-12-03T16:37:05-04:00</updated>

		<published>2004-12-03T16:37:05-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=43404#p43404</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=43404#p43404"/>
		<title type="html"><![CDATA['error trying to set greet for #chan, Invalid option']]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=43404#p43404"><![CDATA[
I feel like a no0b asking such a ridiculous question, however i am new to use of eggdrops so i guess i may as well swallow my pride.<br><br>I've been trying to setup a changreet, or any greet in general.<br>However no matter what documentation I read, or various attempts I make, I <br>continue to be confronted with the following error.<br><br>'error trying to set greet for #chan, Invalid option' <br><br>does anyone have any suggestions as to how I can set a greeting of any kind?<br><br>Kind Regards,<br> -No0b<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5730">Hatred</a> — Fri Dec 03, 2004 4:37 pm</p><hr />
]]></content>
	</entry>
	</feed>
