📊 Custom Scoreboards

Fancy sidebars that keep themselves up to date. No command blocks, no redstone, no headaches.

New in v4.0 — Config lives at config/CommandMaker/scoreboards.json

Here's One We Made Earlier

{
  "scoreboards": {
    "server_info": {
      "displayName": "&6&lMy Cool Server",
      "slot": "sidebar",
      "updateInterval": 20,
      "enabled": true,
      "lines": [
        "&6&lMy Cool Server",
        "&f",
        "&7Players: &a${player_count}/${server_max}",
        "&7TPS: &a${tps}",
        "&f",
        "&eplay.mycoolserver.com"
      ]
    }
  }
}

What Each Setting Does

FieldWhat it is
displayNameTitle at the top. & color codes work here.
slotWhere it goes: sidebar (right side), list (tab menu), or belowName (under player names)
updateIntervalHow often it refreshes, in ticks. 20 = every second. Set to 0 if it never changes.
enabledtrue shows it, false hides it. Defaults to false — no surprise sidebars!
linesWhat shows up. Up to 15 lines. Colors work. Placeholders update live.

Placeholders That Actually Update

PlaceholderShows
${player_count}How many people are online
${server_max}Max player slots
${tps}Server performance (20.0 = perfect)

Commands

CommandDoes
/cmd scoreboard listSee what scoreboards you've got
/cmd scoreboard reloadReload after editing the config
⚠️ Heads up: Scoreboards are off by default. The example config comes with "enabled": false. Flip it to true when you're ready. Also, Minecraft only lets you have one sidebar at a time — it's a vanilla thing.
💡 Worth knowing: You can define multiple scoreboards in the config. Put one in the sidebar, one in the tab list, one below names. Mix and match.