Skip to content

Releases: THEzombiePL/ZCore

Release list

ZCore v1.0.0

Choose a tag to compare

@github-actions github-actions released this 07 Jan 11:34

🎯 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 support
  • MessageManager - Multi-language message system
  • ConfigManager - Enhanced config handling

📥 Installation (Server Owners)

  1. Download ZCore-1.0.0.jar
  2. Place in your plugins/ folder
  3. 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