From: Olav Bakke Svendsen Date: Thu, 30 May 2024 13:26:41 +0000 (+0200) Subject: Added instructions to skystone drill gui X-Git-Tag: skystone X-Git-Url: http://git.olavbs.no/?a=commitdiff_plain;h=6dc79ea4c46dc6ef96522e686bf012cc777b942e;p=cc.git Added instructions to skystone drill gui --- diff --git a/skystone/stock-redstone.lua b/skystone/stock-redstone.lua index 05f2532..d41268c 100644 --- a/skystone/stock-redstone.lua +++ b/skystone/stock-redstone.lua @@ -108,6 +108,21 @@ local status = function() term.blit("offline" ,"7777777", "fffffff") end + term.setCursorPos(1,9) + term.setTextColor(colors.gray) + print("Make sure the toggle switch is on. This enables") + print("drilling. Click start to trigger a drilling cycle.") + print("When the carriage returns, it triggers another") + print("cycle (immediately or when needed)") + print("Status messages explanation:") + print(" offline: drills will not drill.") + print(" standing by: waiting until lower limit reaced") + print(" before continuing to drill") + print(" working: drilling until upper limit reached.") + print(" stopped: something is wrong.") + term.setTextColor(colors.white) + + end local events = {}