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 Apr 24, 2014@DOGCKyle
Because the compatibility problem between the two plugins originated during the update to 1.7.5, unfortunately the latest working version of BKCommonLib that works with MyWorlds is on 1.7.2. I recommend staying on 1.7.2 for now, especially if this is a public/production server- there really isn't anything you're missing out on (not just in terms of improvements, but really all the bug fixes are minor/irrelevant) with 1.7.5 or 1.7.9. Let the developers scramble to update their stuff for the next month or two until 1.8, and then worry about getting to that milestone when the time comes.
@TheCoolGuy123_5_Minecraft_
You're significantly behind in Spigot builds; update to the latest version of Spigot that is using 1.7.9 (technically, 1_7_R3 rather than 1_7_R2).
-
View User Profile
-
Send Message
Posted Apr 24, 2014I used the latest dev build for 1.7.9 and I keep getting this:
4.04 15:25:05 [Server] ERROR BKCommonLib and all depending plugins will now disable...
24.04 15:25:05 [Server] ERROR http://dev.bukkit.org/server-mods/bkcommonlib/
24.04 15:25:05 [Server] ERROR Please look for an available BKCommonLib version that is compatible:
24.04 15:25:05 [Server] ERROR It could be that BKCommonLib has to be updated, as the current version is built for MC v1_7_R3
24.04 15:25:05 [Server] ERROR This version of BKCommonLib is not compatible with: Spigot (git-Spigot-1387) : v1_7_R2 (Minecraft 1.7.8)
(Spigot compatible version, not the real 1.7.9 version)
-
View User Profile
-
Send Message
Posted Apr 24, 2014Like lunary and rofelmao1989 I'm also looking for something that works with MCPC+. In my case I would like to run TrainCarts and MyWorlds with MoCreatures and ideally Biomes O Plenty.
Regards - xmybu
-
View User Profile
-
Send Message
Posted Apr 23, 2014@lenis0012
Is there any way at all to get BKCommonLib and MyWorlds working in 1.7.5? I've spent over an hour testing various builds of both BKCommonLib and MyWorlds, and I cannot get it to work in 1.7.5.
I'd rather not update to 1.7.9 and have to deal with UUID changes...at least not yet.
-
View User Profile
-
Send Message
Posted Apr 23, 2014UPDATE PLEASE TO 1.7.9!!!!!!!!!
-
View User Profile
-
Send Message
Posted Apr 23, 2014Hi there, I'll join lunary's comment: I'm looking for a with MCPC+ 1.7.2 build #51 working version, too :\ It'd be really nice, if you could make it working so that I can use your awesome mods again.
Best regards rofelmao1989
-
View User Profile
-
Send Message
Posted Apr 22, 2014Hello,
because I use Mo Creatures on my server, I have to use mcpc+ but I also want to use TrainCarts, witch depends on BKCommonLib.
The problem is, I'm not able to get BKComonLib working with mcpc+.
Is there a compatible version with mcpc+ 1.7.2 build #51 ?
greets
lunary
-
View User Profile
-
Send Message
Posted Apr 21, 2014@sanjay900
Its not using it in the imports.
Its using Jenkins to shade bukkit into it.
And spinot for the development.
@pnndzwdz
These issues are known and being worked on
-
View User Profile
-
Send Message
Posted Apr 21, 2014@lenis0012
It did back then.... public static final String DEPENDENT_MC_VERSION = "v1_7_R2"; ...
-
View User Profile
-
Send Message
Posted Apr 21, 2014Can anyone know, what causes this problem: http://pastebin.com/cstwWvyU Craftbukkit 1.7.9 I deleted My worlds and my server works. I have next problem. When I restarted my serwer the trains are standing, them need any push.
-
View User Profile
-
Send Message
Posted Apr 21, 20141.7.9 Builds are now available on our jenkins.
They are untested and may contain bugs or errors.
If you find any, please report.
It is known not to be working with MyWorlds & NoLaggChunks dynamicViewDistance
Disable those if you have it,
in the case of nolagg.
disable in config.yml: chunks -> useDynamicViewDistance
-
View User Profile
-
Send Message
Posted Apr 20, 2014any 1.7.8 or 1.7.9 dev builds?
-
View User Profile
-
Send Message
Posted Apr 20, 2014@sanjay900
BKCommonLib does not have any 1_7_R2 fields.
We use Spinot to prevent having to retype all versions. The main problem is that i still have to fix 1.7.5 issues. But i decided to skip 1.7.5 builds.
If anyone wants them, use #355
Updating bkcommonlib as we speak.
-
View User Profile
-
Send Message
Posted Apr 20, 2014Hi, please make an update!
I updated the source / common, dependent mc version and pom to v1_7_R3 myself and recompiled it. It's now working with CraftBukkit 1.7.9 (git-Bukkit-1.7.2-R0.3-56-g3779cff-b3072jnks / #3072 1.7.9-R0.1). My TrainCarts-Plugin is now working again without also updating it.
-
View User Profile
-
Send Message
Posted Apr 19, 2014@sanjay900
Thank you soo much. And I'm sure your helping the BKCommonLib authors and they won't remove it until they release an official update.
-
View User Profile
-
Send Message
Posted Apr 19, 2014@mbcx2
Dont worry about it.
-
View User Profile
-
Send Message
Posted Apr 19, 2014@brianm109
@ywong227
Alright, here you go:
http://shatteredworlds.tk/BKCommonLib.jar
There is a chance this link will be removed, its not the first time thats happened...
Also, if you want to see what im working on, my server is shatteredworlds.tk
-
View User Profile
-
Send Message
Posted Apr 19, 2014I will attempt to update BKCommonLib temporarily.
-
View User Profile
-
Send Message
Posted Apr 18, 2014@sanjay900
Contribute to the BukkitDev community and be a bro.
-
View User Profile
-
Send Message
Posted Apr 18, 2014@sanjay900:
Please post a download link from dropbox or mediafire. I really need that for my server. Please, I'm begging you. I don't know how to compile a plugin. Please.
-Brian