This code snippet will allow you to have mirc automatically connect to multiple networks and join different channels on each.
on 1:start: {
server irc.wyldryde.org
server -m irc.example1.com
server -m irc.example2.com
}
on 1:connect: {
if ($network == WyldRyde) {
join #chris,#lockergnome,#help,#usrbingeek
}
else if ($network == Example1) {
join #chan1,#chan2,#chan3
}
else if ($network == Example2) {
join #chan1,#chan2,#chan3
}
}
on *:NOTICE:*This nickname is registered and protected.*:?: {
if (($nick == NickServ) && (*.WyldRyde.org iswm $server)) {
nickserv identify password
else if (($nick == NickServ) && (*.example1.com iswm $server)) {
nickserv identify password
else if (($nick == NickServ) && (*.example2.com iswm $server)) {
nickserv identify password
}
}This code snippet is just a starting point. You'll have to edit this code with the Network names, the channels you want to join and your passwords. You might also have to change the nickserv name.
Some of the script might be obscured by the scroller, make sure you grab the entire script!