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

	<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-10-16T12:14:22-04:00</updated>

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

		<entry>
		<author><name><![CDATA[Jag]]></name></author>
		<updated>2003-10-16T12:14:22-04:00</updated>

		<published>2003-10-16T12:14:22-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=28587#p28587</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=28587#p28587"/>
		<title type="html"><![CDATA[matchattr question]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=28587#p28587"><![CDATA[
10x!!!! <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_razz.gif" width="15" height="15" alt=":P" title="Razz"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3871">Jag</a> — Thu Oct 16, 2003 12:14 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Sir_Fz]]></name></author>
		<updated>2003-10-16T08:52:41-04:00</updated>

		<published>2003-10-16T08:52:41-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=28584#p28584</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=28584#p28584"/>
		<title type="html"><![CDATA[matchattr question]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=28584#p28584"><![CDATA[
oh okay, but i dont think it would matter for him, he's probably using a normal channel # :p<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3085">Sir_Fz</a> — Thu Oct 16, 2003 8:52 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[strikelight]]></name></author>
		<updated>2003-10-16T08:36:33-04:00</updated>

		<published>2003-10-16T08:36:33-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=28580#p28580</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=28580#p28580"/>
		<title type="html"><![CDATA[matchattr question]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=28580#p28580"><![CDATA[
For example, on EFNet, if you join a channel beginning with &amp; instead of #, say for example &amp;eggdrop,<br>that channel is available only on the server you are on, and not available to the entire network.<br><br>Other networks have similar concepts, eggdrop has the built-in support for most (if not all) of them.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2005">strikelight</a> — Thu Oct 16, 2003 8:36 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Sir_Fz]]></name></author>
		<updated>2003-10-16T08:13:46-04:00</updated>

		<published>2003-10-16T08:13:46-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=28577#p28577</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=28577#p28577"/>
		<title type="html"><![CDATA[matchattr question]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=28577#p28577"><![CDATA[
thanx for the correction, but i never saw a channel starting with ! or &amp;, what do you mean ?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3085">Sir_Fz</a> — Thu Oct 16, 2003 8:13 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[strikelight]]></name></author>
		<updated>2003-10-15T19:05:56-04:00</updated>

		<published>2003-10-15T19:05:56-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=28549#p28549</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=28549#p28549"/>
		<title type="html"><![CDATA[matchattr question]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=28549#p28549"><![CDATA[
<blockquote class="uncited"><div><div class="codebox"><p>Code: </p><pre><code>bind msg - * !access return:flagsproc return:flags {nick uhost hand arg} { if {[lindex [split $arg] 0] == ""} {  putserv "PRIVMSG $nick :[chattr $hand]"} elseif {[string match [lindex $arg 0] "#*"]} {  putserv "PRIVMSG $nick :[chattr $hand [lindex [split $arg] 0]]" }}</code></pre></div>untested.</div></blockquote>Change:<div class="codebox"><p>Code: </p><pre><code>} elseif {[string match [lindex $arg 0] "#*"]} {</code></pre></div>To:<div class="codebox"><p>Code: </p><pre><code>} elseif {[string match "#*" [lindex [split $arg] 0]]} {</code></pre></div>(you had the string match backwards (2nd time you've done that, heh), and forgot the split even though you remembered it on the following line).<br><br>Also, fyi, channels can start with characters other than # (ie: ! and &amp;)<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2005">strikelight</a> — Wed Oct 15, 2003 7:05 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Sir_Fz]]></name></author>
		<updated>2003-10-15T18:57:13-04:00</updated>

		<published>2003-10-15T18:57:13-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=28548#p28548</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=28548#p28548"/>
		<title type="html"><![CDATA[matchattr question]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=28548#p28548"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code>bind msg - * !access return:flagsproc return:flags {nick uhost hand arg} { if {[lindex [split $arg] 0] == ""} {  putserv "PRIVMSG $nick :[chattr $hand]"} elseif {[string match [lindex $arg 0] "#*"]} {  putserv "PRIVMSG $nick :[chattr $hand [lindex [split $arg] 0]]" }}</code></pre></div>untested.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3085">Sir_Fz</a> — Wed Oct 15, 2003 6:57 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Jag]]></name></author>
		<updated>2003-10-15T14:27:22-04:00</updated>

		<published>2003-10-15T14:27:22-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=28538#p28538</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=28538#p28538"/>
		<title type="html"><![CDATA[matchattr question]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=28538#p28538"><![CDATA[
someone knows how to build a command that when i write to the eggdrop in private:<div class="codebox"><p>Code: </p><pre><code>!access</code></pre></div>it will send me a privmsg of all my flags?<br>example: Your flags are: +jkmnoptx<br>Thanks <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=3871">Jag</a> — Wed Oct 15, 2003 2:27 pm</p><hr />
]]></content>
	</entry>
	</feed>
