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

	<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>2007-10-09T14:28:56-04:00</updated>

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

		<entry>
		<author><name><![CDATA[nml375]]></name></author>
		<updated>2007-10-09T14:28:56-04:00</updated>

		<published>2007-10-09T14:28:56-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=76535#p76535</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=76535#p76535"/>
		<title type="html"><![CDATA[Botnet / putallbots]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=76535#p76535"><![CDATA[
Nope, description is quite correct.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8052">nml375</a> — Tue Oct 09, 2007 2:28 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[rosc2112]]></name></author>
		<updated>2007-10-09T14:20:04-04:00</updated>

		<published>2007-10-09T14:20:04-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=76534#p76534</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=76534#p76534"/>
		<title type="html"><![CDATA[Botnet / putallbots]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=76534#p76534"><![CDATA[
<blockquote class="uncited"><div> (17) BOT<br>       bind bot &lt;flags&gt; &lt;command&gt; &lt;proc&gt;<br>       proc-name &lt;from-bot&gt; &lt;command&gt; &lt;args&gt;<br><br>       triggered by a message coming from another bot in the botnet; works similar to a DCC binding; the first word is the command and the rest becomes the argument string; flags are ignored</div></blockquote>Looks like the documentation is a bit..wrong.. The 1st part says there's 3 fields for the proc, but the description says 2.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7395">rosc2112</a> — Tue Oct 09, 2007 2:20 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[nml375]]></name></author>
		<updated>2007-10-09T11:50:21-04:00</updated>

		<published>2007-10-09T11:50:21-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=76525#p76525</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=76525#p76525"/>
		<title type="html"><![CDATA[Botnet / putallbots]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=76525#p76525"><![CDATA[
To be honest, I can't see why that tiny tcl:et would'nt work.<br><br>However, one thing that stands out, is that the error message says a completely different argument-list than what's used in the script...<br><br>Minor typo?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8052">nml375</a> — Tue Oct 09, 2007 11:50 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[w00f]]></name></author>
		<updated>2007-10-09T08:01:21-04:00</updated>

		<published>2007-10-09T08:01:21-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=76521#p76521</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=76521#p76521"/>
		<title type="html"><![CDATA[Botnet / putallbots]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=76521#p76521"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code>proc bot:announce { text } {   putlog "$text"}</code></pre></div>try, and use lindex to grab the info if you want/need to.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8264">w00f</a> — Tue Oct 09, 2007 8:01 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Access]]></name></author>
		<updated>2007-10-09T06:05:36-04:00</updated>

		<published>2007-10-09T06:05:36-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=76517#p76517</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=76517#p76517"/>
		<title type="html"><![CDATA[Botnet / putallbots]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=76517#p76517"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code>bind bot - "announce" bot:announceproc bot:announce { bot command text } {putlog "$bot $command $text"}</code></pre></div>a little test script...<br><div class="codebox"><p>Code: </p><pre><code>putallbots "announce kleiner test"</code></pre></div>----&gt;<br><div class="codebox"><p>Code: </p><pre><code>[11:33] Tcl error [bot:announce]: wrong # args: should be "bot:announce bot arg"</code></pre></div>Why this dont work?<br><br><br>thanks...<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=7832">Access</a> — Tue Oct 09, 2007 6:05 am</p><hr />
]]></content>
	</entry>
	</feed>
