morganamilo

refuel

Jun 3rd, 2016
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.23 KB | None | 0 0
  1. local args = {...}
  2. local dist = args[1]
  3.  
  4. local function doLine()
  5.     for n = 1, dist do
  6.         turtle.forward()
  7.         turtle.placeDown()
  8.         turtle.refuel()
  9.     end
  10. end
  11.  
  12. doLine()
  13. turtle.turnLeft()
  14. turtle.forward()
  15. turtle.turnLeft()
  16. doLine()
Advertisement
Add Comment
Please, Sign In to add comment