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

	<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>2005-03-07T00:48:43-04:00</updated>

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

		<entry>
		<author><name><![CDATA[mcdarby]]></name></author>
		<updated>2005-03-07T00:48:43-04:00</updated>

		<published>2005-03-07T00:48:43-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=47280#p47280</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=47280#p47280"/>
		<title type="html"><![CDATA[Having difficulty with this desc script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=47280#p47280"><![CDATA[
<blockquote class="uncited"><div>probably didnt change the mask according to what the pubm bind expects ("% !desc name")<br><br>edit: yep</div></blockquote>Yep, that was the problem, didn't realize the % needed to be in there.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=1594">mcdarby</a> — Mon Mar 07, 2005 12:48 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[awyeah]]></name></author>
		<updated>2005-03-07T00:02:48-04:00</updated>

		<published>2005-03-07T00:02:48-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=47279#p47279</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=47279#p47279"/>
		<title type="html"><![CDATA[Having difficulty with this desc script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=47279#p47279"><![CDATA[
Just try using the bind:<br><div class="codebox"><p>Code: </p><pre><code>bind pub - "!desc" pub:desc</code></pre></div>And check next:<br>if {[string equal "Name" [lindex $arg 0]]}<br><br>Something like this:<br><div class="codebox"><p>Code: </p><pre><code>bind pub - "!desc" pub:descset inuse 0 proc pub:desc {nick host hand chan arg} {    global inuse if {[string equal "Name" [lindex $arg 0]]} {    if { $inuse == 1 } {    putquick "PRIVMSG $chan :Sorry, !desc is currently in use, please wait 30 seconds and try again"    return    }    set inuse 1    putquick "PRIVMSG $chan :Desc of Name"    utimer 30 {set inuse 0}    }}</code></pre></div>As for the .tcl command to work in DCC you have to comment the unbind directive for dcc:tcl in the bot's .conf file and then restart the bot.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4875">awyeah</a> — Mon Mar 07, 2005 12:02 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[greenbear]]></name></author>
		<updated>2005-03-07T00:00:50-04:00</updated>

		<published>2005-03-07T00:00:50-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=47278#p47278</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=47278#p47278"/>
		<title type="html"><![CDATA[Having difficulty with this desc script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=47278#p47278"><![CDATA[
I believe spock gave you the answer.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=24">greenbear</a> — Mon Mar 07, 2005 12:00 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[mcdarby]]></name></author>
		<updated>2005-03-06T23:52:32-04:00</updated>

		<published>2005-03-06T23:52:32-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=47277#p47277</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=47277#p47277"/>
		<title type="html"><![CDATA[Having difficulty with this desc script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=47277#p47277"><![CDATA[
<blockquote class="uncited"><div>There's only one bind pub, which should have been changed to bind pubm. All the others? If you've changed the proc name, from pub:desc to pubm:desc that won't eventually effect the working of the script.<br><br>If the script does not work, what error do you get? Check in DCC:<blockquote class="uncited"><div>.tcl set errorInfo</div></blockquote></div></blockquote>Well, the eggdrop still isn't responding to it and there is no error messages at all. And .tcl doesn't work in DCC of the eggdrop as it goes "What?, you need help?" in response to .tcl in DCC.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=1594">mcdarby</a> — Sun Mar 06, 2005 11:52 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[spock]]></name></author>
		<updated>2005-03-06T21:18:48-04:00</updated>

		<published>2005-03-06T21:18:48-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=47273#p47273</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=47273#p47273"/>
		<title type="html"><![CDATA[Having difficulty with this desc script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=47273#p47273"><![CDATA[
probably didnt change the mask according to what the pubm bind expects ("% !desc name")<br><br>edit: yep<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2369">spock</a> — Sun Mar 06, 2005 9:18 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[awyeah]]></name></author>
		<updated>2005-03-06T21:08:34-04:00</updated>

		<published>2005-03-06T21:08:34-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=47272#p47272</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=47272#p47272"/>
		<title type="html"><![CDATA[Having difficulty with this desc script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=47272#p47272"><![CDATA[
There's only one bind pub, which should have been changed to bind pubm. All the others? If you've changed the proc name, from pub:desc to pubm:desc that won't eventually effect the working of the script.<br><br>If the script does not work, what error do you get? Check in DCC:<blockquote class="uncited"><div>.tcl set errorInfo</div></blockquote><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4875">awyeah</a> — Sun Mar 06, 2005 9:08 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[mcdarby]]></name></author>
		<updated>2005-03-06T15:42:42-04:00</updated>

		<published>2005-03-06T15:42:42-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=47248#p47248</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=47248#p47248"/>
		<title type="html"><![CDATA[Having difficulty with this desc script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=47248#p47248"><![CDATA[
<blockquote class="uncited"><div>bind pub only work with a single word, use pubm if you want more than one trigger word.</div></blockquote>I just tried changing all the "pub"s to "pubm"s and that still didn't work.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=1594">mcdarby</a> — Sun Mar 06, 2005 3:42 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[greenbear]]></name></author>
		<updated>2005-03-06T14:39:47-04:00</updated>

		<published>2005-03-06T14:39:47-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=47242#p47242</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=47242#p47242"/>
		<title type="html"><![CDATA[Having difficulty with this desc script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=47242#p47242"><![CDATA[
bind pub only work with a single word, use pubm if you want more than one trigger word.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=24">greenbear</a> — Sun Mar 06, 2005 2:39 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[mcdarby]]></name></author>
		<updated>2005-03-06T14:03:29-04:00</updated>

		<published>2005-03-06T14:03:29-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=47240#p47240</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=47240#p47240"/>
		<title type="html"><![CDATA[Having difficulty with this desc script]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=47240#p47240"><![CDATA[
Hi, I am having some difficulty with this !desc script that I have because the problem is that the eggdrop isn't responding when the command "!desc Name" is issued in any of the channels it is in. This is the script that I have.<br><div class="codebox"><p>Code: </p><pre><code>bind pub -|- "!desc Name" pub:descset inuse 0proc pub:desc {nick host hand chan arg} {    global inuse    if { $inuse == 1 } {    putquick "PRIVMSG $chan :Sorry, !desc is currently in use, please wait 30 seconds and try again"    return    }    set inuse 1    putquick "PRIVMSG $chan :Desc of Name"    utimer 30 {set inuse 0}}</code></pre></div>I hoping that you can tell me what the problem might be.<br><br>McDarby[/code]<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=1594">mcdarby</a> — Sun Mar 06, 2005 2:03 pm</p><hr />
]]></content>
	</entry>
	</feed>
