Advertisement
Guest User

startup

a guest
Jul 21st, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.20 KB | None | 0 0
  1. while(true) do
  2.   for i=1, 16 do
  3.     if turtle.getItemCount(i) > 0 then
  4.       turtle.select(i)
  5.       break
  6.     end
  7.   end
  8.  
  9.   if turtle.detect() == false then
  10.     turtle.place()    
  11.   end
  12. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement