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

	<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>2008-10-26T10:52:31-04:00</updated>

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

		<entry>
		<author><name><![CDATA[Sir_Fz]]></name></author>
		<updated>2008-10-26T10:52:31-04:00</updated>

		<published>2008-10-26T10:52:31-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=85655#p85655</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=85655#p85655"/>
		<title type="html"><![CDATA[AutoIdentify script for other nicks (DALnet)]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=85655#p85655"><![CDATA[
You didn't report that bug before although it did exist in the previous version. The correct code would be:<div class="codebox"><p>Code: </p><pre><code>set nicksNpasses { nick1 pass1 nick2 pass2 nick3 pass3}# Change "10 days" to "1 min" so you won't have to wait that long :Pset tenDays [clock scan "1 min"]# change {00 00 *} to * so it'll run every minutebind time - * identify:nicksproc identify:nicks args { global nicksNpasses tenDays if {[unixtime] &gt;= $tenDays} {  identifyNicks $nicksNpasses  set tenDays [clock scan "1 min"] }}proc identifyNicks np { set items 0 foreach {nick pass} $np {  if {$items &lt; 5} {   # show identification in partyline   putlog "Identifying $nick with password: $pass"   # comment the line below so the script doesn't send real identification   #puthelp "NickServ :identify $nick $pass"   incr items  } {   utimer 15 [list identifyNicks [lrange $np [expr {$items*2}] end]]   break  } }}</code></pre></div>Try to test it with a small list since it's just for testing purposes and will *NOT* send actual identification to the services.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3085">Sir_Fz</a> — Sun Oct 26, 2008 10:52 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Amr]]></name></author>
		<updated>2008-10-25T21:18:59-04:00</updated>

		<published>2008-10-25T21:18:59-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=85644#p85644</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=85644#p85644"/>
		<title type="html"><![CDATA[AutoIdentify script for other nicks (DALnet)]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=85644#p85644"><![CDATA[
so , how to fix it?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9309">Amr</a> — Sat Oct 25, 2008 9:18 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Amr]]></name></author>
		<updated>2008-10-23T09:05:17-04:00</updated>

		<published>2008-10-23T09:05:17-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=85611#p85611</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=85611#p85611"/>
		<title type="html"><![CDATA[AutoIdentify script for other nicks (DALnet)]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=85611#p85611"><![CDATA[
Now it says in the party line that it's identify the nicks , but it doesn't.<br><br>Also it says that it's identify the same 5 nicks every 1 sec , and ignores the <br><br>rest of the list.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9309">Amr</a> — Thu Oct 23, 2008 9:05 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[speechles]]></name></author>
		<updated>2008-10-22T22:02:27-04:00</updated>

		<published>2008-10-22T22:02:27-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=85605#p85605</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=85605#p85605"/>
		<title type="html"><![CDATA[AutoIdentify script for other nicks (DALnet)]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=85605#p85605"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code>proc identifyNicks np { global nicksNpasses set items 0 foreach {nick pass} $np { ... rest of proc continues ...</code></pre></div>add <strong class="text-strong">global nicksNpasses</strong> here.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8138">speechles</a> — Wed Oct 22, 2008 10:02 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Amr]]></name></author>
		<updated>2008-10-22T21:19:19-04:00</updated>

		<published>2008-10-22T21:19:19-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=85603#p85603</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=85603#p85603"/>
		<title type="html"><![CDATA[AutoIdentify script for other nicks (DALnet)]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=85603#p85603"><![CDATA[
I got this error in the party line.<br><div class="codebox"><p>Code: </p><pre><code>Tcl error [identify:nicks]: can't read "nicksNpasses": no such variable</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9309">Amr</a> — Wed Oct 22, 2008 9:19 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Sir_Fz]]></name></author>
		<updated>2008-10-19T12:51:07-04:00</updated>

		<published>2008-10-19T12:51:07-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=85564#p85564</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=85564#p85564"/>
		<title type="html"><![CDATA[AutoIdentify script for other nicks (DALnet)]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=85564#p85564"><![CDATA[
I don't see why it shouldn't work. Since you can't provide any information at all, try debugging the script. Use this version for debugging:<div class="codebox"><p>Code: </p><pre><code>set nicksNpasses { nick1 pass1 nick2 pass2 nick3 pass3}# Change "10 days" to "1 min" so you won't have to wait that long :Pset tenDays [clock scan "1 min"]# change {00 00 *} to * so it'll run every minutebind time - * identify:nicksproc identify:nicks args { global nicksNpasses tenDays if {[unixtime] &gt;= $tenDays} {  identifyNicks $nicksNpasses  set tenDays [clock scan "1 min"] }}proc identifyNicks np { set items 0 foreach {nick pass} $np {  if {$items &lt; 5} {   # show identification in partyline   putlog "Identifying $nick with password: $pass"   # comment the line below so the script doesn't send real identification   #puthelp "NickServ :identify $nick $pass"   incr items  } {   utimer 15 [list identifyNicks [lrange $nicksNpasses [expr {$items*2}] end]]   break  } }}</code></pre></div>Try this code. It's supposed to print "Identifying &lt;nick&gt; with password: &lt;password&gt;" in your bot's partyline for each nickname every minute (with the 15 seconds queue between every 5 nicknames of course). If it works, then there's nothing wrong with the script.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3085">Sir_Fz</a> — Sun Oct 19, 2008 12:51 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Amr]]></name></author>
		<updated>2008-10-19T09:57:57-04:00</updated>

		<published>2008-10-19T09:57:57-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=85563#p85563</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=85563#p85563"/>
		<title type="html"><![CDATA[AutoIdentify script for other nicks (DALnet)]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=85563#p85563"><![CDATA[
The edited code didn't work at all.<div class="codebox"><p>Code: </p><pre><code>set nicksNpasses { nick1 pass1 nick2 pass2 nick3 pass3}set tenDays [clock scan "10 days"]bind time - {00 00 *} identify:nicksproc identify:nicks args { global nicksNpasses tenDays if {[unixtime] &gt;= $tenDays} {  identifyNicks $nicksNpasses  set tenDays [clock scan "10 days"] }}proc identifyNicks np { set items 0 foreach {nick pass} $np {  if {$items &lt; 5} {   puthelp "NickServ :identify $nick $pass"   incr items  } {   utimer 15 [list identifyNicks [lrange $nicksNpasses [expr {$items*2}] end]]   break  } }}</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9309">Amr</a> — Sun Oct 19, 2008 9:57 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Sir_Fz]]></name></author>
		<updated>2008-10-19T07:51:54-04:00</updated>

		<published>2008-10-19T07:51:54-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=85561#p85561</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=85561#p85561"/>
		<title type="html"><![CDATA[AutoIdentify script for other nicks (DALnet)]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=85561#p85561"><![CDATA[
Explain what worked and what didn't.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3085">Sir_Fz</a> — Sun Oct 19, 2008 7:51 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Amr]]></name></author>
		<updated>2008-10-17T21:10:50-04:00</updated>

		<published>2008-10-17T21:10:50-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=85554#p85554</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=85554#p85554"/>
		<title type="html"><![CDATA[AutoIdentify script for other nicks (DALnet)]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=85554#p85554"><![CDATA[
It doesn't work.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9309">Amr</a> — Fri Oct 17, 2008 9:10 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Sir_Fz]]></name></author>
		<updated>2008-08-23T15:47:38-04:00</updated>

		<published>2008-08-23T15:47:38-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=84805#p84805</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=84805#p84805"/>
		<title type="html"><![CDATA[AutoIdentify script for other nicks (DALnet)]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=84805#p84805"><![CDATA[
Try the edited code.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3085">Sir_Fz</a> — Sat Aug 23, 2008 3:47 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Amr]]></name></author>
		<updated>2008-08-23T14:51:09-04:00</updated>

		<published>2008-08-23T14:51:09-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=84804#p84804</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=84804#p84804"/>
		<title type="html"><![CDATA[AutoIdentify script for other nicks (DALnet)]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=84804#p84804"><![CDATA[
I got error when i run my eggdrop<br><div class="codebox"><p>Code: </p><pre><code>[21:49] missing close-brace    while executing"proc identifyNicks np { set items 0 foreach {nick pass} $np { if {items &lt; 5} {   puthelp "NickServ :identify $nick $pass"   incr items} else { ..."</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9309">Amr</a> — Sat Aug 23, 2008 2:51 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Sir_Fz]]></name></author>
		<updated>2008-08-23T15:47:21-04:00</updated>

		<published>2008-08-23T14:06:11-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=84803#p84803</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=84803#p84803"/>
		<title type="html"><![CDATA[AutoIdentify script for other nicks (DALnet)]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=84803#p84803"><![CDATA[
<blockquote class="uncited"><div>I tried this script , I have a big list to identify , when it identify the nicks , it just identify the first 14 nick , and it quit with "Killed (services.dal.net (Do not flood services))]"<br><br>Any ideas to fix it ?</div></blockquote>Try<div class="codebox"><p>Code: </p><pre><code>set nicksNpasses { nick1 pass1 nick2 pass2 nick3 pass3}set tenDays [clock scan "10 days"]bind time - {00 00 *} identify:nicksproc identify:nicks args { global nicksNpasses tenDays if {[unixtime] &gt;= $tenDays} {  identifyNicks $nicksNpasses  set tenDays [clock scan "10 days"] }}proc identifyNicks np { set items 0 foreach {nick pass} $np {  if {$items &lt; 5} {   puthelp "NickServ :identify $nick $pass"   incr items  } {   utimer 15 [list identifyNicks [lrange $nicksNpasses [expr {$items*2}] end]]   break  } }}</code></pre></div>This will identify 5 nicks every 15 seconds (you can reduce the wait time by changing the "15" value of the utimer).<br><br>Edit: Fixed brace-balance + $items instead of items.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3085">Sir_Fz</a> — Sat Aug 23, 2008 2:06 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Amr]]></name></author>
		<updated>2008-08-22T19:19:13-04:00</updated>

		<published>2008-08-22T19:19:13-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=84782#p84782</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=84782#p84782"/>
		<title type="html"><![CDATA[AutoIdentify script for other nicks (DALnet)]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=84782#p84782"><![CDATA[
I tried this script , I have a big list to identify , when it identify the nicks , it just identify the first 14 nick , and it quit with "Killed (services.dal.net (Do not flood services))]"<br><br>Any ideas to fix it ?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=9309">Amr</a> — Fri Aug 22, 2008 7:19 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[aqualife]]></name></author>
		<updated>2008-02-01T13:04:46-04:00</updated>

		<published>2008-02-01T13:04:46-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=80549#p80549</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=80549#p80549"/>
		<title type="html"><![CDATA[AutoIdentify script for other nicks (DALnet)]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=80549#p80549"><![CDATA[
I tried to use the above mentioned code with 1 day change, but its not working any correction will be appreciated.<br><br>Thanks.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8831">aqualife</a> — Fri Feb 01, 2008 1:04 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Sir_Fz]]></name></author>
		<updated>2007-01-21T20:41:58-04:00</updated>

		<published>2007-01-21T20:41:58-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=69801#p69801</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=69801#p69801"/>
		<title type="html"><![CDATA[AutoIdentify script for other nicks (DALnet)]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=69801#p69801"><![CDATA[
instead of "10 days" try "1 day"<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3085">Sir_Fz</a> — Sun Jan 21, 2007 8:41 pm</p><hr />
]]></content>
	</entry>
	</feed>
