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

	<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-01-08T11:26:52-04:00</updated>

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

		<entry>
		<author><name><![CDATA[quiki]]></name></author>
		<updated>2004-01-08T11:26:52-04:00</updated>

		<published>2004-01-08T11:26:52-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=32329#p32329</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=32329#p32329"/>
		<title type="html"><![CDATA[Need some help with an tcl here. very simple I guess]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=32329#p32329"><![CDATA[
Thx guyes<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3896">quiki</a> — Thu Jan 08, 2004 11:26 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[arcane]]></name></author>
		<updated>2004-01-08T11:04:56-04:00</updated>

		<published>2004-01-08T11:04:56-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=32328#p32328</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=32328#p32328"/>
		<title type="html"><![CDATA[Need some help with an tcl here. very simple I guess]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=32328#p32328"><![CDATA[
replace "PRIVMSG $mychan" with "NOTICE $nick"<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2617">arcane</a> — Thu Jan 08, 2004 11:04 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[cvanmeer]]></name></author>
		<updated>2004-01-08T11:03:07-04:00</updated>

		<published>2004-01-08T11:03:07-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=32327#p32327</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=32327#p32327"/>
		<title type="html"><![CDATA[Need some help with an tcl here. very simple I guess]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=32327#p32327"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code>I have this tcl, how do I make it msg the list private to the one who type !list ?? Hoping someone could help me. set mychan "#Mychan" set mylist { "My text1" "My text2" } bind pub - "!list" read:shells proc read:shells {nick uhost handle chan args} { global mychan mylist if {[string tolower $chan] != [string tolower $mychan] } { return 0 } foreach line $mylist { puthelp "PRIVMSG $mychan :$line" } return 1 } </code></pre></div>replace this with:<br>-----------------------------<br><div class="codebox"><p>Code: </p><pre><code>set mychan "#Mychan" set mylist { "My text1" "My text2" } bind pub -|- !list read:shells proc read:shells {nick uhost handle chan text} {  global mychan mylist  if {[string tolower $chan] != [string tolower $mychan] } { return 0 }  foreach line $mylist {   puthelp "PRIVMSG $nick :$line"  } return 1 } </code></pre></div><br>Greetz,<br><br>Chrizz<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4215">cvanmeer</a> — Thu Jan 08, 2004 11:03 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[quiki]]></name></author>
		<updated>2004-01-08T09:42:03-04:00</updated>

		<published>2004-01-08T09:42:03-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=32326#p32326</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=32326#p32326"/>
		<title type="html"><![CDATA[Need some help with an tcl here. very simple I guess]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=32326#p32326"><![CDATA[
I have this tcl, how do I make it msg the list private to the one who type !list ?? Hoping someone could help me.<br><br>set mychan "#Mychan" <br>set mylist { <br>"My text1" <br>"My text2" <br>} <br><br>bind pub - "!list" read:shells <br><br>proc read:shells {nick uhost handle chan args} { <br>   global mychan mylist <br>   if {[string tolower $chan] != [string tolower $mychan] } { return 0 } <br>   foreach line $mylist { <br>      puthelp "PRIVMSG $mychan :$line" <br>   } <br>   return 1 <br>}<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3896">quiki</a> — Thu Jan 08, 2004 9:42 am</p><hr />
]]></content>
	</entry>
	</feed>
