Advertisement
KroNixZ

Industrial Hemp EMC Farm

Nov 4th, 2023 (edited)
784
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.39 KB | None | 0 0
  1. -- uses the turtle to harvest hemp fibre and puts it in an emc thing to produce emc
  2.  
  3. x=2 --seconds to sleep
  4.  
  5. function harvest()
  6.     turtle.dig()
  7.     turtle.suck()
  8. end
  9.  
  10. function genemc()
  11.     turtle.select(1)
  12.     turtle.dropUp()
  13.     turtle.select(2)
  14.     turtle.dropUp()
  15.     turtle.select(3)
  16.     turtle.dropUp()
  17.     turtle.select(1)
  18. end
  19.  
  20. while true do
  21.     harvest()
  22.     turtle.turnRight()
  23.     genemc()
  24.     sleep(x)
  25. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement