mIRC Home    About    Download    Register    News    Help

Print Thread
#38860 29/07/03 09:22 PM
Joined: Jul 2003
Posts: 47
C
Ameglian cow
OP Offline
Ameglian cow
C
Joined: Jul 2003
Posts: 47
im trying to make an auto identify script so i dont have to type out the ircds long copmmands smile im am very lazy...

what ON event woud u use to catch this?

2:54pm -NickServ- This nickname is registered and protected. If it is your
-
2:54pm -NickServ- nick, type /msg NickServ IDENTIFY password. Otherwise,
-
2:54pm -NickServ- please choose a different nick.

thanks for anyhel you can give smile
-


"watch the news today, so you don't have to watch the history channel tomorrow."
#38861 29/07/03 09:24 PM
Joined: Dec 2002
Posts: 1,321
H
Hoopy frood
Offline
Hoopy frood
H
Joined: Dec 2002
Posts: 1,321
/help on NOTICE


DALnet: #HelpDesk and #m[color:#FF0000]IR[color:#EEEE00]C
#38862 29/07/03 09:31 PM
Joined: Jul 2003
Posts: 47
C
Ameglian cow
OP Offline
Ameglian cow
C
Joined: Jul 2003
Posts: 47
ahh thanks, i just didnt knwo if it was on notice or on snotice smile


"watch the news today, so you don't have to watch the history channel tomorrow."
#38863 29/07/03 09:55 PM
Joined: Dec 2002
Posts: 1,321
H
Hoopy frood
Offline
Hoopy frood
H
Joined: Dec 2002
Posts: 1,321
-ithaca-s.ny.us.dal.net- *** Global -- from Hammer: greetings

That's the general format of an SNotice (which can vary by IRCd). Notice that the nick is a server. Thus, server notice.


DALnet: #HelpDesk and #m[color:#FF0000]IR[color:#EEEE00]C
#38864 29/07/03 10:03 PM
Joined: Jul 2003
Posts: 47
C
Ameglian cow
OP Offline
Ameglian cow
C
Joined: Jul 2003
Posts: 47
this is what i use, buit it doesnt identify... maybe my code is wrong but i dont get an error?


on *:NOTICE:*This nickname is registered and protected.*: {
msg nickserv identify $decode(%password)
echo -s $timestamp Your Password has been sent to services!

}


"watch the news today, so you don't have to watch the history channel tomorrow."
#38865 29/07/03 10:14 PM
Joined: Dec 2002
Posts: 2,809
C
Hoopy frood
Offline
Hoopy frood
C
Joined: Dec 2002
Posts: 2,809
on *:NOTICE:*This nickname is registered and protected.*:?: {
if ($nick == nickserv) {
msg nickserv identify $decode(%password)
echo -s $timestamp Your Password has been sent to services!
}
}

#38866 29/07/03 10:23 PM
Joined: Jul 2003
Posts: 47
C
Ameglian cow
OP Offline
Ameglian cow
C
Joined: Jul 2003
Posts: 47
thanks, i thought that ? was for the use of query :| and since it didnt open in a query window i didnt even consider using ? but heh thats what i get for being a newb smile


"watch the news today, so you don't have to watch the history channel tomorrow."
#38867 30/07/03 03:56 AM
Joined: Dec 2002
Posts: 2,809
C
Hoopy frood
Offline
Hoopy frood
C
Joined: Dec 2002
Posts: 2,809
Sorta, the ? really means "sent directly to you"

Like /notice your_nick hi

You'd use # for "sent to channel"
Like /notice #some_chan_you_are_on hi


Link Copied to Clipboard