Advertisement
hiphopcanine

Computercraft Mining Turtle

Dec 20th, 2021 (edited)
1,547
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.32 KB | None | 0 0
  1. --[[ Turtle Mining Program ]]--
  2.  
  3. function check_inv_full()
  4.     local inv_full = True
  5.     for i = 1,9,1 do
  6.         if (turtle.getItemCount(i) == 0) then
  7.             inv_full = False
  8.             break
  9.         end
  10.     end
  11.     return inv_full
  12. end
  13.  
  14. if check_inv_full() then
  15.     print("bruh")
  16. else
  17.     print("no bruh")
  18. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement