Skip to content
fren_gor edited this page Dec 10, 2020 · 2 revisions

Default config.yml:

# Change the defualt scoreboard shown to players on join.
default-scoreboard:
  # NONE - no scoreboard will be displayed.
  # EVERYONE - default scoreboard is shown to everyone.
  # PERM - default scoreboard is shown only if the player has a certain permission.
  type: EVERYONE
  # Valid scoreboard file name in scoreboards directory.
  default-scoreboard-name: example
  # A permission for PERM method, ignored if default scoreboard type isn't PERM.
  permission: 'ultimatescoreboards.defscoreboard'

# Whether the plugin should check for new versions.
check-for-new-versions: true

Here is a detailed description of every section:

default-scoreboard

In this section is possible to handle how UltimateScoreboards should behave when a player joins.
There are three type of action, settable in the type field: NONE, EVERYONE, or PERM:

  • NONE:
    No scoreboard is displayed to the player.
  • EVERYONE:
    The default scoreboard is displayed to the player.
    The default scoreboard can be set in the default-scoreboard-name field.
  • PERM:
    The default scoreboard is displayed to the player only if they have a certain permission. The default scoreboard can be set in the default-scoreboard-name field. The permission required can be set in the permission field.
Field Value
type NONE, EVERYONE, or PERM
default-scoreboard-name The name of the default scoreboard. It should be the name of a scoreboard.
permission A valid permission

check-for-new-versions

Whether the plugin should check for updates. Can be either true or false.