Hello,

I'm trying to write a script where if a certain nick on a certain channel either joins, parts or quits, a .wav file will play and open a new window:

Code:
on *:QUIT:*:#channel: {
  if ($nick == JohnDoe) { 
    splay alert.wav  
    window -b @NOTICE
    aline -hpi @NOTICE 7[ $+ $time(hh:nn:ss) $+ 7] 4 $+ $1- 
  }
}



Obviously, the above script for quit doesn't work. Again, it's for join, part & quit.




Thank you.