⭐ ChunkyOffline ⭐
🟡 Updated this year🖼️ Gallery (1 images)
🔍 Analysis
- 👍 0.1% endorsement rate
- 🏆 #1550 of 1560 bukkit mods in this game by downloads
📋 About This Mod
<p align="center"> <a alt="Supports Minecraft 1.21.x" title="Go to Minecraft's Server download site" href="https://www.minecraft.net/en-us/download/server" > <img alt="Supported Minecraft Version" src="https://img.shields.io/badge/Minecraft-1.21.x-69986a" /></a> <img alt="GitHub Release (latest)" src="https://img.shields.io/github/v/release/X00LA/ChunkyOfflinePlugin"> <img alt="GitHub Downloads (all assets, all releases)" src="https://img.shields.io/github/downloads/X00LA/ChunkyOfflinePlugin/total" /> <img alt="GitHub Downloads (latest)" src="https://img.shields.io/github/downloads/X00LA/ChunkyOfflinePlugin/latest/total"> <a alt="SpigotMC" title="Go to SpigotMC's download site" href="https://hub.spigotmc.org/jenkins/" > <img alt="Supports SpigotMC" src="https://img.shields.io/badge/Supports-SpigotMC-gold?style=flat-square" /></a> <a alt="Supports PaperMC" title="Go to PaperMC's download site" href="https://papermc.io/downloads/paper" > <img alt="Supports PaperMC" src="https://img.shields.io/badge/Supports-PaperMC-blue" /></a> <a alt="Supports Folia" title="Go to Folia's download site" href="https://papermc.io/downloads/folia"> <img alt="Supports Folia" src="https://img.shields.io/badge/Supports-Folia-green" /></a> <a alt="Supports PurPur" title="Go to Purpur's download site" href="https://purpurmc.org/download/purpur"> <img alt="Supports Purpur" src="https://img.shields.io/badge/Supports-PurPur-a947ff" /></a> </p> <p align="center"> <a alt="Ko-Fi Donation Link" title="Support me on Ko-Fi" href="https://ko-fi.com/Y8Y1RKLT1"> <img alt="Ko-Fi Donation Banner" src="https://ko-fi.com/img/githubbutton_sm.svg" /></a> </p> # ChunkyOffline Plugin A Paper plugin for offline chunk generation using the Chunky plugin. This plugin is fully compatible with Folia. ## Features - **Automatic Offline Generation**: Automatically generates chunks when no players online and pauses generation when a player joins the server - **Configurable**: Set custom radius and center coordinates - **Full Control**: Start, pause, resume, and cancel chunk generation - **Global Messages**: Optional broadcast messages for generation events in your language - **Folia Compatible**: Fully async-safe implementation - **Permission Support**: Full LuckPerms and other permission plugin support ## Currently implemented languages - English - German If you want your language be supported, fork the repo and create a new language file. Then send a pull request and I gladly add your language to the plugin. ## Requirements - Paper/Folia/Spigot/Purpur 1.21.11+ - (https://modrinth.com/plugin/chunky) plugin (1.3.152+) - Java 21+ ## Installation 1. Download the plugin JAR file 2. Place it in your `plugins/` directory 3. Restart your server ## Configuration The plugin creates a `config.yml` file in the `plugins/ChunkyOffline/` directory. ### Default Configuration ```yaml # ChunkyOffline Configuration # This file contains the settings for offline chunk generation # Language Settings # Supported languages: en (English), de (German) # You can add custom languages by creating JSON files in the lang/ folder language: en chunk-generation: # Radius for chunk generation (in blocks) radius: 10000 # Center coordinates for chunk generation center: x: 0 z: 0 ``` ## Commands All commands require the corresponding permission or OP level. ### Start Generation ``` /chunkyoffline start /co start ``` Permission: `chunkyoffline.admin.start` ### Pause Generation ``` /chunkyoffline pause /co pause ``` Permission: `chunkyoffline.admin.pause` ### Resume Generation ``` /chunkyoffline resume /co resume ``` Permission: `chunkyoffline.admin.resume` ### Cancel Generation ``` /chunkyoffline cancel /co cancel ``` Permission: `chunkyoffline.admin.cancel` ### Configure Settings ``` /chunkyoffline config set radius 10000 /chunkyoffline config set center-x 0 /chunkyoffline config set center-z 0 /chunkyoffline config set global-messages true /chunkyoffline config get radius /chunkyoffline config get center-x /chunkyoffline config get center-z /chunkyoffline config get global-messages ``` Permission: `chunkyoffline.admin.config` ## Permissions | Permission | Default | Description | |---|---|---| | `chunkyoffline.admin.start` | OP | Start chunk generation | | `chunkyoffline.admin.pause` | OP | Pause chunk generation | | `chunkyoffline.admin.resume` | OP | Resume chunk generation | | `chunkyoffline.admin.cancel` | OP | Cancel chunk generation | | `chunkyoffline.admin.config` | OP | Configure plugin settings |
# ChunkyOffline Plugin
A Paper plugin for offline chunk generation using the Chunky plugin. This plugin is fully compatible with Folia.
## Features
- Automatic Offline Generation: Automatically generates chunks when no players online and pauses generation when a player joins the server
- Configurable: Set custom radius and center coordinates
- Full Control: Start, pause, resume, and cancel chunk generation
- Global Messages: Optional broadcast messages for generation events in your language
- Folia Compatible: Fully async-safe implementation
- Permission Support: Full LuckPerms and other permission plugin support
## Currently implemented languages
- English
- German
If you want your language be supported, fork the repo and create a new language file. Then send a pull request and I gladly add your language to the plugin.
## Requirements
- Paper/Folia/Spigot/Purpur 1. 21. 11+
- (https://modrinth.com/plugin/chunky) plugin (1. 3. 152+)
- Java 21+
## Installation
1. Download the plugin JAR file 2. Place it in your `plugins/` directory 3. Restart your server
## Configuration
The plugin creates a `config.yml` file in the `plugins/ChunkyOffline/` directory.
### Default Configuration
```yaml # ChunkyOffline Configuration # This file contains the settings for offline chunk generation
# Language Settings # Supported languages: en (English), de (German) # You can add custom languages by creating JSON files in the lang/ folder language: en
chunk-generation: # Radius for chunk generation (in blocks) radius: 10000 # Center coordinates for chunk generation center: x: 0 z: 0 ```
## Commands
All commands require the corresponding permission or OP level.
### Start Generation ``` /chunkyoffline start /co start ``` Permission: `chunkyoffline.admin.start`
### Pause Generation ``` /chunkyoffline pause /co pause ``` Permission: `chunkyoffline.admin.pause`
### Resume Generation ``` /chunkyoffline resume /co resume ``` Permission: `chunkyoffline.admin.resume`
### Cancel Generation ``` /chunkyoffline cancel /co cancel ``` Permission: `chunkyoffline.admin.cancel`
### Configure Settings ``` /chunkyoffline config set radius 10000 /chunkyoffline config set center-x 0 /chunkyoffline config set center-z 0 /chunkyoffline config set global-messages true
/chunkyoffline config get radius /chunkyoffline config get center-x /chunkyoffline config get center-z /chunkyoffline config get global-messages ``` Permission: `chunkyoffline.admin.config`
## Permissions
| Permission | Default | Description | |---|---|---| | `chunkyoffline.admin.start` | OP | Start chunk generation | | `chunkyoffline.admin.pause` | OP | Pause chunk generation | | `chunkyoffline.admin.resume` | OP | Resume chunk generation | | `chunkyoffline.admin.cancel` | OP | Cancel chunk generation | | `chunkyoffline.admin.config` | OP | Configure plugin settings |
📊 Mod Details
- Game
- Minecraft Plugins
- Author
- MrPeanut
- Version
- v1.1.5-SNAPSHOT
- Downloads
- 1,088
- Endorsements
- 1
- Category
- bukkit
- Created
- 2/2/2026
- Updated
- 2/1/2026
- Game Versions
- 1.21, 1.21.1, 1.21.2, 1.21.3, 1.21.4
- Tags
- optimization
🔧 How to Install Minecraft Plugins Mods
Download from Modrinth. Use Prism Launcher or drop into your mods folder.
📖 Full step-by-step install guide for Minecraft Plugins →
Visit the official mod page for specific installation instructions for this mod.
🎮 Need cheat codes or console commands? Check ur gaming wiki for Minecraft Plugins commands, item IDs, and more.
❓ Frequently Asked Questions
Which Minecraft Plugins versions does ⭐ ChunkyOffline ⭐ support?
The author lists 1.21, 1.21.1, 1.21.2, 1.21.3, 1.21.4, 1.21.5. Other versions may work but are untested by the author.
What is the latest version of ⭐ ChunkyOffline ⭐?
Version v1.1.5-SNAPSHOT, published 2026-02-01 with 1,088 downloads recorded at the source.
Keep browsing — more Minecraft Plugins mods await
