Advertisement
Guest User

seed

a guest
Jul 15th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.52 KB | None | 0 0
  1. local x = 6
  2. turtle.up()
  3. turtle.forward()
  4. for a = 1, x / 2 do
  5.   for i = 1, x do
  6.   turtle.select(1)
  7.     turtle.placeDown()
  8.     turtle.forward()
  9.   end
  10.   turtle.turnLeft()
  11.   turtle.forward()
  12.   turtle.turnLeft()
  13.   for y = 1, x do
  14.     turtle.select(2)
  15.     turtle.forward()
  16.     turtle.placeDown()
  17.   end
  18.   turtle.turnRight()
  19.   turtle.forward()
  20.   turtle.turnRight()
  21. end
  22. turtle.turnRight()
  23. for j = 1, x do
  24.   turtle.forward()
  25. end
  26. turtle.turnRight()
  27. turtle.forward()
  28. turtle.turnLeft()
  29. turtle.turnLeft()
  30. turtle.down()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement