Join/Part Events...
Code:
on ^*:JOIN:#: {
  echo $color(join) -t $chan Join: $nick has just enterted: $chan
  haltdef
}
on ^*:PART:#: {
  echo $color(part) -t $chan Part: $nick has just left: $chan
  haltdef
}


Quit Event...
Code:
on ^*:QUIT: {
  var %i = 1
  while ($comchan($nick,%i)) {
    echo $color(quit) -t $comchan($nick,%i) Quit: $nick has quit IRC ( $+ $1- $+ )
    inc %i
  }
  haltdef
}

Last edited by lammkott; 30/06/03 01:18 AM.

- Jason