Resource icon

ScoreboardAPI 2.2.1

Compatible API Versions
1.0.11+
Sourcecode
https://github.com/IWareQ/ScoreboardAPI
Contributors
IWareQ
ScoreboardAPI

ScoreboardAPI is a simple library plugin for PowerNukkit/Nukkit Minecraft Bedrock core, that will help you to create your custom scoreboards with ease.

Usage
Java:
Scoreboard scoreboard = new Scoreboard("Test Scoreboard", DisplaySlot.SIDEBAR, 20); // update time in ticks (20 ticks = 1 second)
scoreboard.setHandler(pl -> {
    scoreboard.addLine(pl.getName());
    scoreboard.addLine("§1"); // used for skip line
    scoreboard.addLine("random: " + Math.random());
    scoreboard.addLine("random: " + Math.random());
    scoreboard.addLine("random: " + Math.random());
    scoreboard.addLine("random: " + Math.random());
    scoreboard.addLine("random: " + Math.random());
    scoreboard.addLine("§2"); // used for skip line
    scoreboard.addLine("Online: " + Server.getInstance().getOnlinePlayers().size());
});

scoreboard.show(player);
Maven

Repository

XML:
<repositories>
    <repository>
        <id>jitpack.io</id>
        <url>https://jitpack.io</url>
    </repository>
</repositories>
Dependency
XML:
<dependency>
    <groupId>com.github.IWareQ</groupId>
    <artifactId>ScoreboardAPI</artifactId>
    <version>Tag</version>
</dependency>
Author
IWareQ
Downloads
2,969
Views
4,914
First release
Last update
Rating
0.00 star(s) 0 ratings

More resources from IWareQ

  • FakeInventories
    FakeInventories
    That will help you to create your custom virtual inventories with ease.

Latest updates

  1. Release 2.2.1

    Full Changelog: 2.2.0...2.2.1
  2. Release 2.2.0

    Full Changelog: 2.1.1...2.2.0
  3. Release 2.1.1

    Full Changelog: 2.1...2.1.1
Top