SquidDev-CC / CCTweaks

Random additions to ComputerCraft (somewhat deprecated, use CC-Tweaked if you're on Minecraft 1.12).
MIT License
12 stars 2 forks source link
cctweaks computercraft forge minecraft minecraft-forge minecraft-mod

CCTweaks Build Status

Miscellaneous changes for ComputerCraft

Important!

CCTweaks is a core mod and makes modifications to the internals of ComputerCraft. Whilst the mod is thoroughly tested there may be issues. If you encounter any bugs report them here and not on the ComputerCraft issue tracker. This will ensure a faster response time and will ensure you do not frustrate DanTwoHundred.

Thanks :smile:!

Features

Programming (More up-to-date list here)

Turtles

Networking

More

Contributing

Code and dependencies:

You'll need Git installed. If you are using Windows, replace ./gradlew with gradlew.bat

Because of how the CCTweaks works, you may experience issues using the built in IDE tasks to run this project.

Including in your own project

CCTweaks is available on Maven. To include it in your project you will need the following code:

repositories {
    // Holds the main CCTweaks code
    maven {
        name = "squiddev"
        url = "https://dl.bintray.com/squiddev/maven"
    }
}

dependencies {
    compile "org.squiddev:CCTweaks:${mc_version}-${cctweaks_version}:dev"
}