api

  1. CrystalNeko

    CtLib 0.1.3

    ctLib This is a mod/plugin library for Bukkit/Spigot/Paper/Folia and fork.Also supproted Fabric and Velocity. You need run it in at least Java11 It provides some simple APIs for storing data and other operations. Supported: Folia Paper/Purpur Bukkit/Spigot Fabric Quilt Forge NeoForge NukkitX...
  2. SYRKING231

    LockItemAPI 1.0

    Simple API to lock items (in inventory or in slot) for Nukkit Just register the item you want to lock in ``LockedItemRegistry`` when enabling your plugin LockedItemRegistry.registerLockedItem(ItemID.DIAMOND, true); to lock item in slot ( you can't move the item in inventory but you can't drop...
  3. Verox007

    MinigameSignsAPI for NukkitX 1.0.0

    MinigameSigns for NukkitX Important: This plugin is an API, so you will likely have to include this plugin in YOUR Plugin dependencies. Create Sign: SignsAPI.createMinigameSign( yourPluginInstance, locationOfSign, "nameOfMinigame", "command to execute, when clicked"...
  4. PetteriM1

    LlamaBridge 1.0.0

    LlamaBridge This plugin allows other plugins that depend on LlamaEconomy to work with EconomyAPI How to use? Just put this plugin into your plugins folder and other plugins that require LlamaEconomy will work. Currently using API from LlamaEconomy version 1.0.0 Found an incompatible plugin...
  5. D

    EnchantAPI 1.0.0

    A super simple to use Api for Enchantments example you wanna get Sharpness but you dont know the nukkit code (it is DAMAGE_ALL) just use: EnchantAPI.getEnchant(Enchant.SHARPNESS) and thats it it will return The Nukkit Enchantment simple isn't it? There is also a Method called...
  6. Josewowgame

    Citizen Library 1.0-SNAPSHOT

    Citizen Library Personally I have always liked the styles of the npc like those that are in the Minecraft Java Edition servers, but in Minecraft Bedrock Edition it can be very complex to make them for plugin developers who are just starting out or most only decide to use line breaks. This...
  7. CreedStar

    Can I get some help?

    I was wondering if I can get a Nukkit API or something similar to https://poggit.pmmp.io/pmapis how they have their own API's for the listing, I am trying to add a custom addon for my pterodactyl API panel so I can automatically add the plugins. I need something in a similar format to...
  8. Denic

    2.0 Database Extendability 1.0

    DatabaseExtendability is an advanced but easily usable sql query API for NukkitX 2.0 Usage for SQLite: class PlayerDatabase extends SQLiteDatabase { public PlayerDatabase(File file) { super(file); super.connect(); } @Override public void initiate() { try...
  9. SeqSEE

    CryptoconomyAPI v1.0.4

    CryptoconomyAPI Core of economy system for Nukkit forked from EconomyAPI using strings and BigDecimal to allow use of precision math for numbers with 8 decimal places or precision, making it a suitable choice for use with cryptocurrencies. Commands - /mymoney - /seemoney - /givemoney -...
  10. Buddelbubi.

    Discontinued ServerCommunicator 1.0.0

    Broke on Nukkit API Update 1.0.13 and I dont have the sourcecode anymore But it should still work on PowerNukkit. (But not for LobbyNK.) Some plugins need some data from another Servers. Bukkit has an API to get the data. Nukkit does not. Thats why I made ServerCommunicator. It gets this data...
  11. PetteriM1

    BlockAPI 1.0.1

    With BlockAPI plugin developers can easily replace blocks with custom ones to change their behaviour Notice: - Make sure you are using the latest Nukkit build. - It is recommended that the new block extends the original block to avoid problems. - All the plugins that don't use Block.get()...
  12. LucGamesHD

    2.0 ScoreboardAPI 2.1.0

    New version! I release the ScoreboardAPI for Nukkit 2.0! The old version of the ScoreboardAPI for nukkit 1.0+ is only available on GitHub. Repository & Dependency: <repository> <id>releases</id> <url>http://lucgameshd.de:8081/content/repositories/releases</url> </repository>...
  13. D

    NukkitScoreboard (with Spigot PlaceholderAPI Support) 1.0

    How to Install? 1. Install Pokkit 2. Install PlaceholderAPI for Spigot as a Pokkit plugin (to /plugins/Pokkit/bukkitPlugins) 3. Drop THIS plugin into /plugins/Pokkit/bukkitPlugins How does it work? This is a bridge plugin between the original PlaceholderAPI for Spigot and Nukkit servers...
  14. C1oky

    FormAPI 2.1-SNAPSHOT

    # FormAPI | NukkitX Simple API for creating forms (MCBE Nukkit) Usage example: SimpleForm: SimpleForm form = new SimpleForm("Test form") .setContent("Some kind of test text should be written here.") .addButton("Button") .addButton("Button with a picture", ImageType.PATH...
  15. Ragnok123

    Experimental MenuAPI 0.1 beta

    PLANS: FORMS MENU (NOT FINISHED) To create new inventory menu, you should do this: InventoryMenu menu = new InventoryMenu(); Every menu has a category. It is made to avoid bilion times changing menu content; To create new category, you can simply do this: InventoryCategory category =...
  16. yakovliam

    [Resource] Configuration API

    I've tried to use the default Nukkit configuration API in the past, and I find it to be a pain and it requires a lot of effort to manage. To solve this I originally wrote my own for myself, but I thought I'd share it with all of you. For all of the classes I show you, you will have to adapt to...
  17. Denic

    CooldownAPI 1.1

    With Cooldown API you can easily create cooldowns and timers! Creating a cooldown is as simple as this: //First argument is the cooldown identifier //Second argument is the time in seconds CooldownAPI.addCooldown("civiled.warp.pvp", 100); You can also remove cooldowns like so: //The first...
  18. H

    Experimental SGUI-API 0.1.0-Alpha

    SGUI-API Current Versoin:0.1.0-Alpha SGUI-API depends on KotlinLib Notice:This plugin is for developers to use. Separate installation does not work. It requires other plugins to work with. Example usage: class SLogin : PluginBase(),Listener { private lateinit var loginGUI...
Top