mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Feb 2008
Posts: 2
C
Cessna Offline OP
Bowl of petunias
OP Offline
Bowl of petunias
C
Joined: Feb 2008
Posts: 2
Hey, I'm kinda new around here.

I have an issue with the network in the house, so I very often face disconnecting and reconnecting to irc.

A) Is there any way to connect to two servers on mIRC startup automatically? I know about perform but:
B) When I reconnect after a disconnect, is there any way to make the perform command so that irc does not open a second server window? Something like /server -m irc.quakenet.org (if server is not already connected to)
C) What I am asking is if I can both have two servers on startup + still maintain only two if I disconnect.

Thanks!

Joined: Oct 2004
Posts: 8,330
Hoopy frood
Offline
Hoopy frood
Joined: Oct 2004
Posts: 8,330
We really need a sticky with this... it's been posted so often. smile

Code:
on *:start: {
  server irc.server1.net
  server -m irc.server2.net
}


Invision Support
#Invision on irc.irchighway.net
Joined: Feb 2008
Posts: 2
C
Cessna Offline OP
Bowl of petunias
OP Offline
Bowl of petunias
C
Joined: Feb 2008
Posts: 2
Is this supposed to be put in perform?

Joined: Dec 2002
Posts: 2,031
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Dec 2002
Posts: 2,031

It's a script that goes in the Remote section of the script editor. alt+r

Joined: Oct 2004
Posts: 8,330
Hoopy frood
Offline
Hoopy frood
Joined: Oct 2004
Posts: 8,330
Any code given to you on these forums goes into the Remotes tab in Alt-R unless it specifically tells you otherwise. smile


Invision Support
#Invision on irc.irchighway.net
Joined: Mar 2008
Posts: 1
Mostly harmless
Offline
Mostly harmless
Joined: Mar 2008
Posts: 1
I want to connect to 2 different servers also, but one is using the standard 6667 port and the other is using SSL on +7001

How do I modify the script for the SSL server?

Joined: Dec 2002
Posts: 2,031
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Dec 2002
Posts: 2,031

You can add the port to the server command...

Code:

on *:START: {
  server irc.server1.net 6667
  server -m irc.server2.net +7001
}




Link Copied to Clipboard