mIRC Home    About    Download    Register    News    Help

Print Thread
#210433 15/03/09 06:57 PM
Joined: Mar 2009
Posts: 1
Y
yabbah Offline OP
Mostly harmless
OP Offline
Mostly harmless
Y
Joined: Mar 2009
Posts: 1
Hi there, wonder if anyone know of any script that mail me if a specific word/words appear in a channel ?

Hope anyone understand what i want to do and could help smile

Kind regards
yabbah

Joined: Feb 2016
Posts: 2
J
Bowl of petunias
Offline
Bowl of petunias
J
Joined: Feb 2016
Posts: 2
Maybe somebody would share it after 7 years smile

Joined: Nov 2015
Posts: 14
N
Pikka bird
Offline
Pikka bird
N
Joined: Nov 2015
Posts: 14
Maybe some of the guys over here want to help you.

I will let you with an scheme to make this.

1.- Mirc can run CMD and command lines.
2.- There is software that can send email through command lines: http://www.sendmailfromcommandline.com/
3.- make a script to "capture" the word/text/msg in IRC and use it in a command line with that program.

This is just an scheme.
Hope it help to someone

Joined: Feb 2016
Posts: 2
J
Bowl of petunias
Offline
Bowl of petunias
J
Joined: Feb 2016
Posts: 2
Thanks. Sorry for lazy question)

Joined: Dec 2008
Posts: 1,515
Hoopy frood
Offline
Hoopy frood
Joined: Dec 2008
Posts: 1,515
I recomment you to look at cURL command line tool, this is gonna really help you, about the mIRC catching word part in order to execute the extra tool to send you an email.

Check here for more details.

Code:
ON *:TEXT:*:#: {
  tokenize 32 $strip($1-)
  var %file = curl.exe
  if (*ENTER-HERE-THE-WORD* iswm $1-) && ($isfile(%file)) { run $qt(%file) ENTER-HERE-THE-COMMAND-LINE-TOOL-PARAMETERS }
}


Need Online mIRC help or an mIRC Scripting Freelancer? -> https://irc.chathub.org <-

Link Copied to Clipboard