This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

Identify Passwords

Old posts that have not been replied to for several years.
Locked
S
SniperAC

Post by SniperAC »

I am running my bot on a server that makes you enter a password for your nick..

-------------------------------------------
Ex.

<Nickserv> Identify your Nick or I will change it for you!

<Nick>/msg Nickserv Identify <password>
-------------------------------------------
how do I make my bot do this
Sorry if I sound lame :sad:
p
ppslim
Revered One
Posts: 3914
Joined: Sun Sep 23, 2001 8:00 pm
Location: Liverpool, England

Post by ppslim »

Locate the line "set init-server" in your config file, and place this line below it.
lappend init-server "[list putserv "PRIVMSG Nickserv identify <password>"]"
Note: change the <password> for your nickserv password.
S
SniperAC

Post by SniperAC »

hmm


<font size=-1>[ This Message was edited by: SniperAC on 2001-10-14 12:54 ]</font>
S
SniperAC

Post by SniperAC »

I put it in and it didnt work, So i went a step ahead and put it to msg me didnt work..
____________________________________________
# script to run (if any) when first connecting to a server
set init-server { putserv "MODE $botnick +i-ws" }
lappend init-server "[list putserv "PRIVMSG Sniperac hello>"]"
____________________________________________

Alls it did was enter The channels
Version eggdrop1.6.6
D
Darmoth
Master
Posts: 210
Joined: Sun Oct 07, 2001 8:00 pm
Location: old europe

Post by Darmoth »

Try services2.1.tcl or a similar script.
It works fine for me.
S
SniperAC

Post by SniperAC »

I did :
____________________________________
lappend init-server "[list putserv "PRIVMSG Nickserv identify <password>"]"
____________________________________
But I get error:
____________________________________
[03:38] unknown putserv option: should be one of: -normal -next
____________________________________
I am Tryin Scripts but They End at

____________________________________
/msg nickserv Identify
____________________________________
has to be:
____________________________________
/msg Nickserv identify <Password>
____________________________________

The Script is: http://www.egghelp.org/tclarchive/Services-ID.zip

I tryed most of the scripts at
http://www.egghelp.org/cgi-bin/tclarchi ... &results=1

inside it:
____________________________________
set init-server { putserv "PRIVMSG
Sniperac identify <password>" }
____________________________________

http://www.observers.net
irc.observers.com #obs #games #tech.obs
soon to be http://www.observers.net/games
E-mail SniperAC@observers.net

<font size=-1>[ This Message was edited by: SniperAC on 2001-10-14 03:41 ]</font>
S
SniperAC

Post by SniperAC »

Some-one tell me..
This is a project for school "Fund. of tech."
I have 3 more days to Hand This in

I need a working bot...


Sorry I am a "newbie"
p
ppslim
Revered One
Posts: 3914
Joined: Sun Sep 23, 2001 8:00 pm
Location: Liverpool, England

Post by ppslim »

Doesn't school work entail working on things on your own.

100% of the courses I have done (including school), required that I knew how the hing worked.
p
ppslim
Revered One
Posts: 3914
Joined: Sun Sep 23, 2001 8:00 pm
Location: Liverpool, England

Post by ppslim »

Does the nickserv send the message via private message or notice?
S
SniperAC

Post by SniperAC »

^^ notice

I was told to "Pick a project" she knows how it worked but this is a "make up" project I was out for 1 month so she asked me if I could do eggdrop not knowing what it was I said "ya" ( I dont know why I couldnt keep my "big mouth" shut....
Ya I do know how it works but not all "The code"

Ya it did it says "<nickserv> type /msg nickserv help"

but I fixed it
The problem I was geting was an error in my/the script whoever made it left out a ":"
The correct line is
lappend init-server "[putserv "PRIVMSG Nickserv :identify <password>"]"
I took out "list" b/c it Gave me an error
but it still works

Thank You for trying to help

The Script That i found works good is "Nickserv.tcl" you have to edit what I said but it works for me too

<font size=-1>[ This Message was edited by: SniperAC on 2001-10-29 13:16 ]</font>
S
SniperAC

Post by SniperAC »

http://www.observers.net
irc.observers.net #games #obs #tech.obs #warez

Comeing soon http://www.observers.net/games

<font size=-1>[ This Message was edited by: SniperAC on 2001-10-17 15:43 ]</font>
S
SniperAC

Post by SniperAC »

I am useing Nickserv.tcl its a good script
it lets you put whin you want it to say your Password to the server..
bind notc - "*please choose a different nick.*" identify:notc
You just have to edit this if you get a problem

Problem is whin it msgs Nickserv it sys
/Msg nickserv ifentify
the line in the script was just missing a ":"
so I edited the script to say
puthelp "PRIVMSG $nickserv :$identcmd $identpass"
trust me if you dont know what line this is you have the rong script

That the only thing realy hard to edit in this then you just edit what ya need/it tells ya..
EX.
set identpass "FUFME"


Link to this script:
http://www.egghelp.org/tclarchive/DaLNeT_NickServ.zip





<font size=-1>[ This Message was edited by: SniperAC on 2001-10-29 13:36 ]</font>
Locked