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 Feb 6, 2013@Waterdust2000
This does work to remove the error Thanks
-
View User Profile
-
Send Message
Posted Feb 6, 2013Seems to be something many are getting in council not sure if it has effected game play though. If i notice anything I will post it
06.02 14:12:26 [Server] INFO BKCommonLib version 1.45 enabled! (0.015s) 06.02 14:12:26 [Server] SEVERE Common.VERSION needs to be updated to contain '145'! 06.02 14:12:26 [Server] INFO BKCommonLib is running on Minecraft v1_4_R1 06.02 14:12:26 [Server] INFO Enabling BKCommonLib v1.45
Thanks
-
View User Profile
-
Send Message
Posted Feb 6, 2013With the new craftbukkit I get a new error on this plugin: link
-
View User Profile
-
Send Message
Posted Feb 5, 20131) go to your plugins folrder and find BKCommonLib.jar
2) right cick it and open iwth with win-rar or 7-zip
3) double click the plugin.yml fiel to edit it (or drag it to your desktop and open with notepad)
4) change the version to 1.44
5) save your changed and i case you edited it on your desktop, re-add it to your jar file.
The above steps fix the below issue as Hsking11 mentioned.
13:39:11 [INFO] [BKCommonLib] Enabling BKCommonLib v1.45
13:39:11 [INFO] [BKCommonLib] BKCommonLib is running on Minecraft v1_4_R1
13:39:11 [SEVERE] [BKCommonLib] Common.VERSION needs to be updated to contain '145'!
13:39:11 [INFO] BKCommonLib version 1.45 enabled! (0.015s)
--------------------------
It was originally set to 1.45 an I changed it to 1.44, as for where I got this version giving me the error was on this very page labeled 1.44.
-
View User Profile
-
Send Message
Posted Feb 5, 2013@Cuerdas
@Waterdust2000
Strange.. I'm not getting those errors..
Using Latest jenkins build #54 and craftbukkit 1.47-R1.0
Are you guys using the latest one on bukkit dev? If so it has already been addressed by lennis some pages back. Here is what was said to fix.
-
View User Profile
-
Send Message
Posted Feb 4, 2013Error using the last version:
Common.VERSION need to be updated to contain '145'!
-
View User Profile
-
Send Message
Posted Feb 3, 2013@StreetDancer1
Use 1.4.7-R1.0. It works for me, plus it's a recommended build.
-
View User Profile
-
Send Message
Posted Feb 3, 2013not working for 1.4.7-R1.0
-
View User Profile
-
Send Message
Posted Feb 2, 2013@WoZo
that handles all tasks
So in nolagg that little task in bkc handles all chunks,
hope that makes sense.
-
View User Profile
-
Send Message
Posted Feb 1, 2013The only plugin I use that uses this is NoLagg. I'm getting super processing from this task:
Total duration: 3165.35 ms / 500 ticks Average duration: 6.331 ms/tick Selected task: Task #33 Plugin: BKCommonLib Location: com.bergerkiller.bukkit.common.internal.CommonPlugin$NextTickHandler
Any ideas to lower this? Much appreciated.
-
View User Profile
-
Send Message
Posted Feb 1, 2013@Liger_XT5
If Spigot actualy ignore NMS its not going to work properly
-
View User Profile
-
Send Message
Posted Feb 1, 2013@lenis0012
I do not use CB due to the issues they have caused to most plugin authors. I use Spigot. I'm using the newest RB they have out. NoLagg and BK were working just fine last few days up ontil last night. I haven't updated Spigot in a couple weeks. I assume the update to both NoLagg and BK no longer work backwards a version or two any more.
-
View User Profile
-
Send Message
Posted Feb 1, 2013@lenis0012
Thx! - Good news !! ;)
-
View User Profile
-
Send Message
Posted Feb 1, 2013Our jenkins is back ;)
BKCommonLib-1.45 available on Jenkins.
-
View User Profile
-
Send Message
Posted Feb 1, 2013@Liger_XT5
BKCommonLib and NoLagg are searching for the class path wtih 1_4_R1
that is from 1.4.7-R1.0
you run 1.4.6
update craftbukkit
-
View User Profile
-
Send Message
Posted Jan 31, 2013Recently been having issues getting NoLagg to work. Come to find out, BKCommonLib is not wanting to load. We're having some lag issues and could really use NoLagg to figure out what's wrong.
/ver: This server is running CraftBukkit version git-Spigot-1.4.6-R0.3-23-g5bcb87d (MC: 1.4.6) (Implementing API version 1.4.6-R0.4-SNAPSHOT)
-
View User Profile
-
Send Message
Posted Jan 31, 2013@lenis0012
Yep, notice my edit. I've installed r1.0 and it works fine with that. Thanks.
-
View User Profile
-
Send Message
Posted Jan 31, 2013@D1G1T4L3CH0
@SkinCells
Read a few comments back, it shoudl show you wich version of bkc is compatible with wich version of CB
Woof Woof.
-
View User Profile
-
Send Message
Posted Jan 31, 2013I am getting exactly the same thing as SkinCells for this plugin.
09:48:13 [INFO] This server is running CraftBukkit version git-Bukkit-1.4.7-R0.1-b2602jnks (MC: 1.4.7) (Implementing API version 1.4.7-R0.1)
Plugin v1.44 for CB 1.4.7-R0.1 Jan 22, 2013
EDIT: I just realized that I have been relying on a script I made to update my server that was only downloading from the beta channel. There has been a release now for 1.4.7. R1.0. This plugin works with that version. So if you are updating to beta, you won't get this release until you download it on the release channel. http://forums.bukkit.org/threads/craftbukkit-1-4-7-r1-0-is-now-available.126435/
-
View User Profile
-
Send Message
Posted Jan 30, 2013I get this, whenever I try to run my server with BKCommands. http://pastie.org/pastes/5976205/text
I have the newest version of both Bukkit & BKCommands.