mIRC Home    About    Download    Register    News    Help

Print Thread
#38860 29/07/03 09:22 PM
C
captain_obvious
captain_obvious
C
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
-

#38861 29/07/03 09:24 PM
Joined: Dec 2002
Posts: 1,253
H
Hoopy frood
Offline
Hoopy frood
H
Joined: Dec 2002
Posts: 1,253
/help on NOTICE

#38862 29/07/03 09:31 PM
C
captain_obvious
captain_obvious
C
ahh thanks, i just didnt knwo if it was on notice or on snotice smile

#38863 29/07/03 09:55 PM
Joined: Dec 2002
Posts: 1,253
H
Hoopy frood
Offline
Hoopy frood
H
Joined: Dec 2002
Posts: 1,253
-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.

#38864 29/07/03 10:03 PM
C
captain_obvious
captain_obvious
C
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!

}

#38865 29/07/03 10:14 PM
C
codemastr
codemastr
C
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
C
captain_obvious
captain_obvious
C
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

#38867 30/07/03 03:56 AM
C
codemastr
codemastr
C
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