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

	<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>2006-04-22T02:41:44-04:00</updated>

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

		<entry>
		<author><name><![CDATA[TC^^]]></name></author>
		<updated>2006-04-22T02:41:44-04:00</updated>

		<published>2006-04-22T02:41:44-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=62210#p62210</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=62210#p62210"/>
		<title type="html"><![CDATA[Using $'s inside { }]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=62210#p62210"><![CDATA[
That did the trick.. thanks alot<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6440">TC^^</a> — Sat Apr 22, 2006 2:41 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[De Kus]]></name></author>
		<updated>2006-04-21T13:40:25-04:00</updated>

		<published>2006-04-21T13:40:25-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=62178#p62178</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=62178#p62178"/>
		<title type="html"><![CDATA[Using $'s inside { }]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=62178#p62178"><![CDATA[
try<div class="codebox"><p>Code: </p><pre><code>channel add $chan [list need-unban "banmail $chan"]</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2382">De Kus</a> — Fri Apr 21, 2006 1:40 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[TC^^]]></name></author>
		<updated>2006-04-21T11:58:55-04:00</updated>

		<published>2006-04-21T11:58:55-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=62177#p62177</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=62177#p62177"/>
		<title type="html"><![CDATA[Using $'s inside { }]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=62177#p62177"><![CDATA[
Actually there is..<br><div class="codebox"><p>Code: </p><pre><code>bind msg o|o add msg:addproc msg:add { nick uhost hand args } {    set chan [lindex $args 0]        if {$chan == "#" || $chan == ""} {putquick "PRIVMSG $nick :Fejl! Skriv kanalnavn rigtigt" ; return 0}    if {![string match "#*" $chan]} {set chan "#$chan"}    if {[validchan $chan]} {putquick "PRIVMSG $nick :Jeg er allerede p\345 $chan" ; return 0}    channel add $chan { need-unban { banmail $chan } }    putquick "PRIVMSG $nick :\002$chan\002 added!"    putquick "PRIVMSG #... :$nick added \002$chan\002 to my channel list"}</code></pre></div><strong class="text-strong"><br>[Edit] Sorry for not posting the entire code, can see how that could be confusing [/Edit]</strong><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6440">TC^^</a> — Fri Apr 21, 2006 11:58 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Sir_Fz]]></name></author>
		<updated>2006-04-21T11:33:34-04:00</updated>

		<published>2006-04-21T11:33:34-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=62174#p62174</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=62174#p62174"/>
		<title type="html"><![CDATA[Using $'s inside { }]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=62174#p62174"><![CDATA[
Because $chan doesn't exist. Use #onechannel instead, there's no need for a variable here anyway.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3085">Sir_Fz</a> — Fri Apr 21, 2006 11:33 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[TC^^]]></name></author>
		<updated>2006-04-21T10:52:38-04:00</updated>

		<published>2006-04-21T10:52:38-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=62171#p62171</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=62171#p62171"/>
		<title type="html"><![CDATA[Using $'s inside { }]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=62171#p62171"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code>channel add #onechannel { need-unban { banmail $chan } }</code></pre></div>This adds following info for #onechannel<div class="codebox"><p>Code: </p><pre><code>If I'm banned (need-unban) :   banmail $chan</code></pre></div><br>Why doesn't it add "#onechannel" instead of $chan ??<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6440">TC^^</a> — Fri Apr 21, 2006 10:52 am</p><hr />
]]></content>
	</entry>
	</feed>
