Guest User

Untitled

a guest
Jan 9th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. print("Please put redstone in slot 1. 1 Redstone = 1 Obsidian")
  2. turtle.select(1)
  3. waitingForRedstone = true
  4. while waitingForRedstone do
  5. amount = turtle.getItemCount(1)
  6. if amount > 0 then
  7. waitingForRedstone = false
  8. end
  9. end
  10.  
  11. while amount > 0 do
  12. turtle.dig()
  13. turtle.place()
  14. sleep(2)
  15. amount = amount - 1
  16. end
Advertisement
Add Comment
Please, Sign In to add comment