mIRC Home    About    Download    Register    News    Help

Print Thread
#20808 25/04/03 02:36 AM
Joined: Dec 2002
Posts: 1,237
T
Hoopy frood
OP Offline
Hoopy frood
T
Joined: Dec 2002
Posts: 1,237
I'm trying to set up a notification that whenever I receive a message via MemoServ that a sound triggers. I haven't been able to only pinpoint the sound to trigger when this message shows:

-MemoServ- You have a new memo from <nickname>.

Could someone help me out with this? This is what I have so far:

Code:
 on 1*:Notice:*:?: {
  if serv isin $nick { splay sound.wav }
  else halt
} 


Thanks in advance

#20809 25/04/03 02:42 AM
Joined: Dec 2002
Posts: 699
N
Fjord artisan
Offline
Fjord artisan
N
Joined: Dec 2002
Posts: 699
Code:
on *:Notice:*have*new*memo*:?:{
  if MemoServ == $nick splay sound.wav
}

#20810 25/04/03 03:00 AM
Joined: Dec 2002
Posts: 1,237
T
Hoopy frood
OP Offline
Hoopy frood
T
Joined: Dec 2002
Posts: 1,237
Ah didnt realize that was so simple...thanks


Link Copied to Clipboard