Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- uses the turtle to harvest hemp fibre and puts it in an emc thing to produce emc
- x=2 --seconds to sleep
- function harvest()
- turtle.dig()
- turtle.suck()
- end
- function genemc()
- turtle.select(1)
- turtle.dropUp()
- turtle.select(2)
- turtle.dropUp()
- turtle.select(3)
- turtle.dropUp()
- turtle.select(1)
- end
- while true do
- harvest()
- turtle.turnRight()
- genemc()
- sleep(x)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement