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

	<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>2004-08-02T23:29:17-04:00</updated>

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

		<entry>
		<author><name><![CDATA[greenbear]]></name></author>
		<updated>2004-08-02T23:29:17-04:00</updated>

		<published>2004-08-02T23:29:17-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=39404#p39404</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=39404#p39404"/>
		<title type="html"><![CDATA[identify to nickserv]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=39404#p39404"><![CDATA[
Actually, if you reeeallly wanted to go for KISS, then he should go with the identify code in init-server, and register the nick from partyline, like Alchera and myself already told him to.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=24">greenbear</a> — Mon Aug 02, 2004 11:29 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[awyeah]]></name></author>
		<updated>2004-08-02T23:14:08-04:00</updated>

		<published>2004-08-02T23:14:08-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=39402#p39402</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=39402#p39402"/>
		<title type="html"><![CDATA[identify to nickserv]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=39402#p39402"><![CDATA[
For KISS:<br><br>Use this in the same procedure binded on event, init-server: <br><div class="codebox"><p>Code: </p><pre><code>utimer 35 "putquick \"PRIVMSG nickserv :REGISTER $botnick $pass $email\" -next"</code></pre></div>There we go!  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_wink.gif" width="15" height="15" alt=":wink:" title="Wink"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4875">awyeah</a> — Mon Aug 02, 2004 11:14 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Alchera]]></name></author>
		<updated>2004-08-02T22:13:43-04:00</updated>

		<published>2004-08-02T22:13:43-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=39400#p39400</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=39400#p39400"/>
		<title type="html"><![CDATA[identify to nickserv]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=39400#p39400"><![CDATA[
Has anyone heard of the famous KISS principle?<br><br>"Keep It Simple Stupid"<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3646">Alchera</a> — Mon Aug 02, 2004 10:13 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[awyeah]]></name></author>
		<updated>2004-08-02T21:53:55-04:00</updated>

		<published>2004-08-02T21:53:55-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=39399#p39399</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=39399#p39399"/>
		<title type="html"><![CDATA[identify to nickserv]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=39399#p39399"><![CDATA[
Or alternatively, you can call another procedure with a 30+ second delay timer and then register the nick.<br><br>Something like this should do it!  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_mrgreen.gif" width="15" height="15" alt=":mrgreen:" title="Mr. Green"> <br><div class="codebox"><p>Code: </p><pre><code>#Set the password to register the nick withset pass "irule"#Set the email to register the nick withset email "awyeah@microsoft.com"bind evnt - init-server delay:in:register proc delay:in:register {type} {  global botnick pass email  putquick "MODE $botnick +i-ws" -next  utimer 35 [list register:nick $pass $email]}proc register:nick {pass email} { global botnick  putquick "PRIVMSG nickserv :REGISTER $botnick $pass $email" -next}</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4875">awyeah</a> — Mon Aug 02, 2004 9:53 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Alchera]]></name></author>
		<updated>2004-08-02T20:51:09-04:00</updated>

		<published>2004-08-02T20:51:09-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=39390#p39390</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=39390#p39390"/>
		<title type="html"><![CDATA[identify to nickserv]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=39390#p39390"><![CDATA[
You can register the nick with services, fix up access list etc and *then* have the bot identify on connect or setup its' nick via DCC with something simple &gt;&gt; .msg nickserv register password [email]. For DALnet: .msg <a href="mailto:NickServ@services.dal.net">NickServ@services.dal.net</a> register password [email]<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3646">Alchera</a> — Mon Aug 02, 2004 8:51 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[greenbear]]></name></author>
		<updated>2004-08-02T20:41:36-04:00</updated>

		<published>2004-08-02T20:41:36-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=39389#p39389</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=39389#p39389"/>
		<title type="html"><![CDATA[identify to nickserv]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=39389#p39389"><![CDATA[
If you want to put a delay on a command, you can use a utimer<br><div class="codebox"><p>Code: </p><pre><code>utimer xx [list &lt;you code goes here&gt;]</code></pre></div>xx being the number of seconds.<br><br>However, since it's a one time deal, you could just as well just leave the code you have now, and register the nick thru partyline with something like:<br><div class="codebox"><p>Code: </p><pre><code>.dump privmsg nickserv register &lt;nick&gt; &lt;pass&gt; &lt;e-mail&gt;</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=24">greenbear</a> — Mon Aug 02, 2004 8:41 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[gasman]]></name></author>
		<updated>2004-08-02T20:12:29-04:00</updated>

		<published>2004-08-02T20:12:29-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=39387#p39387</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=39387#p39387"/>
		<title type="html"><![CDATA[identify to nickserv]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=39387#p39387"><![CDATA[
yes as i stated in last line the line will be changed once successful in registring<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4574">gasman</a> — Mon Aug 02, 2004 8:12 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Alchera]]></name></author>
		<updated>2004-08-02T19:45:24-04:00</updated>

		<published>2004-08-02T19:45:24-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=39385#p39385</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=39385#p39385"/>
		<title type="html"><![CDATA[identify to nickserv]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=39385#p39385"><![CDATA[
You're trying to <strong class="text-strong">register</strong> a nick not identify to it. <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_razz.gif" width="15" height="15" alt=":P" title="Razz"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3646">Alchera</a> — Mon Aug 02, 2004 7:45 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[gasman]]></name></author>
		<updated>2004-08-02T19:25:00-04:00</updated>

		<published>2004-08-02T19:25:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=39381#p39381</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=39381#p39381"/>
		<title type="html"><![CDATA[identify to nickserv]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=39381#p39381"><![CDATA[
hello all<br><br>i'm something of a newbie with the eggdrops but i'm trying to make mine<br>identify to nickserv...from what i have gleaned from the messages i've read about this and associated subjects i came to the conclusion that the following needed to be put into the conf<br><br>proc evnt:init_server {type} {<br>  global botnick<br>  putquick "MODE $botnick +i-ws"<br>  putquick "PRIVMSG nickserv :register &lt;nick&gt; &lt;pass&gt; &lt;e-mail&gt;" -next<br><br>but..when the bot connects i get<br>-NickServ (<a href="mailto:services@nsane.net">services@nsane.net</a>)- You have to be connected longer than 30 seconds to register your nick.<br><br>is there something i need to add to this to delay it for xx amount of time<br><br>the line will obviously be changed once registered to the ident command etc<br><br>TIA<br>gasman<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4574">gasman</a> — Mon Aug 02, 2004 7:25 pm</p><hr />
]]></content>
	</entry>
	</feed>
