Advertisement
SourCB

omfg this is it

Oct 26th, 2013
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.55 KB | None | 0 0
  1. function plant()
  2. turtle.select(1)
  3. turtle.place()
  4. turtle.select(2)
  5. turtle.place()
  6. end
  7.  
  8. function fell()
  9. turtle.dig()
  10. turtle.forward()
  11. turtle.select(3)
  12. while turtle.compareUp() == true do
  13. turtle.digUp()
  14. turtle.up()
  15. end
  16. turtle.select(4)
  17. while turtle.compareDown() == false do
  18. turtle.down()
  19. end
  20. turtle.back()
  21. turtle.turnRight()
  22. turtle.suck()
  23. turtle.turnRight()
  24. turtle.turnRight()
  25. turtle.select(15)
  26. turtle.refuel(2)
  27. turtle.drop()
  28. turtle.select(16)
  29. turtle.drop()
  30. turtle.turnRight()
  31. sleep(60)
  32. end
  33.  
  34. while true do
  35.  plant()
  36.  fell()
  37. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement