HomeJavaModsCCChunkloader
CCChunkloader
CCChunkloader — screenshot 1CCChunkloader — screenshot 2

CC Chunk Loader

A dynamic chunk loading mod for ComputerCraft turtles that goes beyond traditional always-on/always-off chunk loaders.

Why This Mod?

I wasn't happy with existing chunk loading options for ComputerCraft setups. Standard chunk loaders are either always active or completely off - there's no middle ground for dynamic, intelligent chunk management.

CC Chunk Loader solves this by giving turtles the ability to dynamically scale their chunk loading based on what they're actually doing, with remote management capabilities for distributed automation systems.

Core Features

🔄 Dynamic Chunk Loading

🔋 Fuel-Based Balancing

📡 Remote Management

⚙️ Smart Persistence

API Reference

Chunkloader Peripheral

local chunkloader = peripheral.find("chunkloader")

-- Core chunk loading control
chunkloader.setRadius(radius)           -- Set loading radius (0-2.5, 0 = disabled)
chunkloader.getRadius()                 -- Get current radius
chunkloader.getFuelRate()              -- Get fuel consumption per tick

-- Wake control
chunkloader.setWakeOnWorldLoad(boolean) -- Auto-resume on server restart
chunkloader.getWakeOnWorldLoad()        -- Check wake setting

-- Random tick control (for farms)
chunkloader.setRandomTick(boolean)      -- Enable random ticking (doubles fuel cost)
chunkloader.getRandomTick()            -- Check random tick status

-- Turtle identification
chunkloader.getTurtleIdString()         -- Get unique turtle ID for remote management

Chunkloader Manager Block

local manager = peripheral.find("chunkloader_manager")

-- Remote turtle management
manager.getTurtleInfo(turtleId)                    -- Get turtle status/stats
manager.setTurtleRadius(turtleId, radius)          -- Wake & control dormant turtles
manager.setTurtleWakeOnWorldLoad(turtleId, boolean) -- Control wake settings remotely
manager.getTurtleWakeOnWorldLoad(turtleId)         -- Check wake settings
manager.listTurtles()                              -- List all active turtles

Use Cases

🌾 Smart Farming Systems

📊 Monitoring Networks

Highlights

Configuration

All fuel costs and limits are configurable via in-game commands:

/ccchunkloader get <key>          # View current settings
/ccchunkloader set <key> <value>  # Modify settings
/ccchunkloader list               # Show all config values

Default Settings:

Advanced Features

Debug Commands

/ccchunkloader debug uuids        # List all tracked UUIDs
/ccchunkloader debug stats        # Show system statistics
/ccchunkloader debug orphans      # Find orphaned UUIDs

Remote Bootstrap


Perfect for: Dynamic automation systems, large-scale turtle networks, smart resource management, and anyone who wants intelligent chunk loading instead of static always-on solutions.

Quick facts

Install steps are the general flow for this file type — How to install Minecraft Java mods & modpacks walks through it step by step.

Verified by MCModsHub

These come from our own check of the pack file, not from the source page.

Explore more