mIRC Home    About    Download    Register    News    Help

Print Thread
#33103 30/06/03 12:46 AM
Joined: Apr 2003
Posts: 57
V
Babel fish
OP Offline
Babel fish
V
Joined: Apr 2003
Posts: 57
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

#33104 30/06/03 12:57 AM
Joined: Dec 2002
Posts: 3,547
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Dec 2002
Posts: 3,547
on !*:JOIN:#: {
echo 3 $chan $timestamp Join: $nick has just entered $chan
}

I think. laugh
/help on Join
/help on Part

Last edited by SladeKraven; 30/06/03 01:02 AM.
#33105 30/06/03 01:17 AM
Joined: May 2003
Posts: 215
Fjord artisan
Offline
Fjord artisan
Joined: May 2003
Posts: 215
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

Link Copied to Clipboard