Advertisement
znepb

concrete.lua

Jan 4th, 2020
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.37 KB | None | 0 0
  1. -- A simple program to turn concrete powder into concrete.
  2. -- Put concrete power into slot one, and concrete will come out on slot two.
  3.  
  4. while true do
  5.     if turtle.getItemCount(1) >= 1 then
  6.         turtle.select(1)
  7.         turtle.place()
  8.         turtle.select(2)
  9.         turtle.dig()
  10.         turtle.suck()
  11.         turtle.select(1)
  12.     else
  13.         sleep()
  14.     end
  15. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement