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.
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?
This is the code:
set identcmd "identify"
set identpass "mypass"
set nickserv "NickServ"
bind dcc m identify identify:dcc
proc identify:dcc {handle idx arg} {
global botnick nickserv identcmd identpass
puthelp "PRIVMSG $nickserv $identcmd $identpass"
putlog "Identifying to $nickserv (as $botnick)"
}
all it does is an /msg nickserv identify
it does not send the password

any ideas?
greets!