ScoreboardY-api

⭐ — (0 endorsements) 📥 347 downloads 📌 v1 📅 4/1/2025
🟠 Updated over a year ago

By ylunxy_dc · bukkit

⬇ Download Mod Source: Modrinth ↗ 📅 Updated: 3/25/2025 📅 Created: 4/1/2025

🔍 Analysis

  • 🏆 #36 of 1317 bukkit mods in this game by downloads

📋 About This Mod

✅ make a class for youre scoreboard (eg. MainBoard)
✅ implement CreateAbleScoreboard
✅ your done!

## ScoreboardY API **This is an API _**NOT A PLUGIN**_** This is how u use it: Creating a scoreboard: - make a class for youre scoreboard (eg. MainBoard) - implement CreateAbleScoreboard - your done! Exmple: ``` package de.nms.scoreboardY; import net.kyori.adventure.text.Component; import org.bukkit.Bukkit; import org.bukkit.entity.Player; import org.bukkit.scoreboard.Criteria; import org.bukkit.scoreboard.Score; import org.bukkit.scoreboard.Scoreboard; import org.jetbrains.annotations.Contract; import org.jetbrains.annotations.NotNull; public class TestScoreBoard implements CreateAbleScoreboard{ private Scoreboard scoreboard; private Boolean created; static TestScoreBoard testScoreBoard = new TestScoreBoard(); @Override public @NotNull Component displayName() { return Component.text("DISPLAY"); } @Override public Scoreboard create() { scoreboard = Bukkit.getScoreboardManager().getNewScoreboard(); scoreboard.registerNewObjective("main", Criteria.AIR, displayName()); scoreboard.getObjective("main").setAutoUpdateDisplay(true); Score mod = scoreboard.getObjective("main").getScore("line"); mod.customName(Component.text("custom")); created = true; return scoreboard; } @Override public void show(Player player) { if (created){ player.setScoreboard(scoreboard); }else{ player.sendRichMessage("<red>Some developer tried to show u a scoreboard that wasnt created yet!"); player.sendRichMessage("<yellow>For more info try to ask the developer or owner for a log!"); } } public void showEveryone(){ Bukkit.getOnlinePlayers().forEach(this::show); } public static TestScoreBoard instance(){ return testScoreBoard; } } ```

## ScoreboardY API

This is an API _NOT A PLUGIN_

This is how u use it:

Creating a scoreboard:

  • make a class for youre scoreboard (eg. MainBoard)
  • implement CreateAbleScoreboard
  • your done!

``` package de.nms.scoreboardY;

import net.kyori.adventure.text. Component; import org.bukkit. Bukkit; import org.bukkit.entity. Player; import org.bukkit.scoreboard. Criteria; import org.bukkit.scoreboard. Score; import org.bukkit.scoreboard. Scoreboard; import org.jetbrains.annotations. Contract; import org.jetbrains.annotations. NotNull;

public class TestScoreBoard implements CreateAbleScoreboard{ private Scoreboard scoreboard; private Boolean created; static TestScoreBoard testScoreBoard = new TestScoreBoard();

@Override public @NotNull Component displayName() { return Component.text("DISPLAY"); }

@Override public Scoreboard create() { scoreboard = Bukkit.getScoreboardManager().getNewScoreboard(); scoreboard.registerNewObjective("main", Criteria. AIR, displayName()); scoreboard.getObjective("main").setAutoUpdateDisplay(true); Score mod = scoreboard.getObjective("main").getScore("line"); mod.customName(Component.text("custom")); created = true; return scoreboard; }

@Override public void show(Player player) { if (created){ player.setScoreboard(scoreboard); }else{ player.sendRichMessage("Some developer tried to show u a scoreboard that wasnt created yet!"); player.sendRichMessage("For more info try to ask the developer or owner for a log!"); } }

public void showEveryone(){ Bukkit.getOnlinePlayers().forEach(this::show); }

public static TestScoreBoard instance(){ return testScoreBoard; } }

🤖 AI-enhanced — based on mod data

📊 Mod Details

Game
Minecraft Plugins
Author
ylunxy_dc
Version
1
Downloads
347
Endorsements
0
Category
bukkit
Created
4/1/2025
Updated
3/25/2025
Game Versions
1.21.4, 1.21.5

🔧 How to Install Minecraft Plugins Mods

Download from Modrinth. Use Prism Launcher or drop into your mods folder.

📖 Full step-by-step install guide for Minecraft Plugins →

Visit the official mod page for specific installation instructions for this mod.

🎮 Need cheat codes or console commands? Check ur gaming wiki for Minecraft Plugins commands, item IDs, and more.

❓ Frequently Asked Questions

Which Minecraft Plugins versions does ScoreboardY-api support?

The author lists 1.21.4, 1.21.5. Other versions may work but are untested by the author.

What is the latest version of ScoreboardY-api?

Version 1, published 2025-03-25 with 347 downloads recorded at the source.

Keep browsing — more Minecraft Plugins mods await

📋 All Minecraft Plugins Mods 🏆 Top 25 📂 More bukkit 👤 More by ylunxy_dc 🔎 Similar Mods 🌐 Best bukkit (All Games) 🔀 Check Compatibility ⚖️ Compare Mods 🆕 New Mods