Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jul 15th, 2012  |  syntax: mIRC  |  size: 0.57 KB  |  hits: 37  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
This paste has a previous version, view the difference. Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. on *:start: {
  2.   server irc.server1.com
  3.   server -m irc.server2.com
  4.   server -m irc.server3.com
  5.   server -m irc.server4.com
  6. }
  7. on *:connect: {
  8.   if (YOURNETWORK isin $network) {
  9.     msg nickserv ghost YOURNICK YOURPASS
  10.     nick YOURNICK
  11.     msg nickserv identify YOURPASS
  12.   }
  13.   else if (YOUROTHERNETWORK isin $network) {
  14.     msg nickserv ghost YOUROTHERNICK YOUROTHERPASS
  15.     nick YOUROTHERNICK
  16.     msg nickserv identify YOUROTHERPASS
  17.   }
  18.   else {
  19.     msg nickserv ghost YOUR3RDNICK YOUR3RDPASS
  20.     nick YOUR3RDNICK
  21.     msg nickserv identify YOUR3RDPASS
  22.   }
  23. }