Posted 23 September 2013 - 05:07 PM
I have the following code set so that it crafts me furnaces with the cobble another turtle is supplying. It is then to drop all of the furnaces into a chest. However, all this code seems to do is spam select slots 1 & 2. Can anybody help me out with this? I'm a tad bit confused since the turtle.craft() command isn't really explained on the wiki.
while true do
turtle.craft()
turtle.select((2))
turtle.dropUp()
turtle.select((1))
end