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

	<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>2002-10-07T05:12:02-04:00</updated>

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

		<entry>
		<author><name><![CDATA[ppslim]]></name></author>
		<updated>2002-10-07T05:12:02-04:00</updated>

		<published>2002-10-07T05:12:02-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=11764#p11764</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=11764#p11764"/>
		<title type="html"><![CDATA[little help with identify script plz?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=11764#p11764"><![CDATA[
The above solution is not simpler, due to the fact, it simply just changing the command sent to the IRC server.<br><br>You might as well hard-code the command (NS), rather than coding variables to do this job.<br><br>However, the above changes are more secure.<br><br>While IRCD's today, have settings, and built-in functions, to prevent nickname stealing, and solcial engineering attacks, in a goal to steal passwords. There are still servers that do not, plus the fact, IRCD is freely available, thus old versions still remain. This means the possibility of such, still exists.<br><br>Using a specific command, like NS, will prevent this.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2">ppslim</a> — Mon Oct 07, 2002 5:12 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2002-10-06T17:03:03-04:00</updated>

		<published>2002-10-06T17:03:03-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=11759#p11759</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=11759#p11759"/>
		<title type="html"><![CDATA[little help with identify script plz?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=11759#p11759"><![CDATA[
thnx alot guys! it works like a charm now <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><p>Statistics: Posted by Guest — Sun Oct 06, 2002 5:03 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Nexus6]]></name></author>
		<updated>2002-10-04T10:58:18-04:00</updated>

		<published>2002-10-04T10:58:18-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=11705#p11705</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=11705#p11705"/>
		<title type="html"><![CDATA[little help with identify script plz?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=11705#p11705"><![CDATA[
it could be done simplier <br>set nickserv "NS" <br>and then<br>puthelp "$nickserv :$identcmd $identpass"<br>instead of <br>puthelp "PRIVMSG $nickserv :$identcmd $identpass"<br><br>puthelp "$nickserv :$identcmd $identpass" = /ns identify pass<br>if it's for DALnet<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=1850">Nexus6</a> — Fri Oct 04, 2002 10:58 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[egghead]]></name></author>
		<updated>2002-10-04T05:32:13-04:00</updated>

		<published>2002-10-04T05:32:13-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=11700#p11700</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=11700#p11700"/>
		<title type="html"><![CDATA[Re: little help with identify script plz?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=11700#p11700"><![CDATA[
<blockquote class="uncited"><div>This is the code:<br><br>set identcmd "identify"<br>set identpass "mypass"<br>set nickserv "NickServ"<br><br>bind dcc m identify identify:dcc<br><br>proc identify:dcc {handle idx arg} {<br> global botnick nickserv identcmd identpass<br>  puthelp "PRIVMSG $nickserv $identcmd $identpass"<br>  putlog "Identifying to $nickserv (as $botnick)"<br>}<br><br>all it does is an /msg nickserv identify <br>it does not send the password <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_sad.gif" width="15" height="15" alt=":(" title="Sad"><br>any ideas?<br><br>greets!</div></blockquote>Use a ":" in the PRIVMSG:<br><div class="codebox"><p>Code: </p><pre><code>puthelp "PRIVMSG $nickserv :$identcmd $identpass"</code></pre></div>Perhaps this question can be promoted to a FAQ? (Although not a prominent one <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"> )<br><br>Note that if you are on DALNET, you must include the "host" of nickserv: <div class="codebox"><p>Code: </p><pre><code>set nickserv nickserv@services.dal.net</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=282">egghead</a> — Fri Oct 04, 2002 5:32 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2002-10-04T05:25:20-04:00</updated>

		<published>2002-10-04T05:25:20-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=11698#p11698</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=11698#p11698"/>
		<title type="html"><![CDATA[little help with identify script plz?]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=11698#p11698"><![CDATA[
Hi,<br><br>I downloaded an identify script from here that identifies when it detects a notice from nickserv. But I want it to also identify when i enter .identify in party line.<br>As i'm a complete tcl noob, i tried something looking at other tcl's and reading some docs... but couldn't figure it out. Maybe some1 here could help me?<br><br>This is the code:<br><br>set identcmd "identify"<br>set identpass "mypass"<br>set nickserv "NickServ"<br><br>bind dcc m identify identify:dcc<br><br>proc identify:dcc {handle idx arg} {<br> global botnick nickserv identcmd identpass<br>  puthelp "PRIVMSG $nickserv $identcmd $identpass"<br>  putlog "Identifying to $nickserv (as $botnick)"<br>}<br><br>all it does is an /msg nickserv identify <br>it does not send the password <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_sad.gif" width="15" height="15" alt=":(" title="Sad"><br>any ideas?<br><br>greets!<p>Statistics: Posted by Guest — Fri Oct 04, 2002 5:25 am</p><hr />
]]></content>
	</entry>
	</feed>
