jonassvensson4

Golv

Jul 17th, 2013
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.17 KB | None | 0 0
  1. local args = { ... }
  2. local dist = tonumber(args[1])
  3. for i=1,dist,1 do
  4.     turtle.digDown()
  5.     turtle.placeDown()
  6.     turtle.forward()   
  7. end
  8.  
  9. for i=1,dist do
  10.     turtle.back()
  11. end
Advertisement
Add Comment
Please, Sign In to add comment