Advertisement
JoshuaB

Dirt Placer (ComputerCraft)

Feb 10th, 2013
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.26 KB | None | 0 0
  1. function turnAround()
  2.   turtle.turnLeft()
  3.   turtle.turnLeft()
  4. end
  5.  
  6. function placeDirtToEnd()
  7.   while
  8.     moved = turtle.back()
  9.     if not moved then
  10.       break
  11.     end
  12.     turtle.place()
  13.   end
  14. end
  15.  
  16. -- Run into wall
  17. turtle.select(1)
  18. placeDirtToEnd()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement