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

	<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>2003-09-29T07:18:08-04:00</updated>

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

		<entry>
		<author><name><![CDATA[mia_richard]]></name></author>
		<updated>2003-09-29T07:18:08-04:00</updated>

		<published>2003-09-29T07:18:08-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=27711#p27711</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=27711#p27711"/>
		<title type="html"><![CDATA[this qnet auth script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=27711#p27711"><![CDATA[
thank you (both)<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3760">mia_richard</a> — Mon Sep 29, 2003 7:18 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[egghead]]></name></author>
		<updated>2003-09-29T06:22:47-04:00</updated>

		<published>2003-09-29T06:22:47-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=27710#p27710</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=27710#p27710"/>
		<title type="html"><![CDATA[Re: this qnet auth script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=27710#p27710"><![CDATA[
<blockquote class="uncited"><div><div class="codebox"><p>Code: </p><pre><code>set authnick "myauth"set authkey "myauthpw"bind dcc m qauth qauthbind raw - 001 qauthproc qauth {nick host hand args} {   global authnick authkey   putserv "PRIVMSG Q@CServe.quakenet.org :auth $authnick $authkey"}What means the bind dcc m qauth qauth (for what)thank you</code></pre></div></div></blockquote>There are 5 items in that sentence:<br>bind : command creating a binding<br>dcc : type of binding is partyline (DCC)<br>m : flag of the user that will trigger the binding (m = master)<br>quath : the command the user must give to trigger the binding. Note that commands on the partyline are preceeded by a dot (.)<br>qauth : the name of the procedure that is called if the binding is triggered.<br><br>So, it means a binding to a command given on the partyline (DCC).<br>If a master (flag m) types ".qauth" on the partyline, the procedure named "qauth" is called.<br><br>You can also check docs/tcl-commands.doc for further info on bindings.<br><blockquote class="uncited"><div>(2)  DCC<br>bind dcc &lt;flags&gt; &lt;command&gt; &lt;proc&gt;<br>procname &lt;handle&gt; &lt;idx&gt; &lt;text&gt;<br><br>Description: used for partyline commands; the command is the first<br>word and everything else becomes the text argument. The idx is<br>valid until the user disconnects. After that, it may be reused,<br>so be careful about storing an idx for long periods of time.<br>Module: core</div></blockquote>edit: heh didn't notice mortician already answered.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=282">egghead</a> — Mon Sep 29, 2003 6:22 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[mortician]]></name></author>
		<updated>2003-09-29T04:56:45-04:00</updated>

		<published>2003-09-29T04:56:45-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=27705#p27705</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=27705#p27705"/>
		<title type="html"><![CDATA[this qnet auth script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=27705#p27705"><![CDATA[
the bind dcc creates a partyline command, when you type .qauth in the pline your bot will auth ...<br><br>However, if I'm not mistaking, your proc has too many parameters, it should be like<br><br>proc qauth {handle idx text} { ...<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=1942">mortician</a> — Mon Sep 29, 2003 4:56 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[mia_richard]]></name></author>
		<updated>2003-09-29T04:31:22-04:00</updated>

		<published>2003-09-29T04:31:22-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=27704#p27704</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=27704#p27704"/>
		<title type="html"><![CDATA[this qnet auth script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=27704#p27704"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code>set authnick "myauth"set authkey "myauthpw"bind dcc m qauth qauthbind raw - 001 qauthproc qauth {nick host hand args} {   global authnick authkey   putserv "PRIVMSG Q@CServe.quakenet.org :auth $authnick $authkey"}What means the bind dcc m qauth qauth (for what)thank you</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3760">mia_richard</a> — Mon Sep 29, 2003 4:31 am</p><hr />
]]></content>
	</entry>
	</feed>
