Added instructions to skystone drill gui skystone
authorOlav Bakke Svendsen <mail@olavbs.no>
Thu, 30 May 2024 13:26:41 +0000 (15:26 +0200)
committerOlav Bakke Svendsen <mail@olavbs.no>
Thu, 30 May 2024 13:26:41 +0000 (15:26 +0200)
skystone/stock-redstone.lua

index 05f25321706b8523df716b053a5d4893bbba74be..d41268c3c88a0af1f3ecbfbcafd142181639703c 100644 (file)
@@ -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 = {}