HomeJavaModsScoreboardLib
ScoreboardLib
icon_512.png
ScoreboardLib
A flicker-free scoreboard library with support of text up to 48 characters.


What is ScoreboardLib?

ScoreboardLib is a flexible library for adding pretty, animated scoreboards to your plugin without requiring you to figure out how to get rid of random flickers or limitations. This library is introduced to dealt with following problems in the original API and similar libraries:

Any screenshots?

[​IMG]
Feel the awesomeness.


Other reasons to use ScoreboardLib?



How do I add it to my project?

Simply add the following to your pom.xml.

Code (Text):
<repository>
    <id>tiger-repo</id>
    <url>http://repo.tigerhix.me/content/repositories/snapshots/</url>
</repository>

<dependency>
    <groupId>me.tigerhix.lib</groupId>
    <artifactId>scoreboard</artifactId>
    <version>1.0.1-SNAPSHOT</version>
</dependency>
Now you are able to create your own pretty scoreboards.

How do I use it?

First, you have to decide whether you use ScoreboardLib as a standalone plugin, or you just go shade it into your own plugin. For the latter case, you have to add following code to your onEnable():
Code (Text):
ScoreboardLib.setPluginInstance(this);
To let ScoreboardLib holds a reference to your plugin and hence able to schedule tasks, register events, etc.

For the scoreboard itself, here is an usage example:
Code (Text):
for (Player player: getServer().getOnlinePlayers()) {
    Scoreboard scoreboard = ScoreboardLib.createScoreboard(player)
        .setHandler(new ScoreboardHandler() {

            private final ScrollableString scroll = new ScrollableString(Strings.format("&aThis string is scrollable!"), 40, 0);
            private final HighlightedString highlighted = new HighlightedString("This string is highlighted!", "&6", "&e");

            @Override
            public String getTitle(Player player) {
                return null;
            }

            @Override
            public List<Entry> getEntries(Player player) {
                return new EntryBuilder()
                    .next("    " + scroll.next())
                    .next("    " + highlighted.next())
                    .blank()
                    .next("    &b&lCURRENT TIME MILLIS")
                    .next("    " + System.currentTimeMillis())
                    .blank()
                    .next("    &c&lCURRENT NANO TIME")
                    .next("    " + System.nanoTime())
                    .blank()
                    .next("    &7This line is equivalent to another line")
                    .next("    &7This line is equivalent to another line")
                    .blank()
                    .build();
            }

       })
       .setUpdateInterval(2l);
    scoreboard.activate();
}
Which would display a scoreboard as shown in the above gif to all online players.

To remove the scoreboard, use:
Code (Text):
scoreboard.deactivate();
That's really much of it. If you want to extend the functionalities somehow, simply create a new class that extends SimpleScoreboard, and start overriding methods, creating constructors, etc.


More...

Source code released under GNU LGPL License. Star it if you like it.
https://github.com/TigerHix/ScoreboardLib

My other resources:
If you have any questions, ask them in the thread - after all, posting an error log in the review section wouldn't help anyone :(
If ScoreboardLib helps you, consider leaving a like. A review would be also appreciated!

Plugin details

Read from the plugin's own plugin.yml.

Quick facts

Install steps are the general flow for this file type — How to install Minecraft Java mods & modpacks walks through it step by step.

ScoreboardLib is a free Minecraft Java mod. Downloaded 1,966 times (via Spigot). Download it and open it directly in the game.

Explore more