commit c6f5787b65698347d794c3d5bfa029b57d01f7f2 Author: TriantaTV Date: Thu Sep 21 01:24:08 2023 -0500 Added basic build program diff --git a/build.lua b/build.lua new file mode 100644 index 0000000..548de84 --- /dev/null +++ b/build.lua @@ -0,0 +1,13 @@ +args = {...} +intLength = args[1] +intHeight = args[2] +for i=0, intHeight do + turtle.PlaceDown() + for j=0, intLength-1 do + turtle.forward() + turtle.placeDown() + end + turtle.up() + turtle.turnLeft() + turtle.turnLeft() +end