Board
Scoreboard API for Bukkit / Spigot plugins. Known to support 1.7.x & 1.8.x servers, your mileage may vary w/ other versions.
Install / Use
/learn @missionarydev/BoardREADME
board 
A clean and functional scoreboard api for use with Bukkit/Spigot plugins. The objective of board is to allow for easy creation of scoreboard systems without the hassle of the included api's in Bukkit.
Usage
board can be easily added to your project with the use of Apache Maven.
Requirements of board
- Java 8+ (usage of Java 8 specific features is heavy)
- Project Lombok Any version after 1.16.20 shall suffice
- Bukkit/Spigot (up to the user where they find it)
- Git SCM
- Apache Maven 3
It is recommended that you use the jitpack
After you have all of the requirements installed & configured you can use the following series of commands to download and install board to your local maven repo (.m2)
git clone https://github.com/missionarydev/board.git
cd board
mvn clean install
board will now have been added to your local maven repo (.m2) and you can begin using it by adding the following into your Maven pom.xml
<dependency>
<groupId>me.missionary</groupId>
<artifactId>board</artifactId>
<version>1.1.0-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
After you have added the dependency to your Maven pom.xml the last thing you need to do is register the BoardManager and instance of BoardProvider with your plugin!
public class ExampleUsage extends JavaPlugin {
private BoardManager manager;
@Override
public void onEnable() {
manager = new BoardManager(this, BoardSettings.builder().boardProvider(new ExampleProviderImplementation()).scoreDirection(ScoreDirection.UP).build());
}
@Override
public void onDisable() {
manager.onDisable();
}
}
Functionality
board provides support for creating simple and elegant scoreboards.
Here is an example of how to create a scoreboard with board.
public class ExampleProviderImplementation implements BoardProvider {
@Override
public String getTitle(Player player) {
return ChatColor.LIGHT_PURPLE + "Board";
}
@Override
public List<String> getLines(Player player) {
List<String> lines = new ArrayList<>();
lines.add("&7&m-----------------");
lines.add(ChatColor.LIGHT_PURPLE + "Name" + ChatColor.GRAY + ": " + ChatColor.YELLOW + player.getName());
lines.add(ChatColor.LIGHT_PURPLE + "Health" + ChatColor.GRAY + ": " + ChatColor.YELLOW + String.format("%.1f\u2764", Math.ceil(player.getHealth()) / 2.0));
lines.add(ChatColor.LIGHT_PURPLE + "Hunger" + ChatColor.GRAY + ": " + ChatColor.YELLOW + player.getFoodLevel() / 2);
lines.add("&7&m-----------------");
return lines;
}
}
The previous code will produce this result:

Related Skills
gh-issues
338.7kFetch GitHub issues, spawn sub-agents to implement fixes and open PRs, then monitor and address PR review comments. Usage: /gh-issues [owner/repo] [--label bug] [--limit 5] [--milestone v1.0] [--assignee @me] [--fork user/repo] [--watch] [--interval 5] [--reviews-only] [--cron] [--dry-run] [--model glm-5] [--notify-channel -1002381931352]
oracle
338.7kBest practices for using the oracle CLI (prompt + file bundling, engines, sessions, and file attachment patterns).
tmux
338.7kRemote-control tmux sessions for interactive CLIs by sending keystrokes and scraping pane output.
xurl
338.7kA CLI tool for making authenticated requests to the X (Twitter) API. Use this skill when you need to post tweets, reply, quote, search, read posts, manage followers, send DMs, upload media, or interact with any X API v2 endpoint.
