OneLiteFeatherNET / OneLiteFeatherNET/Voyager

Live standings scoreboard (tablist) during race

Open
#121 0 comments 0 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

alpha gameplay P1
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 TabList API or playerlist packets
  • Update logic lives in a new ScoreboardSystem in the server module
  • Read from ScoreComponent on each player entity each update cycle
  • Consider batching updates rather than sending one packet per player per tick

Dependencies

  • ECS ScoreComponent is already implemented

Estimate

M

Contributor guide

Open the contributing guide

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. 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

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.