block_break_tournament.yml

#########################
## TOURNAMENT SETTINGS ##
#########################

# Should this tournament be enabled and loaded?
enabled: true

# Worlds listed in here will not have the tournament active.
disabled_worlds: [example_world, another_world]

# Gamemodes that should not contribute to the tournament
disabled_gamemodes:
  - CREATIVE
 # - SURVIVAL
 # - ADVENTURE
 # - SPECTATOR

# Tournament objective
# Full Objectives List: https://wiki.lewisdev.fun/premium-resources/xltournaments/objective-types
objective: BLOCK_BREAK

# How many seconds should we wait until the top leaderboard updates?
# Min: 10 Seconds
leaderboard_refresh: 60

# Available Timeline Types:
# - SPECIFIC (see times below)
# - DAILY
# - WEEKLY
# - MONTHLY
# If SPECIFIC is selected, configure the times below
timeline: WEEKLY

# Only applicable for 'SPECIFIC' timeline tournament.
start_date: 2020/09/16 00:00:00
end_date: 2020/09/16 23:59:00

# Should this be a challenge tournament?
# Challenge type tournaments are based on reaching
# a certain goal rather than having as much score
# when the tournament ends.
challenge:
  enabled: false
  goal: 50

# Participation Settings
participation:
  # Set this to true to automatically enter players into the tournament when they join the server (ignores participation cost)
  automatic: false
  # Set the participation cost (0 = no cost, requires Vault + Economy plugin to work)
  cost: 50
  # A list of actions to be executed when anyone joins the tournament.
  join_actions:
    - "[MESSAGE] &7You have joined the &bBlock Break Tournament&7."

# Valid Actions
# - [MESSAGE] <message> | Send a message to the player
# - [BROADCAST] <message> | Broadcast a message to the entire server
# - [CONSOLE] <command> | Execute a command as console
start_actions:
  - "[BROADCAST] &b&lTOURNAMENT: &fA Block Break &7/tournament &fhas just begun, good luck!"
end_actions:
  - "[BROADCAST] &b&lTOURNAMENT: &fThe Block Break &7/tournament &fhas just ended."

# Rewards to be given when tournament has ended
# or player has completed the challenge goal (if enabled)
rewards:
  '1': # 1st place
    - "[MESSAGE] &7You have placed &a1st &7in the &bBlock Break &7Tournament!"
    - "[CONSOLE] give {PLAYER} diamond 1"
  '2': # 2nd place
    - "[MESSAGE] &7You have placed &b2nd &7in the &bBlock Break &7Tournament!"
    - "[CONSOLE] give {PLAYER} gold_ingot 1"
  '3': # 3rd place
    - "[MESSAGE] &7You have placed &e3rd &7in the &bBlock Break &7Tournament!"
    - "[CONSOLE] give {PLAYER} iron_ingot 1"

Last updated