mIRC Home    About    Download    Register    News    Help

Print Thread
#173542 25/03/07 10:11 PM
Joined: Aug 2006
Posts: 469
G
Garou Offline OP
Fjord artisan
OP Offline
Fjord artisan
G
Joined: Aug 2006
Posts: 469
Did anyone coded auto nick identify on connect, on notice, on newnick and any other option possible for auto identify?

Garou #173544 25/03/07 10:37 PM
Joined: Aug 2004
Posts: 7,252
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Aug 2004
Posts: 7,252
It would be best if you told us which network(s) you want this to work on. While there is a standard that most networks use, it can vary on a network by network basis.

The basics would be
Code:
on *:connect:{
  .ns identify <password>
}
on me:*:nick:{
  .ns identify <password>
}
on *:notice:*nick is registered*:{
  if $nick == nickserv {
    .ns identify <password>
  }
}


Garou #173598 26/03/07 02:43 PM
Joined: Mar 2007
Posts: 10
L
Pikka bird
Offline
Pikka bird
L
Joined: Mar 2007
Posts: 10
Hi, um, where would this code go under?

Joined: Mar 2007
Posts: 10
L
Pikka bird
Offline
Pikka bird
L
Joined: Mar 2007
Posts: 10
Hi, um, where would this code go under?, im on irc.dejatoons.net

Joined: Aug 2004
Posts: 7,252
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Aug 2004
Posts: 7,252
1) Don't double post. If you have made a post within the past hour, you can edit it (if necessary)
2) This would go in your Remotes section (Alt + R, File -> New)
3) With the exception of the ON CONNECT event, the code I provided matches the format used on dejatoons. You only need the ON CONNECT event if you are sending a password to the server, usually for IRCops purposes. I can't confirm this, as I'm not an IRCop on that network.


Link Copied to Clipboard