mIRC Home    About    Download    Register    News    Help

Print Thread
#235428 16/12/11 01:52 PM
Joined: Dec 2011
Posts: 1
F
Mostly harmless
OP Offline
Mostly harmless
F
Joined: Dec 2011
Posts: 1
Hi all I have a question. I use sBNC with different usernames. Since now I was using nnscript but it's not compatible with the latest mIRC version. Now my question is, how can I connect to different networks (for me, the same BNC) with different idents (or eMAil addresses beeing used as ident)? And, automate connecting at startup?

Thank you!

freaky

Last edited by freakyy85; 16/12/11 01:53 PM.
Joined: Oct 2003
Posts: 3,918
A
Hoopy frood
Offline
Hoopy frood
A
Joined: Oct 2003
Posts: 3,918
The script for connecting to servers on start is:

Code:
on *:START: {
  server irc.server1.com -i mainnick altnick email@host realname -j #chan1,#chan2,...
  server -m irc.server2.com -i othermain otheralt otheremail realname -j #chan1,#chan2,...
  ...
}


fill in the parameters (everything other than the "server" command and "-m"/"-i"/"-j" should be adjusted) to match the main nick, alt nick, email, real name, and channels to join for each server. If both servers are the same bnc, then use the same server for both connections but modify the email@host part to work for your different username values. You can also supply a password if that's necessary, it would go before the "-i".

Note that the first /server uses no -m, but the second, third, fourth, ... /server commands need -m to create a new status window.


- argv[0] on EFnet #mIRC
- "Life is a pointer to an integer without a cast"

Link Copied to Clipboard