Advertisement
astonish01

Untitled

Jul 15th, 2015
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. write("Remove?")
  2. local rmv = ( read() )
  3. if rmv == "yes" then
  4. turtle.digDown()
  5. turtle.down()
  6. turtle.digDown()
  7. turtle.up()
  8. turtle.placeDown()
  9. elseif rmv ~= "yes" then
  10. write("Place?")
  11. local plc = ( read() )
  12. turtle.digDown()
  13. turtle.down()
  14. turtle.select(2)
  15. turtle.placeDown()
  16. turtle.select(1)
  17. turtle.up()
  18. turtle.placeDown()
  19. else
  20. write("start again")
  21. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement