Advertisement
Ezteyh

tntmission

Aug 13th, 2022 (edited)
1,084
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.89 KB | None | 0 0
  1. function upaller()
  2.     for i = 1, 8, 1 do
  3.         turtle.up()
  4.     end
  5. end
  6.  
  7. function xgo()
  8.     for i = 1, 124, 1 do
  9.         turtle.forward()
  10.     end
  11. end
  12.  
  13. function zgo()
  14.     turtle.turnRight()
  15.     for i = 1, 16, 1 do
  16.         turtle.forward()
  17.     end
  18. end
  19.  
  20. function down()
  21.     while turtle.detectDown() == false do
  22.         turtle.down()
  23.     end
  24. end
  25.  
  26. function succ()
  27.     turtle.suckDown(64)
  28. end
  29.  
  30. function upretour()
  31.     for i = 1, 15, 1 do
  32.         turtle.up()
  33.     end
  34. end
  35.  
  36. function xretour()
  37.     turtle.turnRight()
  38.     for i = 1, 124, 1 do
  39.         turtle.forward()
  40.     end
  41. end
  42.  
  43. function zretour()
  44.     turtle.turnRight()
  45.     for i = 1, 16, 1 do
  46.         turtle.forward()
  47.     end
  48. end
  49.  
  50. function cracher()
  51.     turtle.turnRight()
  52.     turtle.dropDown(64)
  53. end
  54.  
  55. for i = 1, 1, 1 do
  56.  
  57. upaller()
  58. xgo()
  59. zgo()
  60. down()
  61. succ()
  62. upretour()
  63. xretour()
  64. zretour()
  65. cracher()
  66.  
  67. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement