Recent content by Denic

  1. Denic

    [Deleted] SignShop

    This resource has been removed and is no longer available.
  2. Denic

    [Deleted] SignShop

    Denic updated SignShop with a new update entry: Discontinued Read the rest of this update entry...
  3. Denic

    Database Extendability

    Denic submitted a new resource: Database Extendability - Send and grab data from MySQL and SQLite Databases with ease Read more about this resource...
  4. 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...
  5. Denic

    How to create a basic plugin [part 4]

    INTRODUCTION In this tutorial we will be extending the 3 previous tutorials. This tutorial will be mainly focused on applying the knowledge you've learned thus far to make a functional AND useful plugin. We will be recreating my Hud Plugin in this tutorial.The Javadocs will be referred to a lot...
  6. Denic

    Help with CustomInventory

    Don't quote me on this but I believe you can do something like the following using FakeInventories https://github.com/NukkitX/FakeInventories ChestFakeInventory chest = new ChestFakeInventory(); chest.onOpen(player); You would set the contents in the constructor of the inventory using an...
  7. Denic

    CooldownAPI

    Civiled updated CooldownAPI with a new update entry: New Methods Read the rest of this update entry...
  8. Denic

    CooldownAPI - New Methods

    Added the following: Time remaining Add more time Remove some time Update the time
  9. Denic

    CooldownAPI

    Civiled submitted a new resource: CooldownAPI - Create Cooldowns and Timers with ease! Read more about this resource...
  10. Denic

    CooldownAPI - CooldownAPI

    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...
  11. Denic

    [Deleted] Nukkit2PMMP

    Pointless ;)
  12. Denic

    Selling Plugins

    Selling Plugins
  13. Denic

    How to Remove the Built in Anti Reach in Nukkit

    I believe this is client based.
  14. Denic

    DistinctJDA

    Civiled submitted a new resource: DistinctJDA - JDA Library for NukkitX Read more about this resource...
  15. Denic

    DistinctJDA - DistinctJDA

    This plugin is just JDA. Add it to your plugins folder to use JDA within your code
Top