mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Mar 2004
Posts: 1
W
wassit Offline OP
Mostly harmless
OP Offline
Mostly harmless
W
Joined: Mar 2004
Posts: 1
I am trying to figure out how to get my mirc to play a sound when certain people msg me. I do a lot of programming and keep mirc minimized when I do. I would like to play a sound when certain friends msg me so I can address them immediately. Any help is appreciated.

Thanks

Joined: Dec 2002
Posts: 1,541
L
Hoopy frood
Offline
Hoopy frood
L
Joined: Dec 2002
Posts: 1,541
what type of message?? You could try something like:

on *:open:*: {
if ($nick == who-ever) { /splay sound.wav }
}
on *:text:*:?: {
if ($nick == who-ever) { /splay sound.wav }
}
on *:notice:*:?: {
if ($nick == who-ever) { /splay sound.wav }
}


See if that works and read up on the help file with it for more info smile


Those who fail history are doomed to repeat it

Link Copied to Clipboard