home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / pmirc12.zip / PLAYSND.CMD < prev    next >
OS/2 REXX Batch file  |  1996-12-08  |  323b  |  8 lines

  1. /* This script will play a sound when someone issues the command*/
  2. /* /ctcp channelname SOUND thissound.wav                        */
  3. return /* remove this line if you really want this to work*/
  4. parse arg channel nick ctcp sound
  5. sound = substr(sound,1,length(sound) -1)
  6. 'call play file=c:\mmos2\sounds\'sound
  7. return
  8.