FalloutTerminal.cfg 1019 B

1234567891011121314151617181920212223242526272829303132333435
  1. # Lines that start with # and empty lines will be ignored.
  2. # The config file consists of:
  3. # The word list
  4. # The key config
  5. # The ending action(s)
  6. # The words list starts with
  7. # :WORDS_TO_CHOOSE=X
  8. # And is followed by a list of words, one per line, all the same length, that
  9. # you'd like in the game.
  10. #
  11. # You must have a minimum # of words for whatever you give to WORDS_TO_CHOOSE
  12. # (default 7)
  13. #
  14. # The words must between 5 and 12 letters.
  15. #
  16. # The key config (:KEYS=) is how you navigate the screen. It may be set as:
  17. # ARROWS (for arrow keys) (default)
  18. # WASD
  19. # HJKL (vimlike)
  20. #
  21. # For the ending actions, there are two optional parameters
  22. # :LAUNCH_ON_VICTORY="X:\path\to\program.exe"
  23. # :LAUNCH_ON_COMPLETE="X:\path\to\program.exe"
  24. #
  25. # If declared, they will launch the program specified when the game
  26. # completes/is won, respectively.
  27. # If you don't want to use them, just leave them blank.
  28. :WORDS_TO_CHOOSE=7
  29. # WORDS GO HERE
  30. :KEYS=ARROWS
  31. :LAUNCH_ON_VICTORY=""
  32. :LAUNCH_ON_COMPLETE=""