There's no need for goto end, use if, elseif and else.

Code:
on *:NOTIFY: {
  if ($nick == Nick1) { }
  elseif ($nick == Nick2) { }
  else { }
}