mIRC Home    About    Download    Register    News    Help

Print Thread
#171613 26/02/07 05:32 PM
Joined: Feb 2007
Posts: 9
R
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
R
Joined: Feb 2007
Posts: 9
i have this script that ignore every person who send me private (query) message.Now ..how can not be ignored the nicknames that i have in my notify list???
Anyone for help ? smile

on *:OPEN:?:*:{
.msg $nick [You are ignored]
close -m $nick | .ignore -pnu460 $nick 3
}

Joined: Jul 2006
Posts: 107
L
Vogon poet
Offline
Vogon poet
L
Joined: Jul 2006
Posts: 107
Try

Code:
on *:OPEN:?:*:{
  if (!$notify($nick)) {
    .msg $nick [You are ignored]
    close -m $nick | .ignore -pnu460 $nick 3
  } 
}

untested


LonDart
Joined: Feb 2007
Posts: 9
R
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
R
Joined: Feb 2007
Posts: 9
Thank you smile


Link Copied to Clipboard