SkillAgentSearch skills...

ScoreboardAPI

A simple scoreboard api for nukkit

Install / Use

/learn @LucGamesYT/ScoreboardAPI
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

ScoreboardAPI

I release the ScoreboardAPI for Nukkit 2.0! The old version of the ScoreboardAPI for nukkit 1.0+ is only available on GitHub.

To use the Scoreboard API for Nukkit 1.0 please use this version

--> https://github.com/LucGamesYT/ScoreboardAPI/releases/tag/1.0.0

Repository:

<repository>
    <id>public</id>
    <url>http://repo.lucgameshd.de/repository/maven-public</url>
</repository>

Dependency:

Nukkit 1.0:

<dependency>
    <groupId>de.lucgameshd</groupId>
    <artifactId>ScoreboardAPI</artifactId>
    <version>1.4</version>
</dependency>

Nukkit 2.0

<dependency>
    <groupId>de.lucgameshd</groupId>
    <artifactId>ScoreboardAPI</artifactId>
    <version>2.1</version>
</dependency>

Hot to use:

How to create a scoreboard:

Scoreboard scoreboard = ScoreboardAPI.createScoreboard();
ScoreboardDisplay scoreboardDisplay = scoreboard.addDisplay( DisplaySlot.SIDEBAR, "objectivename", "title" );

How to add a score:

scoreboardDisplay.addLine( "This is a line in a score", 0 );
scoreboardDisplay.addLine( "§a", 1 ); //free space
scoreboardDisplay.addLine( "Name: " + player.getName(), 2 );
scoreboardDisplay.addLine( "§b", 3); //free space
DisplayEntry positionEntry = scoreboardDisplay.addLine( "X: " + player.getFloorX() + " Y: " + player.getFloorY() + " Z: " + player.getFloorZ(), 4 );

How to remove a score:

DisplayEntry positionEntry = scoreboardDisplay.addLine( "X: " + player.getFloorX() + " Y: " + player.getFloorY() + " Z: " + player.getFloorZ(), 4 );
scoreboardDisplay.removeEntry( positionEntry );

How to set a scoreboard for the player:

ScoreboardAPI.setScoreboard( player, scoreboard );

How to remove the scoreboard:

ScoreboardAPI.removeScorebaord( player, scoreboard );

How to update a score:

scoreboardDisplay.removeEntry( positionEntry );
scoreboardDisplay.addLine( "X: " + player.getFloorX() + " Y: " + player.getFloorY() + " Z: " + player.getFloorZ(), 4 );

Important! The only thing I changed is the package. The package changes from "de.theamychan.scoreboard" to "de.lucgameshd.scoreboard" because I have a new username. The ScoreboardAPI for nukkit 1.0 is still the old package.

View on GitHub
GitHub Stars7
CategoryDevelopment
Updated1y ago
Forks6

Languages

Java

Security Score

55/100

Audited on Feb 3, 2025

No findings