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

	<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-11-19T10:42:18-04:00</updated>

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

		<entry>
		<author><name><![CDATA[MrT]]></name></author>
		<updated>2003-11-19T10:42:18-04:00</updated>

		<published>2003-11-19T10:42:18-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=30322#p30322</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=30322#p30322"/>
		<title type="html"><![CDATA[problem with qnet.tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=30322#p30322"><![CDATA[
thanks guys, much appreciated<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2161">MrT</a> — Wed Nov 19, 2003 10:42 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Sir_Fz]]></name></author>
		<updated>2003-11-19T09:34:53-04:00</updated>

		<published>2003-11-19T09:34:53-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=30315#p30315</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=30315#p30315"/>
		<title type="html"><![CDATA[problem with qnet.tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=30315#p30315"><![CDATA[
also in the auth proc, the regnick and password are not called globaly, then the variables won't exist.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3085">Sir_Fz</a> — Wed Nov 19, 2003 9:34 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[]Kami[]]></name></author>
		<updated>2003-11-19T02:27:39-04:00</updated>

		<published>2003-11-19T02:27:39-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=30299#p30299</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=30299#p30299"/>
		<title type="html"><![CDATA[problem with qnet.tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=30299#p30299"><![CDATA[
If you want script just for auto and seting mode +x, you can use this one:<br><div class="codebox"><p>Code: </p><pre><code>bind evnt - init-server my:connectproc my:connect init-server {  putquick "PRIVMSG Q@CServe.quakenet.org :AUTH Username Pass"  putquick "MODE $::botnick +x"}</code></pre></div>Where is username out your username, and where is pass put your pass...<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3559">]Kami[</a> — Wed Nov 19, 2003 2:27 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[user]]></name></author>
		<updated>2003-11-18T19:24:16-04:00</updated>

		<published>2003-11-18T19:24:16-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=30282#p30282</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=30282#p30282"/>
		<title type="html"><![CDATA[problem with qnet.tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=30282#p30282"><![CDATA[
You have two procs named "auth". The second one will overwrite the first one and that's what's causing this error. Either rename one of the procs (and change the calls to it) or remove the first one and change the argument part of the second one to only contain one argument called "args"<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2878">user</a> — Tue Nov 18, 2003 7:24 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[MrT]]></name></author>
		<updated>2003-11-18T17:23:00-04:00</updated>

		<published>2003-11-18T17:23:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=30275#p30275</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=30275#p30275"/>
		<title type="html"><![CDATA[problem with qnet.tcl]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=30275#p30275"><![CDATA[
hi, just downloaded and installed qnet.tcl, and it will auth my bot with q fine when the bot joins but i get an error from it which i believe is part of the function to check it is authed at given intervals...<br><div class="codebox"><p>Code: </p><pre><code>bind dcc m authset alltimers [timers]for {set i 0} {$i &lt; [llength $alltimers]} {incr i} {  set this [lindex $alltimers $i]  if {[lindex $this 1]=="auth"} {    killtimer [lindex $this 2]  }}timer 1 authproc auth {} {global authtime regnick password    putserv "PRIVMSG Q@cserve.quakenet.org :AUTH $regnick $password"  timer $authtime auth}proc do_auth {nick uhost hand chan} { global regnick password if {$nick != "Q"} {  return 0 } putserv "MODE $chan +o $nick" putserv "PRIVMSG Q@cserve.quakenet.org :AUTH $regnick $password" putserv "PRIVMSG Q :OP $chan"} proc auth {hand idx args} {putserv "PRIVMSG Q@cserve.quakenet.org :AUTH $regnick $password"}set init-server {  putserv "PRIVMSG Q@cserve.quakenet.org :AUTH $regnick $password" }</code></pre></div>the error i get is:<blockquote class="uncited"><div>Tcl error in script for 'timer47':<br>no value given for parameter "hand" to "auth"</div></blockquote>the "timer47" part seems to increment each time the error occurs<br><br>i'd be grateful for any help you can offer.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2161">MrT</a> — Tue Nov 18, 2003 5:23 pm</p><hr />
]]></content>
	</entry>
	</feed>
