Advertisement
Guest User

stairs

a guest
Aug 1st, 2014
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.28 KB | None | 0 0
  1. local depth = 0
  2. term.write("Enter Depth: ")
  3. depth = read()
  4.  
  5. for i = 0, depth do
  6.   turtle.dig()
  7.   turtle.forward()
  8.   turtle.digUp()
  9.   turtle.digDown()
  10.   turtle.down()
  11. end
  12.  
  13. turtle.up()
  14. turtle.up()
  15.  
  16. for i =  0, depth do
  17.   turtle.digUp()
  18.   turtle.up()
  19.   turtle.back()
  20.  end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement