Logo
MINECRAFTBIBLE
Items
Items

All game items

Blocks
Blocks

Building blocks

Mobs
Mobs

Creatures & monsters

Biomes
Biomes

World biomes

Structures
Structures

Generated structures

Recipes
Recipes

Crafting guides

Advancements
Advancements

Achievements

Loot Tables
Loot Tables

Drop rates

Tags
Tags

Item groupings

All Versions
View all data →
Capes
Cape ArchiveNEW

Browse rare Minecon capes, OptiFine capes, and custom capes from players worldwide

Browse

Player Database
Player DatabasePopular

Search any player

Skin Browser
Skin Browser

Browse & download skins

Cape Gallery
Cape GalleryNEW

Minecon & OptiFine capes

Seed Vault
Seed Vault

Curated seeds

Learn

Guides
GuidesNew

Tutorials & tips

Blog
Blog

News & updates

Community

Community Hub
Community HubHub

Posts, discussions & more

All Versions
View community →
Seed Analyzer
Seed Analyzer

World seed analysis

Loot Explorer
Loot Explorer

Drop rates

Crafting Calculator
Crafting Calculator

Material planning

Enchant Calculator
Enchant Calculator

Probability math

Redstone Lab
Redstone Lab

Signal timing

Trading Profit
Trading Profit

Villager ROI

All Versions
View all tools →
Mods
Mods

Browse all mods

Plugins
Plugins

Server plugins

Resource Packs
Resource Packs

Textures & sounds

Shaders
Shaders

Visual enhancements

Datapacks
Datapacks

World logic

Scanner
Mod Intelligence

Scan & analyze any mod

All Versions
View all mods →
Loading...
IntroductionIntroductionVersion HistoryVersion HistoryGuidesGuidesBlog & NewsBlog & News
ItemsItemsBlocksBlocksMobsMobsRecipesRecipesBiomesBiomesStructuresStructuresAdvancementsAdvancementsLoot TablesLoot TablesTagsTags
ModsModsPluginsPluginsResource PacksResource PacksShadersShadersDatapacksDatapacks

MinecraftBible

The Ultimate Wiki

Logo
MINECRAFTBIBLE

The ultimate Minecraft reference. Every item, block, mob, and recipe documented with precision.

Community

  • Skin Browser
  • Cape Gallery
  • Seed Vault
  • Blog
  • Guides

Database

  • Items
  • Blocks
  • Mobs
  • Recipes
  • Biomes
  • Structures

Tools

  • Seed Analyzer
  • Mod Intelligence
  • Crafting Calculator
  • Enchant Calculator

Mods & Packs

  • Mods
  • Plugins
  • Resource Packs
  • Shaders
  • Datapacks

Site & Legal

  • About
  • Authors
  • Editorial Policy
  • Corrections
  • Contact
  • Privacy Policy
  • Terms of Service
  • DMCA
  • Sitemap

© 2026 MinecraftBible. Not affiliated with Mojang or Microsoft.

PrivacyTermsContact
Ultimate Chunk Loader
PluginMIT

Ultimate Chunk Loader

Powerful chunk loader with GUI management, coordinate & WorldEdit support, and persistent storage.

369
Downloads
0
Followers
6 months ago
Updated
📦
2
Versions
game-mechanicsmanagementutilitypaperspigot
Download Latestv1.0.1View on Modrinth

📖About Ultimate Chunk Loader

A powerful plugin for Paper and Spigot that keeps chunks loaded using coordinate-based regions or WorldEdit selections.

Features

  • Interactive GUI - Easy-to-use graphical interface for managing chunk loaders
  • Keep chunks loaded permanently across server restarts
  • Create chunk loaders using coordinates (x1, z1, x2, z2)
  • Create chunk loaders from WorldEdit selections (optional)
  • Name your chunk loader regions for easy management
  • Enable/disable chunk loaders without removing them
  • Persistent data storage (survives server restarts)
  • Permission-based access control
  • List and view information about all chunk loaders with their status

Installation

  1. Download the latest UltimateChunkLoader.jar
  2. Place it in your server's plugins/ folder
  3. (Optional) Install WorldEdit for selection-based chunk loading
  4. Restart your server
  5. Configure permissions if needed (all commands default to OP)

Commands

All 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 data

Permissions

  • chunkloader.* - 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)

Usage Examples

Using the GUI (Recommended)

The easiest way to manage your chunk loaders is through the GUI:

/chunkloader gui

In the GUI:

  • Green wool = Enabled chunk loader
  • Red wool = Disabled chunk loader
  • Left Click - View detailed information
  • Right Click - Toggle enable/disable
  • Shift + Left Click - Remove (with confirmation)

Create a chunk loader using coordinates

/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).

Create a chunk loader using WorldEdit selection

  1. Make a WorldEdit selection (//wand, then left-click and right-click)
  2. Run: /chunkloader create myregion worldedit

List all chunk loaders

/chunkloader list

View information about a specific chunk loader

/chunkloader info spawn

Remove a chunk loader

/chunkloader remove spawn

Disable a chunk loader temporarily

/chunkloader disable spawn

This unloads the chunks but keeps the region configuration saved, so you can re-enable it later.

Enable a previously disabled chunk loader

/chunkloader enable spawn

Configuration

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!"

Data Storage

Chunk loader data is stored in plugins/ChunkLoader/data.yml and persists across server restarts. The plugin automatically saves when:

  • A chunk loader is created
  • A chunk loader is removed
  • The server shuts down

Requirements

  • Paper 1.21+ or Spigot 1.21+ (or compatible forks)
  • WorldEdit (optional, for selection-based loading)

How It Works

The plugin uses Minecraft's chunk ticket system to keep chunks loaded:

  • addPluginChunkTicket() - Registers the plugin's interest in a chunk
  • setForceLoaded(true) - Ensures the chunk stays loaded

Chunks remain loaded even when no players are nearby, making this perfect for farms, redstone contraptions, or any automated systems.

License

This project is licensed under the MIT License - see the LICENSE file for details.

👥 Team & Contributors

m2b-creator
m2b-creatorOwner

⚙️ Compatibility

Environment
🖥️ Server-side
Loaders
paperspigot
Minecraft Versions
1.211.21.11.21.21.21.31.21.41.21.51.21.61.21.7+3 more

🔗 Links

Modrinth Page