diff options
author | sowgro <tpoke.ferrari@gmail.com> | 2024-06-09 14:29:05 -0400 |
---|---|---|
committer | sowgro <tpoke.ferrari@gmail.com> | 2024-06-09 14:29:05 -0400 |
commit | baee001a9eceeae9f12a5f701c138123ff21b177 (patch) | |
tree | 5402de4bc363eaefdda031a408fe2b98a70ac066 /src/main/resources/config.yml | |
parent | 2664109ebcc022e0f9e02c2bd173b70608a68a72 (diff) | |
download | Tumble-baee001a9eceeae9f12a5f701c138123ff21b177.tar.gz Tumble-baee001a9eceeae9f12a5f701c138123ff21b177.tar.bz2 Tumble-baee001a9eceeae9f12a5f701c138123ff21b177.zip |
Implement multi arena support, and various other improvements (pretty much a rewrite)
Diffstat (limited to 'src/main/resources/config.yml')
-rw-r--r-- | src/main/resources/config.yml | 49 |
1 files changed, 32 insertions, 17 deletions
diff --git a/src/main/resources/config.yml b/src/main/resources/config.yml index 68b4e3d..8413843 100644 --- a/src/main/resources/config.yml +++ b/src/main/resources/config.yml @@ -1,24 +1,39 @@ -# Customize the default game mode; options include: shovels, snowballs, mixed -gameMode: mixed - -# Customize the auto start feature of Tumble; players can be up to 8 -autoStart: - enabled: false - players: 2 - # Hides player join/leave messages in public chat hideJoinLeaveMessages: false -# Customize the message that displays when the player does not have permission to execute a command from this plugin -permissionMessage: You do not have permission to perform this command! +# Duration in seconds to wait for more players to join +wait-duration: 15 +# Teleport players somewhere while waiting for the game to start +# Keep in mind that these coordinates cannot be zero! Use something like 0.5 instead +enable-wait-area: false +wait-area: + x: + y: + z: + world: + +# Place where everyone is teleported to after a game ends REQUIRED +# Keep in mind that these coordinates cannot be zero! Use something like 0.5 instead +lobby-spawn: + x: 0.5 + y: 100 + z: 0.5 + world: world -# Customize the place that the winner is teleported after a game ends -# Keep in mind that these coordinates cannot be zero! The teleport will fail if any of them are; use something like 0.5 instead -winnerTeleport: +# Place that the winner is teleported after a game ends +# Keep in mind that these coordinates cannot be zero! Use something like 0.5 instead +enable-winner-lobby-spawn: false +winner-lobby-spawn: x: y: - z: + z: + world: -# The plugin will populate these fields automatically -lobbyWorld: -gameWorld:
\ No newline at end of file +# Add/remove as you wish +# Keep in mind that these coordinates cannot be zero! Use something like 0.5 instead +arenas: + 'test': + x: 0.5 + y: 60 + z: 0.5 + world: world
\ No newline at end of file |