Advertisement
Erit1566

Diagonal

May 19th, 2019
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.35 KB | None | 0 0
  1. local current = 1
  2. turtle.select(current)
  3. function check()
  4.     while turtle.getItemCount()<3 do
  5.         current = current + 1
  6.         turtle.select(current)
  7.     end
  8. end
  9.  
  10. for i=1,32 do
  11.  
  12.     check()
  13.     turtle.select(current)
  14.     turtle.placeDown()
  15.     turtle.forward()
  16.     turtle.placeDown()
  17.     turtle.turnLeft()
  18.     turtle.forward()
  19.     turtle.turnRight()
  20. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement