BKCommonLib
BKCommonLib is no longer being updated on dev.bukkit.org.
If you want to use the latest version, use spigot.
Latest version: 1.57
CraftBukkit/SportBukkit/Spigot/MCPC+ build: CB 1.6.4 R1.0 / CB 1.6.4 R2.1 / Spigot 1.7
Older builds available: CB 1.5.2-R1.0 / CB 1.6.2-R1.0
Tekkit: Untested and thus unsupported, some features may not work as expected
Description
This utility library shares all the common code needs for various plugins, and having them in one library heavily reduces the amount of duplicated code. The featured utilities are varied, and whenever something is missing in Bukkit, it is added in BKCommonLib. This is one of the reasons why it has become this large: there are simply a lot of things Bukkit doesn't (want to) offer.
BKCommonLib has versioning on a per-plugin basis, so when a certain plugin needs version 2, and version 1 is installed, the server owner is automatically notified and the plugin is not enabled. This prevents the common mishaps with outdated BKCommonLib versions.
Other than utilities and services, this library offers a wide variety of reflection and user-friendly ways of accessing net.minecraft.server. If your plugin requires the use of the internals, but do not want to risk changing field and method names, you can depend on BKCommonLib to provide them for you. This allows you to remain compatible between CraftBukkit versions automatically, and reduces silent failure hazards.
Reasons for you to depend on this library
- You need to access Minecraft internals in your plugin, and Bukkit has no API for it
- You are tired of re-uploading the same version over again because of the internals changing
- You want to work with Vector/math logic, or need to use other utility classes
- The YAML of Bukkit dislikes you, and you want this to be easier
- You want to easily read and write configuration/data files
- You want easy access to data conversion utilities to convert user input
- You want to work with inventories in an advanced fashion
- You want to work with unique server events
- You want to alter entity behaviour (such as handling block collisions, custom movement, etc.)
- You want plugin messages/permissions to be configurable
- You want to work with (async)tasks without storing IDs
- You want to send and manipulate packets
Features
- General
- PluginBase for easy access to metrics, permissions, localization and more
- Permission defaults for storing the permissions a plugin uses
- Localization for making the messages of a plugin configurable
- Utilities
- General utilities for String, Logic, BlockFace and Math operations
- Block utilities for Block-related operations (states, data, etc.)
- ItemUtil for Inventory, Items and Item Transfer utilities
- RecipeUtil to work with crafting and furnace recipes
- Various Collections for auto-filtering, converting and even interpolation
- Data storage
- Configuration API with nodes, headers and other goodies
- NBT API designed after the configuration API
- (Compressed)DataReader/DataWriter to read and write data from/to file
- Entities
- CommonEntity implementations with added utilities
- EntityController for altering entity behaviour
- EntityNetworkController for altering entity network logic
- Services
- Metrics for keeping track of plugin statistics
- Conversion for conversions between all types of data
- Events and Listeners to keep track of changes on the server
- Packet services and API to keep track of packets
- Task class for easier task scheduling
- Scoreboard services to setup scoreboards without criteria
- Tab View service to alter what is shown when players press tab
Getting started
To start using BKCommonLib, you have two options (after adding BKCommonLib as dependency in the plugin.yml):
Include the jar file as a dependency
Like any dependency, keep the jar file somewhere on your computer and add it to your classpath. Nothing special here.
Make a (new) maven project and include it
Add the following repository:
<repository> <id>dj-tcraft repository</id> <url>http://ci.dj-tcraft.nl/plugin/repository/everything/</url> </repository>
And the following dependency (may need to update version):
<dependency> <groupId>com.bergerkiller.bukkit</groupId> <artifactId>BKCommonLib</artifactId> <version>1.54-SNAPSHOT</version> <scope>provided</scope> </dependency>
Dependencies BKCommonLib uses
BKCommonLib supports various other plugins and projects. Below all of these are listed:
- Vault - for permission plugin support
- ProtocolLib - to avoid packet listening conflicts
- Showcase(Standalone) - to ignore showcased items
- HyperConomy - to ignore shop items
- BleedingMobs - to ignore particles
- CGLib - for generating nms.Entity classes on-the-fly to supply Entity Controllers
- Objenesis - for generating classes without calling constructors (needed for various fixes inside class constructors)
Plugins that require BKCommonLib to be installed:
Disclaimer
This plugin utilises Hidendra's plugin metrics system, which means that the following information is collected and sent to mcstats.org:
- A unique identifier
- The server's version of Java
- Whether the server is in offline or online mode
- The plugin's version
- The server's version
- The OS version/name and architecture
- The core count for the CPU
- The number of players online
- The Metrics version Opting out of this service can be done by editing plugins/Plugin Metrics/config.yml and changing opt-out to true.
License
This library uses an open license. Feel free to use whatever code you need from it, you do not have to ask me either. If you want me to add certain features, that is fine too. Everyone is allowed to use this Library as a dependency. I do recommend extending 'PluginBase' instead of 'JavaPlugin' then, as it allows you to automatically deal with the BKCommonLib versioning checks. See also: BKCommonLib license file
This product includes software developed by the Apache Software Foundation (http://www.apache.org/)
Links:
Compatibility
BKCommonLib supports ProtocolLib when it is enabled, but if it is not, the player connection is replaced resulting in several incompatibilities. To fix these incompatibility issues, install ProtocolLib next to BKCommonLib. This can not be stressed enough. When incompatibility occurs, BKCommonLib will notify you in the console and will disable itself. The following plugins are known to be incompatible when ProtocolLib is NOT installed:
Metrics
This plugin sends server count and dependency statistics to MCStats.org. You can (globally) opt out in the PluginMetrics/config.yml file.
Banner
I use a banner in my depending plugins. This banner is automatically updated when a new version of BKCommonLib is out. It is a quick and efficient way to keep track of updates for this library. This was needed, too, because a lot of people were using outdated BKCommonLib versions, which resulted in bug reports...too many of them. And I do not want to waste your time with invalid reports. You have a plugin that uses BKCommonLib? Feel free to use the banner on your download page.
[[http://dev.bukkit.org/bukkit-plugins/bkcommonlib/|{{http://ci.dj-tcraft.nl/job/BKCommonLib/lastSuccessfulBuild/artifact/target/BKCommonLibVersion.png|Go to the BKCommonLib Dev-bukkit page}}]]







-
View User Profile
-
Send Message
Posted Jun 5, 2014Help BKCommon dont work in my server 1.7.5
http://prntscr.com/3q4i0p
-
View User Profile
-
Send Message
Posted Jun 5, 2014@the_grox
This issue has been raised before and AFAICT there's no compatible Cauldron version anywhere.
I've just had another look at what's happening. I'm wondering if the change at https://github.com/bergerkiller/BKCommonLib/commit/11e063666ea2876a3f8e2b0519b96de42ec3c86a#diff-5594f991573e6e5663f33696a0b21bed broke mcpc - Cauldron support. Think I'll raise some tickets in the hope that someone more knowledgeable than myself can take a look.
-
View User Profile
-
Send Message
Posted Jun 2, 2014Hi all!
Is floating somewhere an compatible version with Cauldron (former MCPC+) 1.7.2?
I don't know if is needed an special build or something.
Thanks in advance!
-
View User Profile
-
Send Message
Posted Jun 1, 2014@Johnkok
MyWorlds has no support for UUIDs, but I added it and automatic UUID conversion for other worlds in my own dev build. More info here: http://dev.bukkit.org/bukkit-plugins/my-worlds/#c1255
I've been running it on my own server for a few weeks, and others have also reported good success :)
-
View User Profile
-
Send Message
Posted May 30, 2014@lenis0012
Thanks again Lenis, you are a busy guy. I will get a donation sent your way.
-
View User Profile
-
Send Message
Posted May 30, 2014@Johnkok
smart boy!
I'll look at it
-
View User Profile
-
Send Message
Posted May 26, 2014@lenis0012
Confirmed, they do work. Thank you Lenis for your work. Now I just have to figure out why the damn UUIDs wont convert to Spigot 1.7.9 but that is not an issue for here.
EDIT: My_Worlds is not compatible with UUIDs and thus creates a new player data file in the new UUID system. Players will lose their inventories.
-
View User Profile
-
Send Message
Posted May 24, 2014@Johnkok
They seem to work fine on 1.7.9
-
View User Profile
-
Send Message
Posted May 21, 2014Hi Lenis,
Can you confirm if the new build on Jenkins is compatible with MyWorlds 1.67 and Spigot 1.7.9.
Thank you
-
View User Profile
-
Send Message
Posted May 20, 2014@RulingKyle1496
Glad you like it
-
View User Profile
-
Send Message
Posted May 19, 2014Amazing plugin, really helps with nbt
-
View User Profile
-
Send Message
Posted May 12, 2014ok i have a lot of plugins on my server and 3 are red. BKCommonLib, Traincarts, and sign link. all of which use BKCommonLib! so i think it is BKCommonLib! I don't know what i need to do though? i have ProtocolLib installed? and its green not red? so what could it be? PLEASE PLEASE PLEASE PLEASE PLEASE help me! thank you! I've spent all day trying to get train carts and all that to work!
-
View User Profile
-
Send Message
Posted May 12, 201412.05 18:58:21 [Server] ERROR It could be that BKCommonLib has to be updated, as the current version is built for MC v1_7_R3
12.05 18:58:21 [Server] ERROR This version of BKCommonLib is not compatible with: Spigot (git-Spigot-1387) : v1_7_R2 (Minecraft 1.7.8)
12.05 18:58:21 [Server] INFO Enabling BKCommonLib v1.58-SNAPSHOT
-
View User Profile
-
Send Message
Posted May 12, 2014When can you add compatibility with spigot? 1.7.9 even with the snapshot
-
View User Profile
-
Send Message
Posted May 11, 2014@xmybu
FWIW I've now decided to use some other plugins/mods so that I am no longer dependent on BKCommonLib running under MCPC.
-
View User Profile
-
Send Message
Posted May 6, 2014@lenis0012
Sorry to raise this again but have you had chance to look into the MCPC issues?
FWIW there's the start of a discussion over at http://www.mcportcentral.co.za/index.php?topic=6185.0 about the issues with MCPC and BKCommonLib
It would be a pity if BKCommonLib didn't support the latest MCPC given it's the only way to run Forge mods with Bukkit plugins. Personally I find several of the forge mods like Mo Creatures and Biomes o Plenty difficult to ignore but I don't want to be without my Bukkit plugins like WorldEdit, MyWorlds and TrainCarts either!
Is there anything that I can do to help out? I have lots of dev experience but unfortunately not Java/Forge/Bukkit. Guess it's time to take the plunge but reading about how bergerkiller previously updated BkCommonLib for MCPC it doesn't sound like the job for a novice...
-
View User Profile
-
Send Message
Posted May 4, 2014BKcommonlib 1.57 works with the latest 1.7.2 build from spigot(and Beta build 1.7.2 from bukkit) but it does not work with 1.7.9 The latest development build in the Jenkins server (#366) API is unaccessable,
and typing a command is crashing the server most of the time, sometimes it wont but there is a big chance that a command will crash the server(Nevermind, that was a plugin conflict).-
View User Profile
-
Send Message
Posted May 3, 2014Hey, I used this in my plugin but I keep getting the following error:
Caused by: java.lang.NoClassDefFoundError: com/bergerkiller/bukkit/common/scoreb oards/CommonScoreboard
What could the cause be? I have added depend: [BKCommonLib] to my plugin.yml and I have added it to the build path and installed it on my server.
Thanks!
-
View User Profile
-
Send Message
Posted Apr 29, 2014@Swords761
Mine works with MC version 1.7.5 CB 1.7X
-
View User Profile
-
Send Message
Posted Apr 25, 2014@Swords761
I'm on the latest 1.7.9 compatible version, where its 1.7.X