home *** CD-ROM | disk | FTP | other *** search
/ The Games Machine 20 #2 / TGM2.iso / abs_demo.bat next >
DOS Batch File  |  1996-06-29  |  569b  |  28 lines

  1. @rem (c) 1996 21st Century Entertainment Ltd.
  2.  
  3. @echo off
  4.  
  5. rem *** If abs_demo.cfg file is missing, copy it from the game folder
  6.  
  7. if exist c:\21stcent\absolute\abs_demo.cfg goto cont2
  8.  
  9. copy pinball\abs_demo.cfg c:\21stcent\absolute\abs_demo.cfg
  10.  
  11.  
  12. :cont2
  13.  
  14. rem *** If absolute.err file is missing, setup is correct; run the game
  15.  
  16. if not exist c:\21stcent\absolute\absolute.err goto cont3
  17. call setup.bat
  18.  
  19. :cont3
  20.  
  21. cd pinball
  22.  
  23. copy absolute.err c:\21stcent\absolute\absolute.err
  24. demo_in.exe
  25. abs_demo.exe
  26. del c:\21stcent\absolute\absolute.err
  27. cd ..
  28.