-
Notifications
You must be signed in to change notification settings - Fork 0
Scoreboards
elitescouter edited this page Jun 2, 2026
·
2 revisions
Create a live leaderboard hologram from any scoreboard objective. Works with online and offline player data, and can be styled with Themes.
/eh createscoreboard <id> <objective> [topCount] [interval] [theme]
-
id: a unique hologram ID. -
objective: a scoreboard objective name. Tab-completes from objectives currently registered on the server. -
topCount(optional): number of rows to show,1-10. Default5. -
interval(optional): refresh interval in seconds,5-300. Default30. -
theme(optional): a theme name fromscoreboard_themes.json. Defaults to the configureddefaultThemewhen omitted. See Themes.
Top 10 playtime board, refreshing every 30 seconds, default theme:
/eh createscoreboard top_time TimePlayed 10 30
Top 5 kills board styled with the blood theme:
/eh createscoreboard top_kills kills 5 30 blood
Use /eh settheme to change the look without recreating the board. Both arguments tab-complete (<id> suggests scoreboard holograms, <theme> suggests theme names):
/eh settheme top_kills ocean
The board re-renders immediately. See Themes for the full list of built-in themes and how to add your own.
- Includes both online and offline player entries.
- Time and number objectives are auto-formatted to human-friendly values.
- The board refreshes automatically on its
interval. - Display updates do not spam the disk; the scoreboard config is saved separately and only written when something meaningful changes.
- Backlights work on scoreboard holograms and persist across reload and restart. See Backlights.
- File:
config/eliteholograms/scoreboard_holograms.json. - Each entry stores the id, world, position, range, objective, top count, update interval, theme, and backlight state.
-
/eh reloadre-reads this file and the theme file from disk without a server restart.
Feature Guides