ComputerCraft RMS

Script Management

Floor build

-- Configuration
local blockName = "create:layered_andesite"
local fuelItem = "minecraft:coal" -- or "minecraft:charcoal" if preferred

-- Function to find a slot with the specified block
local functi...
Created: Apr 23, 2026 69 lines

Basic Miner

Basic mining script for turtles

-- Basic Mining Script
local function mine()
    while turtle.detect() do
        turtle.dig()
    end
    turtle.forward()
end

-- Main mining loop
for i = 1, 64 do
    mine()
    if turtle.detectUp(...
Created: Apr 23, 2026 25 lines

Tree Farm

Automated tree farming script

-- Tree Farming Script
local function plantTree()
    turtle.select(1) -- Sapling slot
    turtle.place()
end

local function harvestTree()
    while turtle.detect() do
        turtle.dig()
        tu...
Created: Apr 23, 2026 26 lines