Some useful code I have for the mod CC:Tweaked
Find a file
Emerson Rosen-Jones ea9bd903ac Some tweaks to mine.lua.
- Checks for movement success now, tries to ensure movement even if a block
  falls in front of the turtle.
- Fixed the bug for depths of 1 mod 3 leaving a plane of blocks.
2025-09-27 23:10:55 -04:00
clock-chime.lua Tweaked clock-chime.lua to hopefully be more robust. 2025-08-20 22:39:19 -04:00
compacting-storage.lua Fixed bug with the fix from last patch. 2025-09-15 20:19:34 -04:00
fetch.lua fetch.lua, a program fetching utility 2025-08-18 17:23:16 -04:00
irongen.lua Reworked irongen.lua 2025-08-08 21:40:47 -04:00
mine.lua Some tweaks to mine.lua. 2025-09-27 23:10:55 -04:00
quarry_control.lua Program to control a create quarry 2025-08-09 01:08:47 -04:00
README.md Added a README explaining how this all works 2025-08-18 17:26:14 -04:00

Lua Code for CC Tweaked

This repo contains Lua code for my use in modded minecraft.

Get Started

To get started, download the "fetch" program with the following line in the lua interpreter:

file = fs.open("fetch.lua", "w"); file.write(http.get("https://git.emersonmakes.com/filigreed/cc-stuff/raw/branch/main/fetch.lua").readAll()); file.close()