Skip to content
This repository has been archived by the owner on Jul 1, 2018. It is now read-only.
SquidDev edited this page Sep 22, 2016 · 4 revisions

CCTweaks-Lua is a set of modifications to ComputerCraft's core. If you are looking for modifications to ComputerCraft's gameplay checkout the main CCTweaks mod.

These modifications are designed to be suitable for Minecraft and emulators alike. For a feature list see the Read Me.

Configuring CCTweaks from Minecraft

All config options can be set from the GUI (Mod Options -> CCTweaks -> Config) or from the config/CCTweaks.cfg file. The dot symbolises a child group. For instance APIs.Data.enabled is the enabled option inside the Data category inside the APIs category.

Configuring CCTweaks from the command line

All config options can be set using Java properties. Each config option should be prefixed with cctweaks.. You can set a value using = on *Nix systems and : on Windows systems.

To set APIs.Data.enabled to true you would do:

  • Windows: -Dcctweaks.APIs.Data.enabled:true
  • *Nix: -Dcctweaks.APIs.Data.enabled=true