mIRC Homepage
Posted By: sigbin echo help - 18/10/04 09:35 AM
how can i echo to the status window the JOINS/PARTS/QUITS
coz i want to select only some users to be seen there JOINS/PARTS/QUITS
Code:
 on ^*:JOIN:#fusion:if ([*]-Server iswm $nick) { haltdef | echo -s Join: $nick }
on ^*:PART:#fusion:if ([*]-Server iswm $nick) { haltdef | echo -s Part: $nick }
on ^*:QUIT:if ([*]-Server iswm $nick) { haltdef | echo -s Quit: $nick }
 

like this.... the problem is only nicks are echoed to the status window
Posted By: Daedalus Re: echo help - 18/10/04 02:27 PM
I'm not exactly sure what you want but try this:
Code:
  
on ^*:JOIN:#fusion: {
  if ([*]-Server iswm $nick) { 
    echo -s Join: $nick
    haltdef
  } 
}
on ^*:PART:#fusion: {
  if ([*]-Server iswm $nick) {
    echo -s Part: $nick 
    haltdef
  }
}
on ^*:QUIT: { 
  if ([*]-Server iswm $nick) {
    echo -s Quit: $nick 
    haltdef
  }
}
Posted By: sigbin Re: echo help - 18/10/04 04:22 PM
i wanted it to echo the whole of this
"nick (~ident@ip.address.xxx)" like what you seen in the joins, quits and parts...
Posted By: Daedalus Re: echo help - 18/10/04 04:40 PM
Ok, try /help $address
© mIRC Discussion Forums