A powerful Minecraft plugin for Paper and Spigot that keeps chunks loaded using coordinate-based regions or WorldEdit selections.
UltimateChunkLoader.jarplugins/ folderAll commands can be used with /chunkloader, /cl, or /cloader
/chunkloader gui or /chunkloader menu - Open the GUI management menu/chunkloader create <name> <x1> <z1> <x2> <z2> - Create a chunk loader using block coordinates/chunkloader create <name> worldedit - Create a chunk loader from your WorldEdit selection/chunkloader remove <name> - Remove a chunk loader/chunkloader enable <name> - Enable a disabled chunk loader/chunkloader disable <name> - Disable a chunk loader without removing it/chunkloader list - List all chunk loaders with their status/chunkloader info <name> - View detailed information about a chunk loader/chunkloader reload - Reload the plugin configuration and datachunkloader.* - Access to all commands (default: op)chunkloader.create - Create chunk loaders (default: op)chunkloader.remove - Remove chunk loaders (default: op)chunkloader.enable - Enable chunk loaders (default: op)chunkloader.disable - Disable chunk loaders (default: op)chunkloader.list - List chunk loaders (default: op)chunkloader.info - View chunk loader information (default: op)chunkloader.gui - Use the GUI menu (default: op)chunkloader.reload - Reload the plugin (default: op)The easiest way to manage your chunk loaders is through the GUI:
/chunkloader gui
In the GUI:
/chunkloader create spawn 0 0 64 64
This creates a chunk loader named "spawn" that keeps all chunks loaded between block coordinates (0, 0) and (64, 64).
//wand, then left-click and right-click)/chunkloader create myregion worldedit/chunkloader list
/chunkloader info spawn
/chunkloader remove spawn
/chunkloader disable spawn
This unloads the chunks but keeps the region configuration saved, so you can re-enable it later.
/chunkloader enable spawn
The plugin creates a config.yml file in plugins/ChunkLoader/ with the following options:
settings:
debug: false
auto-save-interval: 5
messages:
prefix: "&6[ChunkLoader]&r "
no-permission: "&cYou don't have permission to do that."
reload-success: "&aPlugin reloaded successfully!"
Chunk loader data is stored in plugins/ChunkLoader/data.yml and persists across server restarts. The plugin automatically saves when:
The plugin uses Minecraft's chunk ticket system to keep chunks loaded:
addPluginChunkTicket() - Registers the plugin's interest in a chunksetForceLoaded(true) - Ensures the chunk stays loadedChunks remain loaded even when no players are nearby, making this perfect for farms, redstone contraptions, or any automated systems.
This project is licensed under the MIT License - see the LICENSE file for details.