diff --git a/src/brulijam/t-fiboMiner.lua b/src/brulijam/t-fiboMiner.lua index 379e593..b289d94 100755 --- a/src/brulijam/t-fiboMiner.lua +++ b/src/brulijam/t-fiboMiner.lua @@ -240,7 +240,7 @@ local function mineRow() --inventoryRework() --only needed when ore found --clearInventory() - --checkInventory() + --checkInventory()ußgelder zwischen 10 und 80 --save path progress state["dataCurrentPathProgress"] = i+1 diff --git a/src/brulijam/turtle-roomCreator.lua b/src/brulijam/turtle-roomCreator.lua index 572e52a..a6fc109 100755 --- a/src/brulijam/turtle-roomCreator.lua +++ b/src/brulijam/turtle-roomCreator.lua @@ -1,3 +1,5 @@ +basic = require("lib.basic") + function excavate(depth, width, height) -- Digging loop for h = 1, height do @@ -40,4 +42,17 @@ function excavate(depth, width, height) for h=1, height do turtle.down() end -end \ No newline at end of file +end + + +basic.clearDisplay() +print("[Digs a Quader]") +write("depth: ") +depth = tonumber(read()) +write("width: ") +width = tonumber(read()) +write("height: ") +height = tonumber(read()) +basic.clearDisplay() + +excavate(depth, width, height) \ No newline at end of file