Advertisement
pogof

PamsHarvestcraft-farmer

Nov 27th, 2013
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.66 KB | None | 0 0
  1. --program by pogof
  2. --www.pogof.cz
  3. --www.youtube.com/smitegamescz
  4.  
  5. function bonemeal()
  6. turtle.select(3)
  7. turtle.turnLeft()
  8. turtle.turnLeft()
  9. turtle.suck()
  10. a = turtle.getItemCount(3)
  11. turtle.drop(a-1)
  12. turtle.turnLeft()
  13. turtle.turnLeft()
  14. turtle.select(1)
  15. end
  16.  
  17. function pracuj()
  18. turtle.select(1)
  19. turtle.place()
  20. turtle.select(3)
  21. turtle.place()
  22. turtle.select(1)
  23. turtle.dig()
  24. for b=0, 10 do
  25. turtle.suck()
  26. end
  27. end
  28.  
  29. function syp()
  30. turtle.select(1)
  31. d = turtle.getItemCount(1)
  32. turtle.dropUp(d-3)
  33. turtle.select(2)
  34. turtle.dropUp()
  35. turtle.select(1)
  36. end
  37.  
  38. function cele()
  39. for c=0, 15 do
  40. bonemeal()
  41. pracuj()
  42. end
  43. syp()
  44. end
  45.  
  46. while true do
  47. cele()
  48. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement