home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / tc123.zip / tc123.irc < prev    next >
Text File  |  1999-04-03  |  2KB  |  97 lines

  1. /* Change this to pm123 if using it */
  2. @player=[zmp3]
  3.  
  4. /* TC123 irc script by Death Syndrome */
  5. @tcversion=[1.0.1-RELEASE]
  6.  
  7. alias np {
  8.   ^exec -name query tchelper.exe tag $player
  9.   ^on ^exec "query *" {
  10.    //msg * NP: $1- [tc123]
  11.    echo [tc123] Playing file: $1-
  12.    }
  13. }
  14.  
  15. alias lnp {
  16.   ^exec -name query tchelper.exe tag $player
  17.   ^on ^exec "query *" {
  18.    echo [tc123] NP: $1-
  19.    }
  20. }
  21.  
  22. alias songinfo {
  23.   ^exec -name queryinfo tchelper.exe songinfo $player
  24.   ^on ^exec "queryinfo *" {
  25.    //msg * Stats: $1- [tc123]
  26.    echo [tc123] Info on current mp3: $1-
  27.    }
  28. }
  29.  
  30. alias lsonginfo {
  31.   ^exec -name queryinfo tchelper.exe songinfo $player
  32.   ^on ^exec "queryinfo *" {
  33.    echo [tc123] Info on current mp3: $1-
  34.    }
  35. }
  36.  
  37. alias file {
  38.   ^exec -name queryfile tchelper.exe file $player
  39.   ^on ^exec "queryfile *" {
  40.    //msg * Currently playing file: $1- [tc123]
  41.    echo [tc123] Currently playing file: $1-
  42.    }
  43. }
  44.  
  45. alias lfile {
  46.   ^exec -name queryfile tchelper.exe file $player
  47.   ^on ^exec "queryfile *" {
  48.    echo [tc123] Currently playing file: $1-
  49.    }
  50. }
  51.  
  52. alias rawinfo {
  53.   ^exec -name queryraw tchelper.exe rawinfo $player
  54.   ^on ^exec "queryraw *" {
  55.    echo [tc123] Raw data: $1-
  56.    }
  57. }
  58.  
  59. alias play {
  60.   ^exec echo *play > /pipe/$player
  61.   echo [tc123] Play started.
  62. }
  63.  
  64. alias stop {
  65.   ^exec echo *stop > /pipe/$player
  66.   echo [tc123] Play stopped.
  67. }
  68.  
  69. alias shuffle {
  70.   ^exec echo *shuffle > /pipe/$player
  71.   echo [tc123] Playlist shuffled.
  72. }
  73.  
  74. alias pause {
  75.   ^exec echo *pause > /pipe/$player
  76.   echo [tc123] Play pause toggled.
  77. }
  78.  
  79. alias next {
  80.   ^exec echo *next > /pipe/$player
  81.   echo [tc123] Playing next song.
  82. }
  83.  
  84. alias prev {
  85.   ^exec echo *previous > /pipe/$player
  86.   echo [tc123] Playing previous song.
  87. }
  88.  
  89. alias tcquit {
  90.   ^exec echo *quit >/pipe/$player
  91.   echo [tc123] Quitting player.
  92. }
  93.  
  94. alias tcver //me is cranking it with Total Control 123 version $tcversion - Welcome to momoland! [tc123]
  95.  
  96. echo [tc123] Total Control 123 loaded.
  97.