home *** CD-ROM | disk | FTP | other *** search
/ The Equalizer BBS / equalizer-bbs-collection_2004.zip / equalizer-bbs-collection / DEMOSCENE-STUFF / INTRO93.ZIP / MOD2STX.BAT < prev    next >
DOS Batch File  |  1993-02-27  |  553b  |  24 lines

  1. @Echo OFF
  2. Echo  Amiga MODules to Scream Tracker v3.0 STX Files Convertor
  3. Echo.
  4. If .%1==. Goto CommandLine
  5. If .%2==. Goto CommandLine
  6. If Not Exist MOD2STM.EXE Goto Erorr1
  7. Echo Converting from MOD to STM
  8. MOD2STM %1 %2 > NUL
  9. Del %1 > Nul
  10. Echo Converting from STM to STX
  11. STM2STX %2 > NUL
  12. Del %2 > Nul
  13. Goto END
  14. :CommandLine
  15. Echo Usage: MOD2STX.BAT INFILE.MOD OUTFILE.STM
  16. Goto END
  17. :Erorr1
  18. Echo Erorr: MOD2STM.EXE Was Not Found in the Current Dir!
  19. Goto END
  20. :Erorr2
  21. Echo Erorr: STM2STX.EXE Was Not Found in the Current Dir!
  22. Goto END
  23. :End
  24.