mIRC Home    About    Download    Register    News    Help

Print Thread
#273337 30/03/25 08:11 AM
Joined: May 2022
Posts: 100
F
Fernet Offline OP
Vogon poet
OP Offline
Vogon poet
F
Joined: May 2022
Posts: 100
=====
mIRC 7.79
=====
I'm planning..(well, I'm trying, but it looks I'm not a good student), a kinda notice WARNING.
I created a file noticeblocked.txt in a directory ADDONS

Then I added 2 lines in a remote:
Code
  •NOTICELOCKER•
  .LOCK $1 : /write addons/noticeblocked.txt $1
  .UNLOCK $1 : /write -d addons/noticeblocked.txt $1

This to can easily add/remove a nick in file .txt

Then I created this:
Code

on *:notice:*:?: {
  if ($read(addons/noticeblocked.txt) iswm $nick) {
    .notice $nick NOTICE NOT ALLOWED !!!
  }
}

It works only if I have 1 nick in list. If I have 2 or more, it doesn't work.
Why?
Any help is appreciated as always.
Thanks in advance.

Last edited by Fernet; 30/03/25 10:10 AM.
Fernet #273338 30/03/25 07:53 PM
Joined: Nov 2021
Posts: 141
Vogon poet
Offline
Vogon poet
Joined: Nov 2021
Posts: 141
What are you trying to achieve?

Simo #273340 31/03/25 10:24 AM
Joined: May 2022
Posts: 100
F
Fernet Offline OP
Vogon poet
OP Offline
Vogon poet
F
Joined: May 2022
Posts: 100
Originally Posted by Simo
What are you trying to achieve?

As I said: Just to send a WARN ( .notice $nick NOTICE NOT ALLOWED !!! ) if a nick (included in the blacklist ---> addons/noticeblocked.txt ) , send me a notice.

Last edited by Fernet; 31/03/25 12:02 PM.
Fernet #273341 31/03/25 09:29 PM
Joined: Nov 2021
Posts: 141
Vogon poet
Offline
Vogon poet
Joined: Nov 2021
Posts: 141
in that case if u dont want to receive notices i wouldnt bother with warnings cause if you are bombarded with mass notices from spam bots and what not you would get booted of the IRCD server, instead i would just block all notices except from whitelisted ones in the regex from a script like this :


Code

ON ^*:notice:*:*:{  
  haltdef 
   if ($regex($nick,/^((Nick|Help|Chan|Memo|Host)Serv|Global)$/Si))  {  Echo -atc  notice    - $+ $nick $+ -   :  $strip($1-,burcmo)  }
   else { halt }
}



Simo #273343 01/04/25 07:23 AM
Joined: May 2022
Posts: 100
F
Fernet Offline OP
Vogon poet
OP Offline
Vogon poet
F
Joined: May 2022
Posts: 100
But that one doesn't has a list recalled, so I guess I have to add nicks manually opening script editor. And my problem are not spam bot. Just, if there's a nick PIPPO who bother, I add his nick from script menu in the list.txt , then I wish to send him a warn that NOTICE ARE NOT WELCOME.

Fernet #273344 01/04/25 08:16 AM
Joined: Jan 2012
Posts: 329
Pan-dimensional mouse
Offline
Pan-dimensional mouse
Joined: Jan 2012
Posts: 329
I have edited and improved your code. Try using this variant:
Code
menu nicklist {
  •NOTICELOCKER•
  .LOCK $1 : if (!$readfile($1)) { write -i $pathfile $1 | echo 4 LOCK: $1 }
  .UNLOCK $1 : if ($readfile($1)) { write $+(-dl,$v1) $pathfile | ignore -r $1 | echo 3 UNLOCK: $1 }
  .-
  .LIST: ignore -ln
}

on *:NOTICE:*:?: if ($readfile($nick)) { .notice $nick NOTICE NOT ALLOWED !!! | ignore -n $nick }

alias -l pathfile { return addons/noticeblocked.txt }
alias -l readfile { if ($read($pathfile,ntw,$1)) { return $readn } }


🌐 https://forum.epicnet.ru 📜 irc.epicnet.ru 6667 #Code | mIRC scripts, help, discuss, examples
Epic #273345 01/04/25 11:23 AM
Joined: May 2022
Posts: 100
F
Fernet Offline OP
Vogon poet
OP Offline
Vogon poet
F
Joined: May 2022
Posts: 100
Originally Posted by Epic
I have edited and improved your code. Try using this variant:
Code
menu nicklist {
  •NOTICELOCKER•
  .LOCK $1 : if (!$readfile($1)) { write -i $pathfile $1 | echo 4 LOCK: $1 }
  .UNLOCK $1 : if ($readfile($1)) { write $+(-dl,$v1) $pathfile | ignore -r $1 | echo 3 UNLOCK: $1 }
  .-
  .LIST: ignore -ln
}

on *:NOTICE:*:?: if ($readfile($nick)) { .notice $nick NOTICE NOT ALLOWED !!! | ignore -n $nick }

alias -l pathfile { return addons/noticeblocked.txt }
alias -l readfile { if ($read($pathfile,ntw,$1)) { return $readn } }

This is perfect sir. Thanks.
Just a question:
Code
alias -l readfile { if ($read($pathfile,ntw,$1)) { return $readn }

What does ntw and readn is for? Is there a guide to study it?
Thanks.

Fernet #273346 01/04/25 12:17 PM
Joined: Jan 2012
Posts: 329
Pan-dimensional mouse
Offline
Pan-dimensional mouse
Joined: Jan 2012
Posts: 329
Switches "ntw" - each separately or in a common combination they set certain rules for reading text from a file for the identifier "$read()".
The identifier "$readn" returns the line number where the text was found when using the identifier "$read()".

More details can be found in the help documentation:



🌐 https://forum.epicnet.ru 📜 irc.epicnet.ru 6667 #Code | mIRC scripts, help, discuss, examples
Fernet #273347 01/04/25 10:42 PM
Joined: Nov 2021
Posts: 141
Vogon poet
Offline
Vogon poet
Joined: Nov 2021
Posts: 141
If it's just one nick sending you notices why not ignore notices from that nick or ip with ignore command?

Fernet #273348 01/04/25 10:46 PM
Joined: Nov 2021
Posts: 141
Vogon poet
Offline
Vogon poet
Joined: Nov 2021
Posts: 141
Also with my code you don't have to keep adding nicks to send notice warnings to.

Simo #273352 Yesterday at 11:21 AM
Joined: May 2022
Posts: 100
F
Fernet Offline OP
Vogon poet
OP Offline
Vogon poet
F
Joined: May 2022
Posts: 100
Originally Posted by Simo
Also with my code you don't have to keep adding nicks to send notice warnings to.

You're a very good expert about mIRC scripting, I understood it. But You have to understand that I'm really not an expert (and everybody understood it :-P). Your help is always so appreciated, and I'm sure all Your hints are also so usefull. But Your solutions are too professional for me, I'm a basic level user. So I can't work on Your codes because my knowledge is not so far as Your. Sure, I may simply copy/paste it , but if I wish to use them for further experiments, I can't manage them (i.e.: all about "regex").
I have to learn to crawl before to learn to walk.
Please don't be mad if I prefer more simple solutions.
Your help is always appreciated, Simo.

Last edited by Fernet; Yesterday at 05:15 PM.

Link Copied to Clipboard