/OneMobCoins

Fork du plugin de mobcoins

Primary LanguageJava

KrakenMobCoins

KrakenMobCoins is a virtual custom-currency plugin, every aspect on this plugin are configurable to your liking, you can configure drop chances, and amount of mobcoins to be dropped each mobs with decimals supports, and also with friendly Developer APIs. For the full feature, check the list below!

API Usage

Example Usage:

public class ExampleAPIUsage {
  
  public double getPlayerCoins(Player player){
    MobCoinsAPI api = MobCoins.getAPI();
    // PlayerCoins is nullable, so you want to nullcheck it first.
    PlayerCoins playerCoins = api.getPlayerData(player);
    
    return playerCoins.getMoney();
  }
  
}

Useful Class for API

Useful Links