A collection of ComputerCraft scripts.
The goal of this project is to create and maintain a collection of well assembled and thoughtfully documented Lua scripts for use within the excellent ComputerCraft mod for Minecraft.
-
Open the Lua interpreter on your in-game computer:
lua -
Ensure your server has the HTTP API enabled. You can test it with this code snippet:
assert(http, "No HTTP for you!")
If your server doesn't have the HTTP API enabled, have an admin check the ComputerCraft configuration files and enable it from there. -
Enter the following snippet to download the installation:
loadstring(http.get("https://raw.github.com/cc-scripts/cc-scripts/master/bootstrap.lua").readAll())(exit) -
Follow the instructions given by the installer and you should be good to go!
Report any and all problems at the the cc-scripts Github Issues page: https://github.com/damien/cc-scripts/issues
For those savvy with Github: Fork this repo, add your script and/or API and send me a pull request!
For those of you who aren't familiar with Github, you can do the following:
- Take a look around the code on the cc-scripts GitHub page, make sure you're not submitting something we already have unless you feel it's a drastic improvement to what's there already!
- Upload your Lua code as a Gist
- Create a new issue here, be sure to include a link to the Gist you created!
- That's it! Be prepared for some dialogue; you may be asked to make changes before your scripts are accepted!
To all of our contributors: We love you! You make cc-scripts more awesome with every new submission!