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

	<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-05-08T16:08:38-04:00</updated>

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

		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2004-05-08T16:08:38-04:00</updated>

		<published>2004-05-08T16:08:38-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=36211#p36211</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=36211#p36211"/>
		<title type="html"><![CDATA[return Version reply]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=36211#p36211"><![CDATA[
<blockquote class="uncited"><div>hmm..set the version to a variable and output the variable?</div></blockquote>yes, right<p>Statistics: Posted by Guest — Sat May 08, 2004 4:08 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[zleppy]]></name></author>
		<updated>2004-05-08T15:03:11-04:00</updated>

		<published>2004-05-08T15:03:11-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=36210#p36210</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=36210#p36210"/>
		<title type="html"><![CDATA[return Version reply]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=36210#p36210"><![CDATA[
hmm..set the version to a variable and output the variable?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4821">zleppy</a> — Sat May 08, 2004 3:03 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2004-05-08T08:59:19-04:00</updated>

		<published>2004-05-08T08:59:19-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=36198#p36198</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=36198#p36198"/>
		<title type="html"><![CDATA[return Version reply]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=36198#p36198"><![CDATA[
no if I send the \001VERSION\001 to the channel, it will reply the versions of all users in the channel $chan.<br>It does reply the version, but I want to save that reply to a variable, so i can make a fomatted output<p>Statistics: Posted by Guest — Sat May 08, 2004 8:59 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[]Kami[]]></name></author>
		<updated>2004-05-07T08:10:16-04:00</updated>

		<published>2004-05-07T08:10:16-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=36175#p36175</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=36175#p36175"/>
		<title type="html"><![CDATA[Re: return Version reply]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=36175#p36175"><![CDATA[
<blockquote class="uncited"><div>hi<br><br>I got that:<div class="codebox"><p>Code: </p><pre><code>bind pub - !version versionproc version {nick uhost hand chan arg} { if {($arg != "")} { putserv "PRIVMSG $arg :\001VERSION $arg\001" }  if {($arg == "")} { putserv "PRIVMSG $nick :\001VERSION $nick\001"}}</code></pre></div>It's let's the bot ask for users version, but I want the bot to write that into the channel, but I have no idea how, I searched for an answer a lot, but did'n find anything about it.</div></blockquote><div class="codebox"><p>Code: </p><pre><code>bind pub - !version versionproc version {nick uhost hand chan arg} { if {($arg != "")} { putserv "PRIVMSG $chan :\001VERSION $arg\001" }  if {($arg == "")} { putserv "PRIVMSG $chan :\001VERSION $nick\001"}}</code></pre></div>maybe <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=3559">]Kami[</a> — Fri May 07, 2004 8:10 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2004-05-07T03:01:13-04:00</updated>

		<published>2004-05-07T03:01:13-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=36171#p36171</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=36171#p36171"/>
		<title type="html"><![CDATA[return Version reply]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=36171#p36171"><![CDATA[
hi<br><br>I got that:<div class="codebox"><p>Code: </p><pre><code>bind pub - !version versionproc version {nick uhost hand chan arg} { if {($arg != "")} { putserv "PRIVMSG $arg :\001VERSION $arg\001" }  if {($arg == "")} { putserv "PRIVMSG $nick :\001VERSION $nick\001"}}</code></pre></div>It's let's the bot ask for users version, but I want the bot to write that into the channel, but I have no idea how, I searched for an answer a lot, but did'n find anything about it.<p>Statistics: Posted by Guest — Fri May 07, 2004 3:01 am</p><hr />
]]></content>
	</entry>
	</feed>
