Ok thanks for all the help on the quit/part messages.

Now... how do i make it echo to me the number of users when I join a channel.

Code:
  

on me:^*:join:#: {
  echo $color(join) -t * Now talking in: $chan
  .enable #join
  halt
}
#join off
raw 353:*: {
  echo $3 Users:
  @ - $nick($3,0,o) / % - $nick($3,0,h) / + - $nick($3,0,v) / regular - $nick($3,0,r) / total - $nick($3,0)
  halt
}
raw 366:*: {
.disable #join | halt }
#join end



This doesnt do anything for me.

any ideas?

Also..

Code:
 
$nick($chan,0) total users ( $+ $nick($chan,0,o) ops,  $nick($chan,0,v,o) voices, $calc($nick($chan,0) - ($nick($chan,0,o) + $nick($chan,0,v,o))) others)  


i added that to the quit message. all it returns is

" total users ( ops, voices, 0 others) "

??????

Last edited by brad2; 01/07/03 11:43 PM.