mIRC Home    About    Download    Register    News    Help

Print Thread
#204051 06/09/08 06:19 PM
Joined: Aug 2004
Posts: 44
D
Ameglian cow
OP Offline
Ameglian cow
D
Joined: Aug 2004
Posts: 44
Guys how can i make it so that when i get a private msg it will play the wav that i specify but only play it one time without having the default mirc sounds on ?? EX: when someone msgs me it will play a wav file only one time such as (Incoming Message). Then when i read the msg and click into another window without closing the msg window it will play another sound like a beep or something to let me know that they typed something else. Then if the msg window is closed it will play the original sound. Is this possible. Thanx

Joined: Aug 2004
Posts: 7,252
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Aug 2004
Posts: 7,252
Current versions of mIRC require you to have sounds on in order to hear any sound, custom or default.
You could use a script like this
Code:
on *:open:?:*:{
  .splay <wav_file>
}
on *:text:*:?:{
  if $query($nick) != $active {
    beep
  }
}

Joined: Nov 2006
Posts: 143
X
Vogon poet
Offline
Vogon poet
X
Joined: Nov 2006
Posts: 143
Options/Sounds
On event play sound
Query > there chose ur sound
not need code for mirc settings smirk

Joined: Aug 2004
Posts: 7,252
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Aug 2004
Posts: 7,252
That will play the same sound for each and every query message received, which is not what the OP asked for.
The OP clearly stated that they wanted two different sounds, one when the query is started, and another when text is received in a query that isn't the current active window.


Link Copied to Clipboard