OneLiteFeatherNET / OneLiteFeatherNET/Voyager
Live standings scoreboard (tablist) during race
Nobody has claimed this yet.
- Dominant language
- Java
- Stars
- 0
- Forks
- 0
- Avg merge
- 2d 21h
- Merged PRs (30d)
- 12
Description
Description
Players currently have no way to see where they rank relative to others during a race. A live tablist scoreboard showing current positions, scores, and lap/ring progress is essential for the competitive feel of the game.
Acceptance Criteria
- Tablist is updated every 2 ticks (100ms) during the Game phase
- Displays: position number (#1, #2, …), player name, current score, rings passed on this map
- Sorted by current score descending
- Tablist is cleared/reset when the End phase is entered
- Works correctly with 2–20 players
- Does not cause visible lag or tab flicker
Technical Details
- Use Minestom
TabListAPI or playerlist packets - Update logic lives in a new
ScoreboardSystemin theservermodule - Read from
ScoreComponenton each player entity each update cycle - Consider batching updates rather than sending one packet per player per tick
Dependencies
- ECS
ScoreComponentis already implemented
Estimate
M
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start in the server module by locating the Game and End phase handling, the ECS ScoreComponent, and existing Minestom player or packet updates. Add the new ScoreboardSystem using the TabList API or playerlist packets, updating every 2 ticks during Game and resetting at End. Done means sorted positions, names, scores, and ring progress work for 2–20 players without visible lag or tab flicker.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- java
- Domain
- game-dev
- Issue type
- Feature
- Difficulty
- 4/5
- Estimated time
- 3-5 days
- Activity status
- Quiet
- Clarity
- Mostly clear
- Newbie friendliness
- 65/100