Skip to content

Scoreboard

DarknessTime-king5442 edited this page May 29, 2021 · 2 revisions

Scoreboard supports:

  1. Colors ("&<color>", "#HexColor", Rainbow color > "&u", Gradient -> "!#HexColor1TexT!#HexColor2")
  • 1.1 "#HexColor" and Gradient -> "!#HexColor1TexT!#HexColor2" only for 1.16+
  1. Placeholders from PlaceholderAPI

Per World Scoreboard

This scoreboard see players in specified world, ignoring global scoreboard.

PerWorld:
  pvp_world:
    Name: '&9PvP'
    Lines:
    - '&r&lKills: &a%kills%$'
    - '&r&lHealth:  &a%health%'
  skyblock:
    Lines:
    - '&r&lMoney: &a%money%$'
    - '&r&lHealth:  &a%health%'
    - '&r&lFood:  &a%food%'
    Name: '&eSkyBlock'

Per Player ScoreBoard

This ScoreBoard can only be seen by certain players, ignoring global scoreboard.

PerPlayer:
  InputPlayerNameHere:
    # Player can't toggle this scoreboard
    Toggleable: false
    Name: "&8» &7&lScoreboard &8«"
    Lines:
    - "&7&lStats:"
    - " &8» &7Balance: &e$%money%"
    - " &8» &7Health: &e%health%"
    - " &8» &7Food: &e%food%"
    - " &8» &7Exp: &e%xp%"

Global Scoreboard

This scoreboard see all players.

Name: "&cstatus"
Lines:
- "&7SCR 4 ever!"
- "&cThis is second line."
- "&dMoney: &a%money%"

FAQ

  1. How can i change scoreboard update time
  • Scoreboard update (reflesh) time can be edited in file “Scoreboard.yml”, section “RefleshTick”.
  1. How can i disable a ScoreBoard
  • ScoreBoard can be fully disabled in file “Scoreboard.yml” by set “Enabled” to “false”.
  1. How can i disable a ScoreBoard in Specified World
  • Add world in to ForbiddenWorlds section
  1. Why my scoreboard not be disable after execute "/scoreboard" ?
  • ScoreBoard can't be disabled if value of "Toggleable" is "false", just set value to "true"
Options:
  # Enable scoreboard
  Enabled: true
  
  # Permission for see a ScoreBoard
  Permission: "SCR.See.Scoreboard"
  
  # Option to toggle scoreboard by command
  Toggleable: true
  
  # Time to update scoreboard
  # 20 ticks = 1s
  RefleshTick: '20'
  
  # List of forbidden worlds
  ForbiddenWorlds:
  - "DisabledWorld"

Clone this wiki locally