Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: raylox on Sep 16th, 2012  |  syntax: None  |  size: 0.20 KB  |  hits: 17  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
This paste has a previous version, view the difference. Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. slot = 1
  2. while true do
  3.   turtle.select( slot )
  4.   if turtle.getItemCount( slot ) == 0 then
  5.     slot = slot + 1
  6.   end
  7.   if slot == 8 then
  8.     break
  9.   end
  10.  
  11.   turtle.forward()
  12.   turtle.dig()
  13. end