Advertisement
rungholt

tdeploy

Dec 10th, 2022
611
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.38 KB | None | 0 0
  1. turtle.up()
  2. turtle.turnRight()
  3.  
  4. local function deployTurtle()
  5.     for i = 2, 16 do
  6.         turtle.forward()
  7.         turtle.turnLeft()
  8.         turtle.select(i)
  9.         turtle.placeDown()
  10.         turtle.turnRight()
  11.     end
  12. end
  13.  
  14. local function goBack()
  15.     for i = 1, 15 do
  16.         turtle.back()
  17.     end
  18.     turtle.down()
  19.     turtle.turnLeft()
  20. end
  21.  
  22. deployTurtle()
  23. goBack()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement