home *** CD-ROM | disk | FTP | other *** search
/ CD-ROM Magazin 1996 November / CD_11_96.ISO / pilot / pilot.bat < prev    next >
DOS Batch File  |  1993-11-22  |  711b  |  32 lines

  1. ECHO OFF
  2. IF "%1"=="J" goto jet
  3. IF "%1"=="G" goto gyro
  4. ECHO Private Pilot
  5. ECHO -------------
  6. ECHO First argument selects aircraft
  7. ECHO J to fly Jetstream, G to fly acrobatic plane
  8. ECHO Second argument selected hi res graphics mode
  9. ECHO -S for S3, -A  ATI, -V for VESA
  10. ECHO No second argument runs in VGA
  11. ECHO Examples
  12. ECHO PILOT J     (fly the Jetstream in standard VGA)
  13. ECHO PILOT G -S  (fly the Gyro in SVGA with an S3 card)
  14. goto end
  15. REM Jetstream selected
  16. :jet
  17. if "%2"=="" goto :jetvga
  18. call fly -ws_world.fst %2
  19. goto end
  20. :jetvga
  21. call fly
  22. goto end
  23. REM Gyro selected
  24. :gyro
  25. if "%2"=="" goto :gyrovga
  26. call fly -wg_sworld.fst %2
  27. goto end
  28. :gyrovga
  29. call fly -wgworld.fst
  30. goto end
  31. :end
  32.