home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer 2.12 / 1997-01_Disc_2.12.iso / crusader / crudemo.exe / READ1ST.BAT < prev    next >
DOS Batch File  |  1996-10-22  |  371b  |  23 lines

  1. @echo off
  2. :ReadYes
  3. type readme.txt | more
  4.  
  5. choice Would you like to view the ReadMe.Txt again
  6. if errorlevel 2 goto ReadNo
  7. if errorlevel 1 goto ReadYes
  8. :ReadNo
  9.  
  10. choice Would you like to run the Crusader: No Regret Demo
  11. if errorlevel 2 goto PlayNo
  12. if errorlevel 1 goto PlayYes
  13.  
  14. :PlayYes
  15. regret
  16. goto end
  17.  
  18. :PlayNo
  19. echo Maybe next time...
  20. goto end
  21.  
  22. :end
  23.