
Untitled
By: a guest on
Jul 15th, 2012 | syntax:
mIRC | size: 0.57 KB | hits: 37 | expires: Never
on *:start: {
server irc.server1.com
server -m irc.server2.com
server -m irc.server3.com
server -m irc.server4.com
}
on *:connect: {
if (YOURNETWORK isin $network) {
msg nickserv ghost YOURNICK YOURPASS
nick YOURNICK
msg nickserv identify YOURPASS
}
else if (YOUROTHERNETWORK isin $network) {
msg nickserv ghost YOUROTHERNICK YOUROTHERPASS
nick YOUROTHERNICK
msg nickserv identify YOUROTHERPASS
}
else {
msg nickserv ghost YOUR3RDNICK YOUR3RDPASS
nick YOUR3RDNICK
msg nickserv identify YOUR3RDPASS
}
}