๐ฏ ZCore v1.0.0
Minecraft Compatibility: 1.8 - 1.21+
Java Version: 8+
๐ฆ What's Included
ZCore is a utility library plugin providing shared dependencies and helper classes for Minecraft plugins.
Bundled Libraries:
- โจ Adventure API 4.17.0 (text components)
- ๐ Adventure MiniMessage 4.17.0 (modern formatting)
- ๐ Adventure Legacy Serializer 4.17.0 (legacy color codes)
- ๐ฎ Adventure Platform Bukkit 4.3.4 (MC 1.8+ support)
- ๐ BoostedYAML 1.3.7 (config management)
- ๐ง org.json 20240303 (JSON parsing)
Utility Classes:
ColorUtil- Smart text colorization with hex supportMessageManager- Multi-language message systemConfigManager- Enhanced config handling
๐ฅ Installation (Server Owners)
- Download
ZCore-1.0.0.jar - Place in your
plugins/folder - Restart the server
Note: This is a library plugin - it provides functionality for other plugins!
๐จโ๐ป For Developers
Add ZCore as a dependency using JitPack:
repositories {
maven { url = 'https://jitpack.io' }
}
dependencies {
compileOnly 'com.github.THEzombiePL:ZCore:v1.0.0'
}plugin.yml:
depend: [ZCore]Usage Example:
import me.thezombiepl.plugin.zcore.utils.ColorUtil;
import net.kyori.adventure.text.Component;
Component message = ColorUtil.colorize("<gradient:red:blue>Rainbow text!");
player.sendMessage(message);๐ Documentation
๐ Report Issues
Found a bug? Open an issue