Advertisement
eytixis

stair.lua (opencomputers mod)

Oct 30th, 2020 (edited)
2,144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.24 KB | None | 0 0
  1. turtle.placeDown()
  2. continue = true
  3. while continue do
  4.     x = turtle.forward()
  5.     y = turtle.down()
  6.     if not y then
  7.         continue = false
  8.     end
  9.     if not x then
  10.         turtle.turnLeft()
  11.     end
  12.     turtle.placeDown()
  13. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement