⚙️Settings

Here is a list of all the modifications you can make to your settings.

Whitelist / Blacklist Commands

With the following option, you can enable or disable specific commands that users are allowed to use during a match. For example, if you want to disable flying during matches, this is the best option to configure:

match:
  commands:
    mode: BLACKLIST
    whitelist-commands: []
    blacklist-commands:
    - fly
    - heal

Valid options for the mode are BLACKLIST, WHITELIST

Whitelist / Blacklist Worlds

With this option, you can enable or disable the plugin in specific worlds. If you're using MultiverseCore2, this is a great way to restrict the plugin to certain worlds. For example:

worlds:
  should-use: DISABLED_WORLDS
  enabled: []
  disabled:
  - world_nether
  - world
  - world_the_end

Valid options for the should-use are ENABLED_WORLDS, DISABLED_WORLDS

Scoreboard

With PhoenixPractice, you can create your own scoreboard for both the lobby and matches. We support all PlaceholderAPI placeholders. Note that the following placeholders: %playing%, %player%, and %online%. Are internal and can only be used within the plugin's scoreboard.

  scoreboard:
    enabled: true
    refresh-rate: 20
    header:
      interval: 2
      frames:
      - '&5&lPHOENIX PRACTICE'
    lines:
    - ''
    - ' &fPlayer: &7%player%'
    - ' &fOnline: &a%online%/%max_online%'
    - ''
    - ' &fPlaying: &a%playing%'
    - ' &fQueueing: &a%queueing%'
    - ''
    - ' &7Start configuring:'
    - '&e/phoenixpractice editor'
    - ''
    - '    &dwww.myphoenixstore.com  '

Allowed Type

With this option you can disable a type. for example if you only want the users to play ranked, make sure to only allow the RANKED as an option

allowed-types:
- CHALLENGE
- UNRANKED
- RANKED

Ranked Restriction

With this option, you can restrict users from joining Ranked mode until they have played a required number of Unranked games or have a specific permission.

By default this option is set to false, so make sure to enable it.

ranked:
  unranked-requirement:
    enabled: false
    amount: 10
    bypass-permission: phoenixpractice.ranked.bypass

Last updated

Was this helpful?