mIRC Home    About    Download    Register    News    Help

Print Thread
#48877 12/09/03 12:11 AM
Joined: Apr 2003
Posts: 3
B
blun7 Offline OP
Self-satisified door
OP Offline
Self-satisified door
B
Joined: Apr 2003
Posts: 3
Could someone give me a pointer on how to ignore users in a channel that aren't +o or +v?

#48878 12/09/03 12:17 AM
Joined: Dec 2002
Posts: 3,138
C
Hoopy frood
Offline
Hoopy frood
C
Joined: Dec 2002
Posts: 3,138
Code:
on ^*:TEXT:*:[color:green]#channel[/color]:{
  if ( $nick isreg # ) {
    haltdef
  }
}
on ^*:ACTION:*:[color:green]#channel[/color]:{
  if ( $nick isreg # ) {
    haltdef
  }
}
on ^*:NOTICE:*:[color:green]#channel[/color]:{
  if ( $nick isreg # ) {
    haltdef
  }
}

Should work.

#48879 12/09/03 02:19 AM
Joined: Sep 2003
Posts: 23
N
Ameglian cow
Offline
Ameglian cow
N
Joined: Sep 2003
Posts: 23
Works quite nicely, if you do have an addon to mIRC though, you know, one where they say your name and you get a little popup, you still get the little popup =P

#48880 12/09/03 07:23 AM
Joined: Apr 2003
Posts: 3
B
blun7 Offline OP
Self-satisified door
OP Offline
Self-satisified door
B
Joined: Apr 2003
Posts: 3
Thank you. That works perfectly!

#48881 12/09/03 11:51 AM
Joined: Jul 2003
Posts: 655
Fjord artisan
Offline
Fjord artisan
Joined: Jul 2003
Posts: 655
That would be a nick alert correct? if ($me isin $1-) { echo -s $nick mentioned your nickname. }


"Allen is having a small problem and needs help adjusting his attitude" - Flutterby

Link Copied to Clipboard