mIRC Home    About    Download    Register    News    Help

Print Thread
#273241 28/02/25 01:29 PM
Joined: May 2022
Posts: 103
F
Fernet Offline OP
Vogon poet
OP Offline
Vogon poet
F
Joined: May 2022
Posts: 103
Hello. There're a lot of "Query Blocker" addons , so usefull against trolls.
I wonder: is possible to have a NOTICE BLOCKER?
Thanks

Fernet #273250 03/03/25 12:23 PM
Joined: May 2022
Posts: 103
F
Fernet Offline OP
Vogon poet
OP Offline
Vogon poet
F
Joined: May 2022
Posts: 103
I solved using---> /ignore -n <nick>

Fernet #273257 04/03/25 03:36 AM
Joined: Nov 2021
Posts: 135
Vogon poet
Offline
Vogon poet
Joined: Nov 2021
Posts: 135
you could try this :

Code

ON *:notice:*:*:{ if (!$regex($nick,/^((Oper|Nick|Chan|Memo|Host)Serv)$/i)) { .ignore -nu600 $+($nick,!*@*) } } 


Simo #273259 04/03/25 02:20 PM
Joined: May 2022
Posts: 103
F
Fernet Offline OP
Vogon poet
OP Offline
Vogon poet
F
Joined: May 2022
Posts: 103
Originally Posted by Simo
you could try this :

Code

ON *:notice:*:*:{ if (!$regex($nick,/^((Oper|Nick|Chan|Memo|Host)Serv)$/i)) { .ignore -nu600 $+($nick,!*@*) } } 


Thanks sir. This block any notice , right? Not just a nick. I mean...If I need to block only the one who is stalking...

Fernet #273267 05/03/25 03:38 AM
Joined: Nov 2021
Posts: 135
Vogon poet
Offline
Vogon poet
Joined: Nov 2021
Posts: 135
yes this will ignore anyone who sends you notice except the usual services like nickserv and chanserv and such as you need to be able to receive messages from services

Code

ON *:notice:*:*:{ if (!$regex($nick,/^((Oper|Nick|Chan|Memo|Host)Serv)$/i)) { .ignore -nu600 $address($nick,2) } } 



Link Copied to Clipboard