home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / GAMES / DYNAMO63.ZIP / DYNADEMO.BAT < prev    next >
DOS Batch File  |  1994-01-09  |  938b  |  36 lines

  1. echo off
  2. echo DYNADEMO.BAT  -  This little demo batch file demonstrates how to
  3. echo use the shareware version of DYNAMO to play back game-files.
  4. echo To save/record/edit your own game-positions, you need to use
  5. echo the full version of DYNAMO.
  6. echo   Have a look at these neat 'shots' - even if you are new to
  7. echo International 10x10 checkers, they will give you a taste.
  8. echo   Type 1 for VGA, 2 for EGA, 3 for CGA graphics...
  9. getkey
  10. if errorlevel 52 goto endit
  11. if errorlevel 51 goto cga
  12. if errorlevel 50 goto ega
  13. if errorlevel 49 goto vga
  14. if errorlevel 48 goto endit
  15. :vga
  16. dyna63sh v prob1.e
  17. dyna63sh v prob2.e
  18. dyna63sh v prob3.e
  19. dyna63sh v prob4.e
  20. dyna63sh v author.e
  21. goto endit
  22. :ega
  23. dyna63sh e prob1.e
  24. dyna63sh e prob2.e
  25. dyna63sh e prob3.e
  26. dyna63sh e prob4.e
  27. dyna63sh e author.e
  28. goto endit
  29. :cga
  30. dyna63sh c prob1.e
  31. dyna63sh c prob2.e
  32. dyna63sh c prob3.e
  33. dyna63sh c prob4.e
  34. dyna63sh c author.e
  35. :endit
  36.