kamilosxd678

[MC-CC] Turtle Ceiling maker

May 13th, 2014
227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.39 KB | None | 0 0
  1. local actualSlotNumber = 1
  2. local running = true
  3.  
  4. function place()
  5.    while (turtle.getItemCount(actualSlotNumber) == 0) do
  6.       actualSlotNumber = actualSlotNumber + 1
  7.       if not turtle.select(actualSlotNumber) then
  8.          return false
  9.       end
  10.    end
  11.    turtle.placeUp()
  12.    return turtle.forward()
  13. end
  14.  
  15. turtle.select(actualSlotNumber)
  16. while running do
  17.    running = place()
  18. end
Advertisement
Add Comment
Please, Sign In to add comment