ComputerCraft Chunk Loader

Quick rating

ComputerCraft Chunk Loader

No reviews yet

Chunk-loading peripheral and turtle upgrade for Computer Craft. Made for Computer Craft 1.8 in MineCraft 1.12.2

QoL & Tweaks
Mod Loaders
Forge
Minecraft

Community voices

Reviews

Versions
Loading versions…
Match includes

Click once to include, again to exclude, again to clear

Rating Any
Any 0.5 1.0 1.5 2.0 2.5 3.0 3.5 4.0 4.5 5.0
Min
Max
Play Status
Reviews
Time Played
hrs+
Verified developers only
Has developer response
List view
Grid view
Compact view
Sort by
Date
Rating
Helpful
Unhelpful
Edited
Sort ascending
Delete this review?

This removes your review from the project. You can write a new review after.

Review submitted for moderation

Your review has been sent to moderators, who will check that it meets our guidelines before it appears publicly.

No reviews yet. Be the first to review this project!

Get it on

Available Platforms

About

Project Details

Type
Mod
Latest Version
cc_chunkloader-1.0.0.jar
Authors

For authors

Embed Badge

If you're the author of this project, you can embed a live badge anywhere that supports HTML or Markdown. It updates automatically whenever ratings change.

Custom banner text
ModDex rating badge preview

Use HTML for any page that supports it, or Markdown for README files and Markdown-based descriptions.

Identifiers

Platform IDs

CurseForge ID

Resources

External Links

Source Issues Wiki Discord

About

Description

Let your turtles and computers keep working when you’re not around.

This mod adds a chunk loader peripheral block for stationary ComputerCraft computers, and a turtle upgrade that makes chunk loading follow your turtle as it moves.

Optional admin password can be required to enable.

Server-side config lets you limit the number of active chunks per device.

Requirements

  • Minecraft 1.12.2
  • Forge Loader 14.23.5.2768+ (Tested on: 14.23.5.2860)
  • ComputerCraft 1.80pr1

Features

Chunk Loader Peripheral Block

  • Place the Cc Chunk Loader block on any side of a Computer or Advanced Computer.
  • From Lua, you can enable permanent chunk loading for the chunk where the computer is located.
  • See LUA script below

Turtle Upgrade

  • Merge the Cc Turtle Chunk upgrade onto the left or right side of a Turtle or Advanced Turtle.
  • From Lua, enable permanent chunk loading around the turtle. The loaded area automatically follows the turtle as it moves.
  • See LUA script below

Configurable Radius

  • Default radius = 0 (loads the current chunk only, with automatic chunk swapping as the turtle moves).
  • Radius can be increased:
    • 1 = 3×3 chunks
    • 2 = 5×5 chunks
    • etc.

HELP.txt / LUA Scripts

// =============================
// StiGMaT's Chunk Loader Addon for Computer Craft 1.8pr1
// For MineCraft 1.12.2 / Forge 1.12.2-14.23.5.2768
// This HELP file was last updated: 2025-09-03
// HELP.txt for Version 1.0.0-Beta.002
// =============================

Commands:
enableChunkLoader('Password') or enableCL('Password') //Password is optional, set in the Server Config
disableChunkLoader() or disableCL()
getStatus()

// =============================
// Lua usage examples (computers/turtles)
// Example ScriptsL TO enable Chunk Loader
// ============================= =============================


-- Stationary computer: (Standard/Advanced) With Peripheral: "Cc Chunk Loader" on attached to the side
-- https://pastebin.com/GC3REfDw
-- In Game command to download this: pastebin get GC3REfDw start_pc_cl
-- Then to run type: start_pc_cl
-- -----------------------------
local p = peripheral.find("CcChunkLoader")
if not p then error("No chunkloader peripheral found") end

-- Prompt for password
write("Enter password: ")
local password = read("*") -- use read() for visible input, read("*") hides it while typing

-- Try enabling with user-provided password
local ok, msg = p.enableChunkLoader(password)
print("enable:", ok, msg)

-- Show status
local status = p.getStatus and p.getStatus() or {}
print("status:", textutils.serialize(status))

-- Later, you can disable with:
-- p.disableChunkLoader()
-- End of: Stationary computer Example Script
-- -------------------------------------------------------------------
-- -------------------------------------------------------------------

-- Turtle (Merged with Chunk Loader upgrade item: "Cc Turtle Chunk")
-- https://pastebin.com/5rNAyGcU
-- In Game command to download this: pastebin get 5rNAyGcU start_turtle_cl
-- Then to run type: start_turtle_cl
-- -----------------------------
local p = peripheral.wrap("right")
local pFoundSide = ""
if not p then
print("No peripheral on right")
-- Try to find on the left
p = peripheral.wrap("left")
if not p then
print("No peripheral on left")
error("Chunk loader peripheral: NOT FOUND!")
else
pFoundSide = "left"
end
else
pFoundSide = "right"
end

if not p then
error("Chunk loader peripheral not found.")
else
print("Chunk loader found! On " .. pFoundSide .. " side.")

-- Prompt for password
write("Enter password: ")
local password = read("*") -- hides input while typing

-- Trying to Start Chunk Loader
local ok, msg = p.enableChunkLoader(password)
print("EnabledState:", ok, msg)

-- Debug getStatus
local status = p.getStatus and p.getStatus() or {}
print("getStatus:", textutils.serialize(status))
end

-- it will now follow the turtle until disabled/detached/dropped
-- End of: Turtle (Merged with Chunk Loader) Example Script
-- -------------------------------------------------------------------
-- -------------------------------------------------------------------

Screenshots

Gallery

This project has no gallery images yet.

Versions

Files

Relations

Project Relations

More like this

Similar Mods

Suggestions use data such as tags, dependencies, dependents, descriptions, titles, and more to rank how much they overlap with this mod.

On ModDex

Community snapshot

0
Ratings
0
Followers
0
In stacks

By the numbers

Statistics

<1,000
Downloads
Last Updated
Created
Last synced
When ModDex last fetched this project from CurseForge or Modrinth. Every project is re-checked on a schedule, and any project that ships a new file is synced automatically within hours of the release.
New file updates sync automatically
How syncing works