mIRC Home    About    Download    Register    News    Help

Print Thread
#235428 16/12/11 01:52 PM
F
freakyy85
freakyy85
F
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.
#235429 16/12/11 07:03 PM
Joined: Oct 2003
Posts: 3,641
A
Hoopy frood
Offline
Hoopy frood
A
Joined: Oct 2003
Posts: 3,641
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.


Link Copied to Clipboard