mIRC Homepage
Posted By: very_confused on join text - 30/06/03 12:46 AM
how would i go about changing the on join text. how would i change
[20:23] * DuD3 has joined #uc
to some thing like
[20:23] Join: DuD3 has just entered #uc

also the same for quit and parts
Posted By: SladeKraven Re: on join text - 30/06/03 12:57 AM
on !*:JOIN:#: {
echo 3 $chan $timestamp Join: $nick has just entered $chan
}

I think. laugh
/help on Join
/help on Part
Posted By: lammkott Re: on join text - 30/06/03 01:17 AM
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
}
© mIRC Discussion Forums