Advertisement
Guest User

Kaktusfarm

a guest
Oct 21st, 2016
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. print("64 Sand im Slot 1")
  2. print("32 Kakteen in Slot 2")
  3. print("3 Kohle in Slot 16")
  4. print("sobald die Kohle an ihrem Platz ist wird die Farm errichtet")
  5.  
  6. repeat os.sleep(5)
  7. until turtle.getItemCount(16) > 2
  8.  
  9.  
  10. turtle.select(16)
  11. turtle.refuel(3)
  12. turtle.select(1)
  13.  
  14. for i=1,4 do
  15. for i=1,8 do
  16. turtle.digDown()
  17. turtle.placeDown()
  18. turtle.forward()
  19. end
  20.  
  21. turtle.turnRight()
  22. turtle.forward()
  23. turtle.turnRight()
  24. turtle.forward()
  25.  
  26. for i=1,8 do
  27. turtle.digDown()
  28. turtle.placeDown()
  29. turtle.forward()
  30. end
  31.  
  32. turtle.turnLeft()
  33. turtle.forward()
  34. turtle.turnLeft()
  35. turtle.forward()
  36. end
  37.  
  38. turtle.turnLeft()
  39. turtle.forward()
  40. turtle.turnRight()
  41. turtle.up()
  42. turtle.select(2)
  43.  
  44. for i=1,4 do
  45. for i=1,4 do
  46. turtle.placeDown()
  47. turtle.forward()
  48. turtle.forward()
  49. end
  50.  
  51. turtle.turnLeft()
  52. turtle.forward()
  53. turtle.turnLeft()
  54. turtle.forward()
  55.  
  56. for i=1,4 do
  57. turtle.placeDown()
  58. turtle.forward()
  59. turtle.forward()
  60. end
  61.  
  62. turtle.turnRight()
  63. turtle.forward()
  64. turtle.turnRight()
  65. turtle.forward()
  66. end
  67.  
  68. turtle.down()
  69.  
  70. for i=1,8 do
  71. Print(" ")
  72. end
  73. print("Die Kaktusfarm ist fertig")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement