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

	<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-01-05T03:54:41-04:00</updated>

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

		<entry>
		<author><name><![CDATA[Alchera]]></name></author>
		<updated>2005-01-05T03:54:41-04:00</updated>

		<published>2005-01-05T03:54:41-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=44947#p44947</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=44947#p44947"/>
		<title type="html"><![CDATA[notice NickServ]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=44947#p44947"><![CDATA[
In relation to the belated editing of my last post, I stumbled across <a href="http://www.ballarat.us/downloads/raw.tcl" class="postlink">raw.tcl</a> on a Russian site (no longer has links) which will list all RAWS via DCC that your bot is currently using (via script). I am only familiar with the 4 I use in my auto identify script (600, 601, 604 &amp; 605) and have no idea what any of the others are capable of (a pointer in the right direction would be nice).<br><br>Some one might find the script useful. <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3646">Alchera</a> — Wed Jan 05, 2005 3:54 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[awyeah]]></name></author>
		<updated>2005-01-02T21:17:46-04:00</updated>

		<published>2005-01-02T21:17:46-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=44864#p44864</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=44864#p44864"/>
		<title type="html"><![CDATA[notice NickServ]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=44864#p44864"><![CDATA[
Well yeah, but in this case this is something different I beleive than an auto identify script, it is a script to check if a nick is registered or not, then go ahead and register it. Like a NICK REGISTER SCRIPT. Keep note your bot's mainnick, should be set to the nick you want to register which would be $nick and when $nick == $botnick then only the nick will be registered. <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4875">awyeah</a> — Sun Jan 02, 2005 9:17 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Alchera]]></name></author>
		<updated>2005-01-02T21:19:00-04:00</updated>

		<published>2005-01-02T21:07:43-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=44863#p44863</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=44863#p44863"/>
		<title type="html"><![CDATA[notice NickServ]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=44863#p44863"><![CDATA[
And we suppose the bot goes off and happily collects the e-mail and completes the process? In other words, what's the point? All that is required of the bot is to run a decent auto identify script once the bot owner has secured an appropriate nick for it.<br><br>*<strong class="text-strong">Edited</strong>*<br>Below is code I use on all my bots (on two networks using 'watch'):<div class="codebox"><p>Code: </p><pre><code># name: autoident.tcl # NOTE: uses Bahamut (DALnets ircd) specific features (watch), # won't work on other ircds that dont support them.# identify#   This allows manual identify.#     Command console:  Dcc # Name of one part of Services (e.g. NickServ, ChanServ) # (or any other nick) set servicesname "NickServ" # Name of NickServ set nickservicename "NickServ@services.dal.net" # Set the next line as your bot's nick to identify to set mynick "BotNick" # Set the next line as your bot's password on nickserv set nickserv_pass "nickpass" ## Don't change below this. bind raw - 601 services_offline bind raw - 605 services_offline bind raw - 604 services_online bind raw - 600 services_online bind evnt - init-server dowatch proc dowatch { type } { putserv "watch +$::servicesname" } proc services_offline { from keyword args } {  putlog "Services have left the building!" } proc services_online { from keyword args } {  putserv "PRIVMSG $::nickservicename :identify $::mynick $::nickserv_pass"  putlog "Identified to $::servicesname" } bind dcc o identify manual_identify proc manual_identify {hand idx mascara} {  putserv "PRIVMSG $::nickservicename :identify $::nickserv_pass"     putlog "Identifying manually for nick \002\[$::botnick\]\002" } putlog "AutoIdent, enabling watch.. (for $servicesname)" putserv "watch +$servicesname" putlog "AutoIdent loaded."</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3646">Alchera</a> — Sun Jan 02, 2005 9:07 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[awyeah]]></name></author>
		<updated>2005-01-02T20:53:02-04:00</updated>

		<published>2005-01-02T20:53:02-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=44861#p44861</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=44861#p44861"/>
		<title type="html"><![CDATA[Re: notice NickServ]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=44861#p44861"><![CDATA[
<blockquote class="uncited"><div>hello ppls,<br><br>is it possible to send nickserv a privmsg with -&gt; msg nickserv register password email<br><br>after nickserv send a notice to an eggdrop with the text Your nick (nickname) isn't registered.</div></blockquote>Yes it is possible todo that. But the eggdrop must do a /nickserv info &lt;nick&gt; to check before the nick is registered or not.<br><br>You can bind to raw or notc "*The nick * is not registered.*" something like this depending upon your nickserv reply and check if string equals $nick and NickServ then go ahead and /nick &lt;nick&gt; (you want to reg). Then check if $botnick is the nick you want to register (as it could be in use), then putserv "PRIVMSG NickServ :REGISTER &lt;password&gt; &lt;email&gt;".<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4875">awyeah</a> — Sun Jan 02, 2005 8:53 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[caesar]]></name></author>
		<updated>2005-01-02T10:37:55-04:00</updated>

		<published>2005-01-02T10:37:55-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=44851#p44851</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=44851#p44851"/>
		<title type="html"><![CDATA[notice NickServ]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=44851#p44851"><![CDATA[
Have you bothered checking the TCL Archive before posting? There are lots of nickserv/chanserv/etc. scripts. Just pick one that suits your needs. <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_idea.gif" width="15" height="15" alt=":idea:" title="Idea"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=187">caesar</a> — Sun Jan 02, 2005 10:37 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Bruticus]]></name></author>
		<updated>2005-01-02T09:59:06-04:00</updated>

		<published>2005-01-02T09:59:06-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=44848#p44848</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=44848#p44848"/>
		<title type="html"><![CDATA[identify]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=44848#p44848"><![CDATA[
Yes identify offcourse too but i don't no how i can make a tcl for this <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_sad.gif" width="15" height="15" alt=":(" title="Sad"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5528">Bruticus</a> — Sun Jan 02, 2005 9:59 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[^DooM^]]></name></author>
		<updated>2005-01-02T08:45:51-04:00</updated>

		<published>2005-01-02T08:45:51-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=44846#p44846</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=44846#p44846"/>
		<title type="html"><![CDATA[notice NickServ]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=44846#p44846"><![CDATA[
You should only need to register once. did you perhaps mean IDENTIFY?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3723">^DooM^</a> — Sun Jan 02, 2005 8:45 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Alchera]]></name></author>
		<updated>2005-01-02T08:08:41-04:00</updated>

		<published>2005-01-02T08:08:41-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=44842#p44842</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=44842#p44842"/>
		<title type="html"><![CDATA[notice NickServ]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=44842#p44842"><![CDATA[
You register the nick you want with that command (on some networks) and then collect the e-mail sent following the included instructions to complete the process.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3646">Alchera</a> — Sun Jan 02, 2005 8:08 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Bruticus]]></name></author>
		<updated>2005-01-02T07:23:26-04:00</updated>

		<published>2005-01-02T07:23:26-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=44841#p44841</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=44841#p44841"/>
		<title type="html"><![CDATA[notice NickServ]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=44841#p44841"><![CDATA[
hello ppls,<br><br>is it possible to send nickserv a privmsg with -&gt; msg nickserv register password email<br><br>after nickserv send a notice to an eggdrop with the text Your nick (nickname) isn't registered.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5528">Bruticus</a> — Sun Jan 02, 2005 7:23 am</p><hr />
]]></content>
	</entry>
	</feed>
