ComputerCraft: TweakedLua programmable computers, monitors, turtles — automate anything via code
About
CC: Tweaked is the modern continuation of ComputerCraft. You craft a Computer block, type Lua programs into it, and it interacts with the world: read/write disks, control redstone, drive Monitors (multi-block screens), and command Turtles (mobile blocks that can mine, place, move, attack). Wireless Modems connect computers; Networking Cable lets you build LAN. With Advanced Peripherals (also in pack) it talks to AE2, RS, chat, and player position.
Things to do
- Craft a Computer + Disk Drive → start writing programs
- Turtle (Mining Turtle) → autonomous mining
- Monitors → in-base display showing stockpiles, power, time
- Pocket Computer for portable Lua
- Integrate with Storage / Power / Chat (see Advanced Peripherals page)
Getting started
Boot a Computer, type edit hello → write a Lua program → run hello. Hold a Redstone Signal off side X for 5 seconds: redstone.setOutput("right", true); os.sleep(5); redstone.setOutput("right", false). The in-game help is comprehensive.