this is what I got so far, I haven't had time to test it properly yet, but I think it will do smile

Code:
on *:load: {

  echo 15-
  echo 15 nickfetcher activated
  echo 15 currently set to fetch '<nick>'
  echo 15-

}

on *:start: {

  set %getnick <nick>
  notify %getnick

}

;alias fetchnick { 
;
;  if ($1) { set %getnick $1 | notify $1 } 
;
;  }

on *:UNOTIFY: {
  if ($nick == %getnick) {
    nick $nick
  }
}



EDIT: typo

Last edited by Frenatic; 16/02/07 08:09 PM.