home *** CD-ROM | disk | FTP | other *** search
/ Más de 2,500 Juegos / CD1.iso / ZIPDAT / 0002 / 0002.ZIP / C7.BAT < prev    next >
DOS Batch File  |  1996-07-12  |  967b  |  25 lines

  1. @echo off
  2. REM  SETUP.EXE gathers all the user options to play the game and outputs
  3. REM  a configuration file called CONFIG.FIL.  ARMAGDDN.EXE reads this file
  4. REM  first off and uses the info to load in the appropriate game file and
  5. REM  set the game up.  If SETUP.EXE is terminated for any reason other
  6. REM  than normal, CONFIG.FIL is not written and the batch file knows to
  7. REM  end.
  8. REM  If you're playing an email game, ARMAGDDN.EXE writes out and email
  9. REM  configuration file call COM.CFG for the COMpression applet.  If this
  10. REM  file isn't found, then COM.EXE is skipped.
  11.  
  12. del config.fil
  13. del com.cfg
  14. c7setup.exe %1 %2 %3 %4
  15. if not exist config.fil goto end
  16. armagddn.exe
  17. if not exist com.cfg goto end
  18.  
  19. REM  COM.EXE is a handy little program that compresses a file and then text
  20. REM  encodes it for email transmission.  It's specific to this C7.  
  21. REM  -e/-d are switched for encoding(& compressing)/decoding(decompressing).
  22.  
  23. com -e
  24. :end
  25.