-
Notifications
You must be signed in to change notification settings - Fork 1
Home
Florian Fischer edited this page Feb 7, 2020
·
3 revisions
Welcome to the terminal-flood wiki!
This program can be used without any program arguments, they simply allow customization of the gameplay.
-
-seed STR- The seed used for the random number generator. The value can be any string. Random default.
-
-size N- The size of the game board (always a square). Default
14.
- The size of the game board (always a square). Default
-
-colors N- The amount of colors used for the game. Only values between
2and35(inclusive) are allowed. Recommended values are between4and8. Default6.
- The amount of colors used for the game. Only values between
-
-startPos STR- The starting position at the beginning of the game. Can be
ulfor upper left corner,urfor upper right corner,llfor lower left corner,lrfor lower right corner andmfor middle of the board. Defaultul.
- The starting position at the beginning of the game. Can be
java -jar terminal-flood.jar -seed "xyzzy" -size 18 -colors 6 -startPos m
The above command will create a game with an 18x18 board, 6 colors, starting position in the middle and the string xyzzy used as the seed value for the RNG.