worlplugz
09-14-2010, 03:46 PM
With this script you can autojoin/connect on starting mIRC to multiple servers, channels with different nicks. I really hope that someone understands this tut.
on *:START: {
/server irc..mibbit.net 6667
/server -m server port
}
on *:CONNECT: {
if ($network == Mibbit) {
/nick youralias
.msg Nickserv GHOST yournick password
/nick yournick
.msg NickServ IDENTIFY password
; Put any channels you'd like to join under this line.
/join #torrentinvite.com tichat111
}
if ($network == networkname) {
/nick youralias
.msg Nickserv GHOST yournick password
/nick yournick
.msg NickServ IDENTIFY password
; Put any channels you'd like to join under this line.
/join #anychannel
}
}
http://i51.tinypic.com/2byusk.jpg
I just realized that there are some words spelled wrong in the picture :laugh:.
If you don't have a registered nick on a server and don't want to use a registered nick then you can delete these lines:
.msg Nickserv GHOST yournick password
.msg NickServ IDENTIFY password
on *:START: {
/server irc..mibbit.net 6667
/server -m server port
}
on *:CONNECT: {
if ($network == Mibbit) {
/nick youralias
.msg Nickserv GHOST yournick password
/nick yournick
.msg NickServ IDENTIFY password
; Put any channels you'd like to join under this line.
/join #torrentinvite.com tichat111
}
if ($network == networkname) {
/nick youralias
.msg Nickserv GHOST yournick password
/nick yournick
.msg NickServ IDENTIFY password
; Put any channels you'd like to join under this line.
/join #anychannel
}
}
http://i51.tinypic.com/2byusk.jpg
I just realized that there are some words spelled wrong in the picture :laugh:.
If you don't have a registered nick on a server and don't want to use a registered nick then you can delete these lines:
.msg Nickserv GHOST yournick password
.msg NickServ IDENTIFY password