mIRC Home    About    Download    Register    News    Help

Print Thread
#38838 29/07/03 02:37 PM
Joined: Dec 2002
Posts: 15
A
awn Offline OP
Pikka bird
OP Offline
Pikka bird
A
Joined: Dec 2002
Posts: 15
How can I get an audible alert every time a certain nick makes a post?

Thanks.

#38839 29/07/03 02:40 PM
Joined: Dec 2002
Posts: 2,985
Hoopy frood
Offline
Hoopy frood
Joined: Dec 2002
Posts: 2,985
Code:
ON *:TEXT:*:#: {
  if ($nick == ThatUser) {
    splay sound.wav
  }
}
Make sure the sound file is in the root directory, or if you prefer it to be with other sounds make sure you add the full filepath to the /splay command.

#38840 29/07/03 02:56 PM
Joined: Dec 2002
Posts: 15
A
awn Offline OP
Pikka bird
OP Offline
Pikka bird
A
Joined: Dec 2002
Posts: 15
Thanks.

#38841 29/07/03 02:57 PM
Joined: Dec 2002
Posts: 2,985
Hoopy frood
Offline
Hoopy frood
Joined: Dec 2002
Posts: 2,985
No worries.


Link Copied to Clipboard