Hi

This is what I have compiled so far and it does not seem to work......

Does any one have any ideas they could throw my way....

Code:
ON *:CONNECT: {
  GetNick
}
ALIAS -l GetNick {
  if ($me == $anick) {
    .timerGetNick. $+ $cid 1 10 ISON $anick $mnick
  }
}
RAW 303:*: {
  if ($me == $anick) {
    if (!$istok($2-, $anick, 32) || $istok($2-, $mnick, 32)) {
      GetNick
      } | else {
      .nick $mnick
    }
    halt
  }
}

on 1:CONNECT: {
  if ($me != Corner_Lurker) {
    msg nickserv ghost Corner_Lurker password
    nick ^Merlin
    msg nickserv identify password
   }
  else { 
    msg nickserv identify password
   }
}


The above does not seem to be working...

What I am trying to achieve is this:

Scenario:

^Merlin connection aborted blahblah
connected as Corner_Lurker (which is 2nd choice nick)


**but at this point I would like the script to change the nick back to ^Merlin

Thanks in advance.


Never ASSUME!!!

As it often makes and ASS out of U and ME!!