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

	<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-02-16T12:51:53-04:00</updated>

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

		<entry>
		<author><name><![CDATA[janipewter]]></name></author>
		<updated>2006-02-16T12:51:53-04:00</updated>

		<published>2006-02-16T12:51:53-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=60475#p60475</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=60475#p60475"/>
		<title type="html"><![CDATA[Need to port over a script from mirc to tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=60475#p60475"><![CDATA[
You are awesome.<br><br>Thanks so much.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7275">janipewter</a> — Thu Feb 16, 2006 12:51 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Sir_Fz]]></name></author>
		<updated>2006-02-16T12:49:13-04:00</updated>

		<published>2006-02-16T12:49:13-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=60474#p60474</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=60474#p60474"/>
		<title type="html"><![CDATA[Need to port over a script from mirc to tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=60474#p60474"><![CDATA[
add<div class="codebox"><p>Code: </p><pre><code>if {![string equal -nocase #cows $chan]} {return 0}</code></pre></div>to the procs.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3085">Sir_Fz</a> — Thu Feb 16, 2006 12:49 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[janipewter]]></name></author>
		<updated>2006-02-16T12:43:42-04:00</updated>

		<published>2006-02-16T12:43:42-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=60473#p60473</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=60473#p60473"/>
		<title type="html"><![CDATA[Need to port over a script from mirc to tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=60473#p60473"><![CDATA[
Thanks very much <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><br><br>What about making it only work on #cows for example?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7275">janipewter</a> — Thu Feb 16, 2006 12:43 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Sir_Fz]]></name></author>
		<updated>2006-02-16T12:34:14-04:00</updated>

		<published>2006-02-16T12:34:14-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=60472#p60472</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=60472#p60472"/>
		<title type="html"><![CDATA[Need to port over a script from mirc to tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=60472#p60472"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code>set news "no news set"bind pub - !news newsbind pub - !setnews setnewsproc news {nick uhost hand chan arg} { puthelp "privmsg $chan :News: $::news"}proc setnews {nick uhost hand chan arg} { if {[isop $nick $chan]} {  set ::news [join [lrange [split $arg] 0 end]] }}</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3085">Sir_Fz</a> — Thu Feb 16, 2006 12:34 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[janipewter]]></name></author>
		<updated>2006-02-16T12:20:10-04:00</updated>

		<published>2006-02-16T12:20:10-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=60471#p60471</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=60471#p60471"/>
		<title type="html"><![CDATA[Need to port over a script from mirc to tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=60471#p60471"><![CDATA[
Currently I've got a kind-of news script being run from a mirc bot, but I wanted to put it on my eggdrop instead. Anyone know the equivelant in tcl language?<br><div class="codebox"><p>Code: </p><pre><code>on *:text:!news:#: { /msg $chan News: %news }on *:TEXT:!setnews*:#:if ($nick isop $chan)  { /set %news $2- }</code></pre></div>Bascially an op can do !setnews &lt;news&gt; and the bot remembers it, and then anyone can do !news and it will relay News: &lt;whatever op has set&gt;<br><br>Thanks, Jani.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7275">janipewter</a> — Thu Feb 16, 2006 12:20 pm</p><hr />
]]></content>
	</entry>
	</feed>
