Guest User

Untitled

a guest
Dec 13th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.16 KB | None | 0 0
  1. function frwd()
  2. while not turtle.forward() do
  3. turtle.dig()
  4. turtle.attack()
  5. end
  6. end
  7.  
  8. term.write("How Much ? ")
  9. blocks = read()
  10. for i = 1, blocks do
  11. frwd()
  12. end
Add Comment
Please, Sign In to add comment