home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / BBS / DOORS / SEAMINE.ZIP / SEAMAKE.BAT < prev    next >
Encoding:
DOS Batch File  |  1991-07-05  |  1.7 KB  |  58 lines

  1. echo off
  2. if x%1 == x goto help
  3. if %1 == default goto default
  4. if %1 == custom goto custom
  5. goto help
  6. echo hi
  7. goto done
  8. :default
  9. echo WARNING:  You are about to accept all DEFAULT values for a new
  10. echo SeaMine board.  If you have any existing data files, such as from a
  11. echo game currently running that you want to save, press Control-Break
  12. echo now.  Pressing a key will continue and generate the game files.
  13. echo  
  14. pause
  15. echo Running SEACFG...
  16. seacfg default
  17. echo Running MAPMAKE...
  18. mapmake default
  19. echo Running SECMAKE...
  20. secmake default
  21. echo Done generating default files!
  22. goto done
  23. :custom
  24. echo WARNING:  You are about to begin generating new data files.  The old
  25. echo playing board will be lost.  If there is a current playing board that you
  26. echo would like to keep, press Control-Break now.  Pressing a key will
  27. echo continue and generate the game files.
  28. echo  
  29. pause
  30. seacfg
  31. echo To continue to the MapMaker,
  32. pause
  33. mapmake
  34. echo To continue to the Sector Maker,
  35. pause
  36. secmake
  37. echo Done customizing!
  38. goto done
  39. :help
  40. echo  
  41. echo Instructions for running SEAMAKE.BAT:
  42. echo  
  43. echo To run the setup programs interactively, so that you can customize
  44. echo aything you want along the setup process, type:
  45. echo        seamake custom
  46. echo  
  47. echo To accept all the default values for each program, which creates a
  48. echo 20x20x10 playing board with 3 ores (Platinum, Bauxite, and Iron),
  49. echo and all additional required data files, type:
  50. echo        seamake default
  51. echo  
  52. echo NOTE:  Seamake is CASE SENSITIVE.  That is, the words 'custom' and
  53. echo 'default' must be entered in lower case.  Also note that it overwrites
  54. echo any older data files in the directory.
  55. echo  
  56. :done
  57. exit
  58.