From 779385271aa520a66a4a25e2515879288fc89c7b Mon Sep 17 00:00:00 2001 From: Emerson Rosen-Jones Date: Mon, 18 Aug 2025 17:26:14 -0400 Subject: [PATCH] Added a README explaining how this all works --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..f68a096 --- /dev/null +++ b/README.md @@ -0,0 +1,11 @@ +# 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: +```lua +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() +```