JustDoesGames

Simple Cobble Miner

Apr 8th, 2022 (edited)
353
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.26 KB | None | 0 0
  1. term.clear() term.setCursorPos(1,1)
  2. write("Mining Cobblestone...")
  3. while true do
  4.     if turtle.getItemCount(1) ~= 64 then
  5.         if turtle.detectUp() then turtle.digUp() else sleep(.2) end
  6.         turtle.dropDown()
  7.     else sleep(1) turtle.dropDown() end
  8. end
  9.  
  10.  
Add Comment
Please, Sign In to add comment