diff options
author | Tyler Murphy <tylermurphy534@gmail.com> | 2021-10-22 20:03:15 -0400 |
---|---|---|
committer | Tyler Murphy <tylermurphy534@gmail.com> | 2021-10-22 20:03:15 -0400 |
commit | 0015592730f936350718ec61cd522c6dea3fe9c1 (patch) | |
tree | a148bfa82386a390bb9ee1d9960dc45ed9145640 /src/main/resources/config.yml | |
parent | 1.3.0 final beta (diff) | |
download | kenshinshideandseek-0015592730f936350718ec61cd522c6dea3fe9c1.tar.gz kenshinshideandseek-0015592730f936350718ec61cd522c6dea3fe9c1.tar.bz2 kenshinshideandseek-0015592730f936350718ec61cd522c6dea3fe9c1.zip |
localization
Diffstat (limited to 'src/main/resources/config.yml')
-rw-r--r-- | src/main/resources/config.yml | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/src/main/resources/config.yml b/src/main/resources/config.yml new file mode 100644 index 0000000..368bca4 --- /dev/null +++ b/src/main/resources/config.yml @@ -0,0 +1,61 @@ +# How long in seconds will the game last, set it < 1 to disable +# default: 1200 aka 20min +gameLength: 1200 + +# Announce join/leave/game over messages to people not playing the game +# default: true +announceMessagesToNonPlayers: true + +# Allow Hiders to see their own teams nametags as well as seekers. Seekers can never see nametags regardless. +# default: false +nametagsVisible: false + +# Require bukkit permessions though a plugin to run commands, recomended on large servers +# default: true +permissionsRequired: true + +# Minimum ammount of players to start the game. Cannot go lower than 2. +# default: 2 +minPlayers: 2 + +# Spawn locations where players are teleported +spawns: + # Location where players are teleported into the game (/hs start) + game: + x: 0 + y: 0 + z: 0 + world: world + # Location where players are teleported into the lobby (/hs join) + lobby: + x: 0 + y: 0 + z: 0 + world: world + # Location where players are teleported when they exit (/hs leave) + exit: + x: 0 + y: 0 + z: 0 + world: world + +# The worldborder closes every interval, whish is evey [delay] in minutes. +# Thw worldborder stharts at [size], and decreaces 100 blocks every interval. +# x & z are the center location. [enabled] is whenever the border is enabled. +worldBorder: + x: 0 + z: 0 + delay: 10 + size: 500 + enabled: false + +# The message prefixes displayed before messages. The message contents themselvs +# can be changed in localization.yml. +prefix: + default: '&9Hide and Seek > &f' + error: '&cError > &f' + taunt: '&eTaunt > &f' + border: '&cWorld Border > &f' + abort: '&cAbort > &f' + gameover: '&aGame Over > &f' + warning: '&cWarning > &f'
\ No newline at end of file |