CaptureZones adds configurable capture-zone gameplay to Minecraft servers:
- Circle and cuboid zones
- Per-zone rules and rewards
- Optional KOTH mode
- Reinforcements, shops, statistics, holograms, map integrations
- Towny-aware or standalone ownership modes
This README is intentionally short. Full documentation lives in the wiki.
If you like CaptureZones and want it to get better, please consider becoming a sponsor on GitHub or Patreon! All sponsors recieve access to all premium addons. List of premium addons:
- CZPanels - companion plugin for CaptureZones that self-hosts a built-in web admin panel with full control over the plugin and statistics. Becoming a sponsor: - Patreon - Github
- Put the plugin jar in
plugins/. - Start server once.
- Edit
plugins/CaptureZones/config.yml. - Use
/cap helpin game.
Wiki:
- Wiki Home
- Installation
- Command Reference
- Permission Reference
- Global Config Reference
- Per-Zone Config Reference
- Setup Guides
- KOTH Mechanics
- Shops
- Discord
- PlaceholderAPI
- Repair and Migration
- Troubleshooting
GitHub wiki:
- Java 17+
- Paper/Spigot 1.20+
Optional integrations:
- Towny
- Vault + economy plugin
- Dynmap
- BlueMap
- PlaceholderAPI
- MythicMobs
- WorldGuard
CaptureZones now registers a Bukkit service for addon plugins:
- Service interface:
com.logichh.capturezones.api.CaptureZonesApi - Result type:
com.logichh.capturezones.api.CaptureZonesActionResult - API version constant:
CaptureZonesApi.API_VERSION
RegisteredServiceProvider<CaptureZonesApi> rsp =
Bukkit.getServicesManager().getRegistration(CaptureZonesApi.class);
CaptureZonesApi api = rsp == null ? null : rsp.getProvider();Your addon should declare a dependency on CaptureZones in its own plugin.yml:
depend: [CaptureZones]- Full snapshots: overview, zones, active captures, KOTH, shops, statistics, configs, data files.
- Mutations/actions: zone lifecycle, capture controls, KOTH controls, shop controls, stats controls, config writes/reloads.
- Capability discovery via
getCapabilities()so addons can feature-gate safely.
mvn clean package- Wiki: https://github.com/logichh/capturezones/wiki
- Discord: https://discord.gg/t96nrf7Nav
- Patreon: https://www.patreon.com/cw/logich
- GitHub Sponsors: https://github.com/sponsors/logichh
