This is a read-only snapshot of the ComputerCraft forums, taken in April 2020.
Tyderf's profile picture

Miner Program

Started by Tyderf, 26 July 2013 - 05:19 PM
Tyderf #1
Posted 26 July 2013 - 07:19 PM
This is my first turtle program and I think this is pretty cool, it doesn't stop digging unless you terminate the program with CTRL T


pastebin get kxczLsxQ
Apfeldstrudel #2
Posted 27 July 2013 - 03:49 AM
while true do
  if turtle.detect() then
	turtle.dig()
	turtle.forward()
  end
  --<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<use else here
if not turtle.detect() then ...

Just a tip :P/>… if i understood what you want to do right
Tyderf #3
Posted 27 July 2013 - 10:46 AM
Thx