Logo
MINECRAFTBIBLE
Items
Items

All game items

Blocks
Blocks

Building blocks

Mobs
Mobs

Creatures & monsters

Biomes
Biomes

World biomes

Structures
Structures

Generated structures

Recipes
Recipes

Crafting guides

Advancements
Advancements

Achievements

Loot Tables
Loot Tables

Drop rates

Tags
Tags

Item groupings

All Versions
View all data →
Capes
Cape ArchiveNEW

Browse rare Minecon capes, OptiFine capes, and custom capes from players worldwide

Browse

Player Database
Player DatabasePopular

Search any player

Skin Browser
Skin Browser

Browse & download skins

Cape Gallery
Cape GalleryNEW

Minecon & OptiFine capes

Seed Vault
Seed Vault

Curated seeds

Learn

Guides
GuidesNew

Tutorials & tips

Blog
Blog

News & updates

Community

Community Hub
Community HubHub

Posts, discussions & more

All Versions
View community →
Seed Analyzer
Seed Analyzer

World seed analysis

Loot Explorer
Loot Explorer

Drop rates

Crafting Calculator
Crafting Calculator

Material planning

Enchant Calculator
Enchant Calculator

Probability math

Redstone Lab
Redstone Lab

Signal timing

Trading Profit
Trading Profit

Villager ROI

All Versions
View all tools →
Mods
Mods

Browse all mods

Plugins
Plugins

Server plugins

Resource Packs
Resource Packs

Textures & sounds

Shaders
Shaders

Visual enhancements

Datapacks
Datapacks

World logic

Scanner
Mod Intelligence

Scan & analyze any mod

All Versions
View all mods →
Loading...
IntroductionIntroductionVersion HistoryVersion HistoryGuidesGuidesBlog & NewsBlog & News
ItemsItemsBlocksBlocksMobsMobsRecipesRecipesBiomesBiomesStructuresStructuresAdvancementsAdvancementsLoot TablesLoot TablesTagsTags
ModsModsPluginsPluginsResource PacksResource PacksShadersShadersDatapacksDatapacks

MinecraftBible

The Ultimate Wiki

Logo
MINECRAFTBIBLE

The ultimate Minecraft reference. Every item, block, mob, and recipe documented with precision.

Community

  • Skin Browser
  • Cape Gallery
  • Seed Vault
  • Blog
  • Guides

Database

  • Items
  • Blocks
  • Mobs
  • Recipes
  • Biomes
  • Structures

Tools

  • Seed Analyzer
  • Mod Intelligence
  • Crafting Calculator
  • Enchant Calculator

Mods & Packs

  • Mods
  • Plugins
  • Resource Packs
  • Shaders
  • Datapacks

Site & Legal

  • About
  • Authors
  • Editorial Policy
  • Corrections
  • Contact
  • Privacy Policy
  • Terms of Service
  • DMCA
  • Sitemap

© 2026 MinecraftBible. Not affiliated with Mojang or Microsoft.

PrivacyTermsContact
ScoreboardY-api
PluginLicenseRef-All-Rights-Reserved

ScoreboardY-api

This is a very simple scoreboard api. I will provide docs in the future

294
Downloads
0
Followers
1 years ago
Updated
📦
1
Versions
bukkitpaperpurpur
Download Latestv1View on Modrinth

📖About ScoreboardY-api

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;
    }
}

👥 Team & Contributors

ylunxy_dc
ylunxy_dcOwner

⚙️ Compatibility

Environment
🖥️ Server-side
Loaders
bukkitpaperpurpur
Minecraft Versions
1.21.41.21.5

🔗 Links

Modrinth Page