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

	<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-09-15T08:28:37-04:00</updated>

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

		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2002-09-15T08:28:37-04:00</updated>

		<published>2002-09-15T08:28:37-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=10909#p10909</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=10909#p10909"/>
		<title type="html"><![CDATA[Bot auto IDENTIFY password's Botnick when come on IRC !]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=10909#p10909"><![CDATA[
Can I use TCL script auto IDENTIFY without .adduser NickServ to Userlist of my eggdrop Bot ??????<br><br> I try .adduser NickServ then I pico -w mybot.user, But I can't see NickServ in user list !! only my nick in Userlist as Owner  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_sad.gif" width="15" height="15" alt=":(" title="Sad"> <br><br> I'm beginner ! pls help me !! thank you very much !!! My Bot is joining IRC successful !! But I cann't control it as made it IDENTIFY with NickServ<p>Statistics: Posted by Guest — Sun Sep 15, 2002 8:28 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[sys]]></name></author>
		<updated>2002-09-15T05:25:08-04:00</updated>

		<published>2002-09-15T05:25:08-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=10905#p10905</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=10905#p10905"/>
		<title type="html"><![CDATA[Bot auto IDENTIFY password's Botnick when come on IRC !]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=10905#p10905"><![CDATA[
put this in bot config file.<br>on connect it will auto identify to nickserv.<br><blockquote class="uncited"><div>set init-server { putserv "PRIVMSG NickServ :IDENTIFY password }</div></blockquote>for dalnet:<blockquote class="uncited"><div>set init-server { putserv "PRIVMSG <a href="mailto:nickserv@services.dal.net">nickserv@services.dal.net</a> :IDENTIFY password }</div></blockquote><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=21">sys</a> — Sun Sep 15, 2002 5:25 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2002-09-14T13:21:07-04:00</updated>

		<published>2002-09-14T13:21:07-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=10881#p10881</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=10881#p10881"/>
		<title type="html"><![CDATA[Bot auto IDENTIFY password's Botnick when come on IRC !]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=10881#p10881"><![CDATA[
this is what I use for dal, it can be changed for another network I am sure<br><div class="codebox"><p>Code: </p><pre><code>################################################################################################################## Identify Script for Eggdrop 1.3.x, 1.4.x, 1.5.x ##################################################################################################################################################### HOW TO INSTALL ######################################## Just type in the Settings and add Nickserv as a user in the userlist with the right host# and give him the flag "I".. and you're done :)############################################################################################### SETTINGS ########set botnick_pass "pass"set bot_nick "LamBot"set nickserv_nick "NickServ"set chanserv "chanserv@services.dal.net"########################################################################################################set keep-nick 1bind notc - "*you*nick*" nick_in_usebind notc - "*nick*use*" nick_in_usebind notc - "*ill*nick*" nick_in_usebind notc - "*msg*IDENTIFY*pass*" identify_to_nickservbind notc - "*Password accepted for*" op_chanservproc nick_in_use { nick uhost hand args rest } {    global botnick botnick_pass bot_nick nickserv_nick     if { $botnick != "$bot_nick" } {      putserv "$nickserv_nick :ghost $bot_nick $botnick_pass"      putlog "Nick \002\[$bot_nick\]\002 is in use... Ghosting..."      }}proc identify_to_nickserv { nick uhost hand args rest } {  global botnick botnick_pass bot_nick nickserv_nick  if { $botnick == "$bot_nick" } {   putquick "$nickserv_nick :identify $botnick_pass"   putlog "Identifying for nick \002\[$bot_nick\]\002"  } else {   putlog "The nick \002\[$botnick\]\002 is not the nick specified in identify.tcl"  }}proc op_chanserv { nick uhost hand args } {   global botnick chanserv channame     putlog "\002Catched Notice\002 from \002$chanserv\002"     foreach channame [channels] {       putserv "PRIVMSG $chanserv :OP $channame $botnick"        putlog "\002Trying to gain ops\002 in \002$channame\002 from \002$chanserv\002"     }}bind dcc o identify manual_identifyproc manual_identify { hand idx mascara } { global nickserv_nick botnick_pass bot_nick putserv "$nickserv_nick :identify $botnick_pass"    putlog "Identifying manualy for nick \002\[$bot_nick\]\002"}#######################################################################################putlog "NickServ Identify Script by DrLinux - Loaded."</code></pre></div><p>Statistics: Posted by Guest — Sat Sep 14, 2002 1:21 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2002-09-14T11:43:17-04:00</updated>

		<published>2002-09-14T11:43:17-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=10877#p10877</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=10877#p10877"/>
		<title type="html"><![CDATA[Bot auto IDENTIFY password's Botnick when come on IRC !]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=10877#p10877"><![CDATA[
I config my eggdrop use this TCL script to auto identify but it's doesn't work out too  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_sad.gif" width="15" height="15" alt=":(" title="Sad">  :<br><br>#file identify.tcl<br>set identcmd "identify"<br>set identpass "xenogear0129380064"<br>set nickserv "NickServ"<br>bind notc - "*This nickname is owned by someone else.*" identify:notc<br>proc identify:notc { nick uhost handle text dest } { <br> global botnick nickserv identcmd identpass <br> if { $nick == $nickserv } {<br>  puthelp "PRIVMSG $nickserv $identcmd $identpass"<br>  putlog "Identifying : $nickserv (as $botnick)"<br> }<br>}<br><br>And I insert this line to my config file :<br><br> source scripts/identify.tcl<br><br>Please help me this problem !!! ..thanksssssssssssssssssssssss<p>Statistics: Posted by Guest — Sat Sep 14, 2002 11:43 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2002-09-14T09:31:41-04:00</updated>

		<published>2002-09-14T09:31:41-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=10873#p10873</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=10873#p10873"/>
		<title type="html"><![CDATA[Bot auto IDENTIFY password's Botnick when come on IRC !]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=10873#p10873"><![CDATA[
problem with these is when services lag, you won't ever get your bot to identify.. It should be triggered off nickserv.. plus, splits CAN cause your nick to loose identify, I have seen it, then your bot is never identified then either till you do it manually...<br><br><br>Event drivin is always best.. thats how mine works..<p>Statistics: Posted by Guest — Sat Sep 14, 2002 9:31 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[darko``]]></name></author>
		<updated>2002-09-14T07:24:06-04:00</updated>

		<published>2002-09-14T07:24:06-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=10871#p10871</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=10871#p10871"/>
		<title type="html"><![CDATA[Bot auto IDENTIFY password's Botnick when come on IRC !]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=10871#p10871"><![CDATA[
That's cause you put your quotes (") after the IRC command PRIVMSG instead of before as i wrote.<br>Read my earlier post again.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=1881">darko``</a> — Sat Sep 14, 2002 7:24 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[spyda]]></name></author>
		<updated>2002-09-14T01:34:10-04:00</updated>

		<published>2002-09-14T01:34:10-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=10867#p10867</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=10867#p10867"/>
		<title type="html"><![CDATA[Bot auto IDENTIFY password's Botnick when come on IRC !]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=10867#p10867"><![CDATA[
This is a little script that i made up about a year ago... Hope it helps you<br><div class="codebox"><p>Code: </p><pre><code>set asus(nick) "nickop@austnet.org"set asus(pass) "password"bind EVNT - connect-server asus_connectproc asus_connect {connect} { global asus  puthelp "PRIVMSG $asus(nick) :$asus(pass)"  putlog "Identifying to Services"}</code></pre></div>Hope that helps you out..<br><br>----------<br>ThePope<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=1731">spyda</a> — Sat Sep 14, 2002 1:34 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2002-09-14T00:37:04-04:00</updated>

		<published>2002-09-14T00:37:04-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=10866#p10866</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=10866#p10866"/>
		<title type="html"><![CDATA[Bot auto IDENTIFY password's Botnick when come on IRC !]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=10866#p10866"><![CDATA[
I try this line in my config file. But it doesn't work out :<br>  <br>set init-server { putserv PRIVMSG "NickServ :IDENTIFY password" }<br><br> I use my bot on IRC server with command IDENTIFY nickname is :<br>    /msg IDENTIFY password <br><br>  Any suggestion with me pls ! thanks and more thanksssss ...<p>Statistics: Posted by Guest — Sat Sep 14, 2002 12:37 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[darko``]]></name></author>
		<updated>2002-09-13T14:25:38-04:00</updated>

		<published>2002-09-13T14:25:38-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=10854#p10854</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=10854#p10854"/>
		<title type="html"><![CDATA[Bot auto IDENTIFY password's Botnick when come on IRC !]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=10854#p10854"><![CDATA[
Reading the config file will reveal that there are 2 possbile ways to do that without using a script. <br><br>1) server list accepts lines like:<br><br>servername:port:pass<br><br>There you can setup your pass<br><br>2) set init-server {some procedure here}<br><br>That is a TCL command or a procedure that will be executed upon succesfull connection to server, you can have something like:<br><br>set init-server {putserv "PRIVMSG NickServ!<a href="mailto:services@my.blah.net">services@my.blah.net</a> :IDENTIFY blah"}<br><br>On the other hand, if services are restarted during your time online, or there is a netsplit or something of the sort, you will become not identified. That's why ppslim suggested the TCL script. But in case you are on the network that you couldnt find script for, then use one of the before mentioned methods.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=1881">darko``</a> — Fri Sep 13, 2002 2:25 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ppslim]]></name></author>
		<updated>2002-09-13T08:41:11-04:00</updated>

		<published>2002-09-13T08:41:11-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=10839#p10839</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=10839#p10839"/>
		<title type="html"><![CDATA[Bot auto IDENTIFY password's Botnick when come on IRC !]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=10839#p10839"><![CDATA[
Look for a scritp designed to do this in the tcl archive on the main <a href="http://www.egghelp.org/" class="postlink">egghelp</a> website.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2">ppslim</a> — Fri Sep 13, 2002 8:41 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2002-09-13T06:34:02-04:00</updated>

		<published>2002-09-13T06:34:02-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=10834#p10834</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=10834#p10834"/>
		<title type="html"><![CDATA[Bot auto IDENTIFY password's Botnick when come on IRC !]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=10834#p10834"><![CDATA[
Pls help me how to config the config file to Bot can auto IDENTIFY when come on IRC  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_confused.gif" width="15" height="15" alt=":-?" title="Confused"><p>Statistics: Posted by Guest — Fri Sep 13, 2002 6:34 am</p><hr />
]]></content>
	</entry>
	</feed>
