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

	<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>2025-12-04T09:47:45-04:00</updated>

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

		<entry>
		<author><name><![CDATA[pektek]]></name></author>
		<updated>2025-12-04T09:47:45-04:00</updated>

		<published>2025-12-04T09:47:45-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=113410#p113410</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=113410#p113410"/>
		<title type="html"><![CDATA[Re: identify nick random]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=113410#p113410"><![CDATA[
Did you mean this abah ?<br> <div class="codebox"><p>Code: </p><pre><code># --- Sequential NickServ Identify System ---# Prepared for pektek # List of nicks to identifyset ns_nicklist {    Nick1    Nick2    Nick3    Nick4    Nick5    Nick6    Nick7    Nick8}# Password for NickServ (if all nicks use the same password)set ns_password "YOURPASSWORD"# Keeps track of the current index in the nick listset ns_index 0# Interval: 4 hours = 14400 secondsset ns_interval 14400# Function to send NickServ IDENTIFYproc ns_identify {} {    global ns_nicklist ns_password ns_index ns_interval    # Select current nick    set nick [lindex $ns_nicklist $ns_index]    # Send IDENTIFY command    putserv "PRIVMSG NickServ :IDENTIFY $nick $ns_password"    putlog "NickServ IDENTIFY sent for nick: $nick"    # Move to next nick    incr ns_index    if {$ns_index &gt;= [llength $ns_nicklist]} {        set ns_index 0    }    # Schedule next run    utimer $ns_interval ns_identify}# Start system when bot connects to serverbind evnt - init-server ns_startproc ns_start {type} {    global ns_interval    putlog "Sequential NickServ Identify System Started."    utimer 10 ns_identify}</code></pre></div>When the bot connects, the system starts after 10 seconds.<br><br>It sends NickServ:<br><br>/msg NickServ IDENTIFY &lt;nick&gt; &lt;password&gt;<br>Every 4 hours it switches to the next nick in the list.<br><br>After all 8 nicks are done, it loops back to the first nick.<br><br>Your bot’s actual IRC nickname never changes.<br><br><br>Does it work or not ? If not, what are the errors ?<br><br>and<br><br>It seems like this script is not working because it does not show the identify nick process and I have tried this, is there something wrong?   <br><br>the answer is below<br><div class="codebox"><p>Code: </p><pre><code># Nick + password list (each entry is a pair: {nick pass})set np {    {"abikoe" "censored"}    {"akoeabi" "censored"}    {"ombul"  "censored"}}# Counter for which nick to useset cnp 0proc identnick {min hour day month wod} {    # Total number of nick-pass pairs    set total [llength $::np]    # Reset index if out of range    if {$::cnp &gt;= $total} {        set ::cnp 0    }    # Get the current nick-pass pair    set pair [lindex $::np $::cnp]    set nick [lindex $pair 0]    set pass [lindex $pair 1]    # Security check    if {$nick eq "" || $pass eq ""} {        putlog "Warning: Nick or password is empty. Identification skipped!"        return    }    # Change nick    putserv "NICK $nick"    # Identify to NickServ    putserv "PRIVMSG NickServ :IDENTIFY $pass"    # Move to next pair for the next run    incr ::cnp    # Switch back to the bot's main nickname after 2 seconds    utimer 2 [list putserv "NICK $::botnick"]    # Log message    putlog "Auto-ident: Logged in to NickServ using nick $nick."}# Runs every day at 05:00 and 17:00bind cron - "0 5,17 * *" identnick</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=13010">pektek</a> — Thu Dec 04, 2025 9:47 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[abi]]></name></author>
		<updated>2025-04-23T00:18:36-04:00</updated>

		<published>2025-04-23T00:18:36-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=113288#p113288</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=113288#p113288"/>
		<title type="html"><![CDATA[Re: identify nick random]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=113288#p113288"><![CDATA[
<blockquote class="uncited"><div># Fill np with nicks and password<br>set np {<br>   "abikoe" "censored"<br>   "akoeabi" "censored"<br>   "ombul" "censored"<br>}<br><br>set cnp 0<br><br>proc identnick {min hour day month wod} {<br>   putserv "NICK [lindex $::np $::cnp]"<br>   incr ::cnp<br>   putserv "PRIVMSG NickServ :identify [lindex $::np $::cnp]"<br>   #change previous command to the one used on your server<br>   if {$::cnp &gt;= [llength $::np]} {<br>      set ::cnp 0<br>   } else {<br>      incr ::cnp<br>   }<br>   putserv "NICK $::botnick"<br>}<br><br>bind cron - "0 5,17  * *" identnick</div></blockquote>It seems like this script is not working because it does not show the identify nick process and I have tried this, is there something wrong?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=13249">abi</a> — Wed Apr 23, 2025 12:18 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[abah]]></name></author>
		<updated>2025-02-17T02:25:08-04:00</updated>

		<published>2025-02-17T02:25:08-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=113247#p113247</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=113247#p113247"/>
		<title type="html"><![CDATA[Re: identify nick random]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=113247#p113247"><![CDATA[
<blockquote class="uncited"><div>I gave you the good syntax, this is the one you quoted.</div></blockquote>if i want to run at 2 times or 2 times a day. 5 am and 5 pm, is it true that the script i changed a little<blockquote class="uncited"><div>bind cron - "0 5,17 * * *" identnick</div></blockquote><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12299">abah</a> — Mon Feb 17, 2025 2:25 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[CrazyCat]]></name></author>
		<updated>2025-01-30T05:51:02-04:00</updated>

		<published>2025-01-30T05:51:02-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=113239#p113239</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=113239#p113239"/>
		<title type="html"><![CDATA[Re: identify nick random]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=113239#p113239"><![CDATA[
I gave you the good syntax, this is the one you quoted.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=691">CrazyCat</a> — Thu Jan 30, 2025 5:51 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[abah]]></name></author>
		<updated>2025-01-29T21:58:24-04:00</updated>

		<published>2025-01-29T21:58:24-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=113238#p113238</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=113238#p113238"/>
		<title type="html"><![CDATA[Re: identify nick random]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=113238#p113238"><![CDATA[
<blockquote class="uncited"><div>Because the good bind syntax is:<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/styles/atom-one-dark-reasonable.min.css"> <strong>script</strong>  <strong>script</strong> <div class="codebox"><pre><code class="language-tcl">bind cron - "14 3 */2 * *" identnick</code></pre></div> <strong>script</strong> </div></blockquote>can u help me fixed him<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12299">abah</a> — Wed Jan 29, 2025 9:58 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[CrazyCat]]></name></author>
		<updated>2025-01-27T18:59:13-04:00</updated>

		<published>2025-01-27T18:59:13-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=113237#p113237</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=113237#p113237"/>
		<title type="html"><![CDATA[Re: identify nick random]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=113237#p113237"><![CDATA[
Because the good bind syntax is:<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/styles/atom-one-dark-reasonable.min.css"> <strong>script</strong>  <strong>script</strong> <div class="codebox"><pre><code class="language-tcl">bind cron - "14 3 */2 * *" identnick</code></pre></div> <strong>script</strong> <p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=691">CrazyCat</a> — Mon Jan 27, 2025 6:59 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[abah]]></name></author>
		<updated>2025-01-27T08:26:11-04:00</updated>

		<published>2025-01-27T08:26:11-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=113236#p113236</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=113236#p113236"/>
		<title type="html"><![CDATA[Re: identify nick random]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=113236#p113236"><![CDATA[
<blockquote class="uncited"><div>look at this abah<br><br><a href="https://forum.eggheads.org/viewtopic.php?t=21568&amp;sid=6cd3d02a3675b7c4d65d0820bb4f1817" class="postlink">https://forum.eggheads.org/viewtopic.p ... 0bb4f1817</a></div></blockquote>i get error<blockquote class="uncited"><div>[12:23:20] wrong # args: should be "bind type flags cmd/mask ?procname?"<br>    while executing<br>"bind cron - 14 3 */2 * * identnick"<br>    (file "nick/nick.tcl" line 23)<br>    invoked from within<br>"source "$eggdrop(root)/nick.tcl""<br>    (file "nick/settings.tcl" line 3)<br>    invoked from within<br>"source nick/settings.tcl"<br>    (file "faznet.conf" line 224)<br>[12:23:20] * CONFIG FILE NOT LOADED (NOT FOUND, OR ERROR)</div></blockquote><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12299">abah</a> — Mon Jan 27, 2025 8:26 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[pektek]]></name></author>
		<updated>2025-01-02T14:17:25-04:00</updated>

		<published>2025-01-02T14:17:25-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=113227#p113227</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=113227#p113227"/>
		<title type="html"><![CDATA[Re: identify nick random]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=113227#p113227"><![CDATA[
look at this abah<br><br><a href="https://forum.eggheads.org/viewtopic.php?t=21568&amp;sid=6cd3d02a3675b7c4d65d0820bb4f1817" class="postlink">https://forum.eggheads.org/viewtopic.p ... 0bb4f1817</a><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=13010">pektek</a> — Thu Jan 02, 2025 2:17 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[CrazyCat]]></name></author>
		<updated>2024-12-12T05:22:41-04:00</updated>

		<published>2024-12-12T05:22:41-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=113212#p113212</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=113212#p113212"/>
		<title type="html"><![CDATA[Re: identify nick random]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=113212#p113212"><![CDATA[
<blockquote class="uncited"><div>Hello<br>Can anyone help me make a tcl to identify nicks because I have 8 nicks so every 4 hours the nicks take turns identifying without changing the bot's nick</div></blockquote>I don't understand... Your eggdrop change its nick every 4h ? To keep them registered ?<br>You can use the proc which change its nick to send the identifying command, or you can have a proc wich bind the notice saying you must identify and send the correct identification string.<br>It depends on the services used by the network and if each nick has a separate password or if you alway use the same one<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=691">CrazyCat</a> — Thu Dec 12, 2024 5:22 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[abah]]></name></author>
		<updated>2024-12-12T04:36:33-04:00</updated>

		<published>2024-12-12T04:36:33-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=113209#p113209</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=113209#p113209"/>
		<title type="html"><![CDATA[Re: identify nick random]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=113209#p113209"><![CDATA[
<blockquote class="uncited"><div><a href="https://forum.eggheads.org/viewtopic.php?t=21669" class="postlink">viewtopic.php?t=21669</a></div></blockquote>i think no work from me<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12299">abah</a> — Thu Dec 12, 2024 4:36 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[pektek]]></name></author>
		<updated>2024-12-08T01:41:06-04:00</updated>

		<published>2024-12-08T01:41:06-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=113189#p113189</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=113189#p113189"/>
		<title type="html"><![CDATA[Re: identify nick random]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=113189#p113189"><![CDATA[
<a href="https://forum.eggheads.org/viewtopic.php?t=21669" class="postlink">viewtopic.php?t=21669</a><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=13010">pektek</a> — Sun Dec 08, 2024 1:41 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[abah]]></name></author>
		<updated>2024-12-06T02:47:00-04:00</updated>

		<published>2024-12-06T02:47:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=113182#p113182</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=113182#p113182"/>
		<title type="html"><![CDATA[identify nick random]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=113182#p113182"><![CDATA[
Hello<br>Can anyone help me make a tcl to identify nicks because I have 8 nicks so every 4 hours the nicks take turns identifying without changing the bot's nick<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12299">abah</a> — Fri Dec 06, 2024 2:47 am</p><hr />
]]></content>
	</entry>
	</feed>
