Posted 01 August 2012 - 05:13 AM
i need to compare a block its above with a block it has selected and if its true i need it to run one code and if its false i need it to run a different code.
here is the code i have that doesn't work.
here is the code i have that doesn't work.
function done()
turtle.select(16)
while turtle.compareDown() do
farm()
else
skip()
end
end
the function is part of a farming program im making.