Advertisement
MigasRocha

CarrotFarmer with Clock/Computer ID:0

Dec 26th, 2024
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.14 KB | Gaming | 0 0
  1. --Real Life Clock--
  2.  
  3. x = 0
  4.  
  5. local function getRealTime()
  6.     local time = os.date("*t")
  7.     return time
  8. end
  9.  
  10. function Harvest()
  11.     local sucess, data = turtle.inspect()
  12.      
  13.     if sucess == true then
  14.         if data.name == "ae2:quartz_cluster" then
  15.             turtle.dig()
  16.             turtle.place()
  17.             term.setCursorPos(1,2)
  18.             textutils.slowPrint("Cluster Ready")
  19.         end
  20.     end
  21. end
  22. ---starts on the left---
  23.  
  24. while true do
  25.  
  26.         if x == 0 then
  27.             Harvest()
  28.             turtle.turnRight()
  29.             turtle.forward()
  30.             turtle.turnLeft()
  31.             x = x + 1
  32.         end
  33.  
  34.         if x == 1 then
  35.             Harvest()
  36.             turtle.turnLeft()
  37.             turtle.forward()
  38.             turtle.turnRight()
  39.             x = x - 1
  40.         end
  41.  
  42.         if turtle.getItemCount(1) == 64 then
  43.             turtle.dropUp()
  44.         end
  45.  
  46.         local currentTime = getRealTime()
  47.                
  48.                         if currentTime.hour == 04 and currentTime.min >= 50 then
  49.                             sleep(5000)
  50.                         end
  51.   end                    
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement