Guest User

lights

a guest
Jul 15th, 2015
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.33 KB | None | 0 0
  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 then
  10. write("Place?")
  11. local plc = ( read() )
  12. turtle.digDown()
  13. turtle.select(2)
  14. turtle.placeDown()
  15. turtle.select(1)
  16. turtle.up()
  17. turtle.placeDown()
  18. else
  19. write("start again")
  20. end
Advertisement
Add Comment
Please, Sign In to add comment