LITTLEJAMO

1x1

Mar 2nd, 2014
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. term.write("How far shall i dig?: ")
  2. distance = read()
  3. print("Digging a 1x1 blocks for "..distance.." blocks...")
  4.  
  5. for i = 1, distance
  6. do
  7. turtle.dig()
  8. turtle.forward()
  9. turtle.digUp()
  10. turtle.digDown()
  11. end
Advertisement
Add Comment
Please, Sign In to add comment