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

	<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>2002-02-09T05:11:00-04:00</updated>

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

		<entry>
		<author><name><![CDATA[slennox]]></name></author>
		<updated>2002-02-09T05:11:00-04:00</updated>

		<published>2002-02-09T05:11:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=4406#p4406</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=4406#p4406"/>
		<title type="html"><![CDATA[putserv/putquick]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=4406#p4406"><![CDATA[
(sarcastic message deleted)<br><br>&lt;font size=-1&gt;[ This Message was edited by: slennox on 2002-02-09 02:11 ]&lt;/font&gt;<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=13034">slennox</a> — Sat Feb 09, 2002 5:11 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Yourname]]></name></author>
		<updated>2002-02-08T15:56:00-04:00</updated>

		<published>2002-02-08T15:56:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=4398#p4398</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=4398#p4398"/>
		<title type="html"><![CDATA[putserv/putquick]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=4398#p4398"><![CDATA[
Why are you guys posting questions related to TCL in the eggdrop section?<br><br>Lately, TCL questions being posted on the eggdrop section have become regular now..<br><br>I request the moderator to look into it please...<br><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=13">Yourname</a> — Fri Feb 08, 2002 3:56 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[stdragon]]></name></author>
		<updated>2002-02-07T20:30:00-04:00</updated>

		<published>2002-02-07T20:30:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=4387#p4387</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=4387#p4387"/>
		<title type="html"><![CDATA[putserv/putquick]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=4387#p4387"><![CDATA[
Usually only permanent owners can use the .tcl and .set commands (depends on config file setting).<br><br>My suggestion is to make your own dcc command to do it. Something simple like this:<br><div class="codebox"><p>Code: </p><pre><code>bind dcc - setgreet dcc_setgreetproc dcc_setgreet {hand idx text} {  global greet_a  putdcc $idx "Setting greet_a to $text"  set greet_a $text  return 1}</code></pre></div>Change it according to your needs (add flag checks, whatever) and you should be set.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8">stdragon</a> — Thu Feb 07, 2002 8:30 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2002-02-07T14:41:00-04:00</updated>

		<published>2002-02-07T14:41:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=4367#p4367</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=4367#p4367"/>
		<title type="html"><![CDATA[putserv/putquick]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=4367#p4367"><![CDATA[
Thank you sir, that worked.<br><br>But now that I have the global variables greet_a and greet_b, I should be able to change them via partyline, but I cannot seem to do it.<br><br>I have tried<br><br>.tcl set greet_a "XX Howdy"<br>What?  You need '.help'<br><br>I am owner on the channel I should be able to do that correct?<br><br>Thanx<br>Bodger<p>Statistics: Posted by Guest — Thu Feb 07, 2002 2:41 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[slennox]]></name></author>
		<updated>2002-02-07T14:18:00-04:00</updated>

		<published>2002-02-07T14:18:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=4360#p4360</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=4360#p4360"/>
		<title type="html"><![CDATA[putserv/putquick]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=4360#p4360"><![CDATA[
You're sending the command "A" to the IRC server, which it won't understand. I'm assuming you want a PRIVMSG, in which case you would do:<br><br>putserv "PRIVMSG $chan :$greet_a $nick $greet_b"<br><br>Note that for these types of text messages you should use "puthelp" instead of "putserv", and you should definitely not use "putquick" which is supposed to be reserved for very important things (e.g. locking the channel quickly).<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=13034">slennox</a> — Thu Feb 07, 2002 2:18 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2002-02-07T13:52:00-04:00</updated>

		<published>2002-02-07T13:52:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=4358#p4358</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=4358#p4358"/>
		<title type="html"><![CDATA[putserv/putquick]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=4358#p4358"><![CDATA[
I am trying to make my eggdrop bot display a message in the chatroom.  Looking in tcl-commands.doc it would appear that putserv or putquick would do the work, but if i use either of them no message comes out on the chatroom.<br><br>Here is my script:<br><br>-----------------------------------------<br>set greet_a "Howdy"<br>set greet_b "I'm BodgerBot enjoy this"<br><br>proc join_greet { nick uhost hand chan } {<br>        global greet_a greet_b<br><br>        putserv "A $greet_a $nick $greet_b" -next<br>        putquick "B $greet_a $nick $greet_b" -next<br><br>        dccbroadcast "I am greeting $nick"<br>        return 0<br>}<br><br>bind join - #tfm join_greet<br><br>dccbroadcast "greetjlb.tcl installed"<br>-----------------------------------------<br><br>Any suggestions why I cannot put a message out to the chatroom?<br><br>Thanx<br><br>Bodger<p>Statistics: Posted by Guest — Thu Feb 07, 2002 1:52 pm</p><hr />
]]></content>
	</entry>
	</feed>
