1234567891011121314151617181920212223242526272829303132333435 |
- # Lines that start with # and empty lines will be ignored.
- # The config file consists of:
- # The word list
- # The key config
- # The ending action(s)
- # The words list starts with
- # :WORDS_TO_CHOOSE=X
- # And is followed by a list of words, one per line, all the same length, that
- # you'd like in the game.
- #
- # You must have a minimum # of words for whatever you give to WORDS_TO_CHOOSE
- # (default 7)
- #
- # The words must between 5 and 12 letters.
- #
- # The key config (:KEYS=) is how you navigate the screen. It may be set as:
- # ARROWS (for arrow keys) (default)
- # WASD
- # HJKL (vimlike)
- #
- # For the ending actions, there are two optional parameters
- # :LAUNCH_ON_VICTORY="X:\path\to\program.exe"
- # :LAUNCH_ON_COMPLETE="X:\path\to\program.exe"
- #
- # If declared, they will launch the program specified when the game
- # completes/is won, respectively.
- # If you don't want to use them, just leave them blank.
- :WORDS_TO_CHOOSE=7
- # WORDS GO HERE
- :KEYS=ARROWS
- :LAUNCH_ON_VICTORY=""
- :LAUNCH_ON_COMPLETE=""
|