Jump to content




Crafty turtle not crafting


  • You cannot reply to this topic
2 replies to this topic

#1 artman41

  • Members
  • 9 posts

Posted 23 September 2013 - 04: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


#2 Lyqyd

    Lua Liquidator

  • Moderators
  • 8,465 posts

Posted 23 September 2013 - 07:34 PM

Split into new topic.

You have to arrange the materials in the correct pattern to actually craft something. That pattern must be the only thing in the turtle's inventory. You can use turtle.transferTo to move the items into the correct slots.

#3 artman41

  • Members
  • 9 posts

Posted 24 September 2013 - 09:28 AM

View PostLyqyd, on 23 September 2013 - 07:34 PM, said:

Split into new topic.

You have to arrange the materials in the correct pattern to actually craft something. That pattern must be the only thing in the turtle's inventory. You can use turtle.transferTo to move the items into the correct slots.

thanks for the info :D





2 user(s) are reading this topic

0 members, 2 guests, 0 anonymous users