Jump to content




How to automate quarry/tesseract/chest placing?


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

#1 koeer11

  • New Members
  • 2 posts

Posted 27 September 2013 - 03:25 AM

So, my question is, would it be possible with turtles to automatically place a quarry, an energy tesseract and an ender chest each 62 blocks from the other, go another 62 blocks and place the same 3 in the same formation?

#2 Lyqyd

    Lua Liquidator

  • Moderators
  • 8,465 posts

Posted 27 September 2013 - 07:59 PM

Split into new topic.

#3 UltraNoobian

  • Members
  • 6 posts
  • LocationAustralia

Posted 27 September 2013 - 08:08 PM

Is it possible? Yes.

You could do that but without a chunkloader anything past the border would simply stop including the turtle.

EDIT: How? I am still eating breakfast and unable to code atm.

#4 BigTwisty

  • Members
  • 106 posts

Posted 28 September 2013 - 01:19 AM

The other problem you'll find is that tesseracts don't keep their settings like redstone cells do when you wrench them. The turtle can place them, but they won't actually do anything until you come by and set their frequencies.

#5 Engineer

  • Members
  • 1,378 posts
  • LocationThe Netherlands

Posted 28 September 2013 - 04:18 AM

This is a coding solution, not a loaded chunk solution.
while true do -- infinite loop
  for i = 1, 62 do
    turtle.forward() -- move 62 times
  end
  -- code for placing here
end

This is a very bad solution, as you need to check if there is fuel to move, etc.

#6 Lyqyd

    Lua Liquidator

  • Moderators
  • 8,465 posts

Posted 28 September 2013 - 03:13 PM

View PostBigTwisty, on 28 September 2013 - 01:19 AM, said:

The other problem you'll find is that tesseracts don't keep their settings like redstone cells do when you wrench them. The turtle can place them, but they won't actually do anything until you come by and set their frequencies.

You can use either a shiny dust or a shiny ingot on them to cause them to retain their settings when broken. This may only work when they're broken with the crescent hammer. TE adds an "engineering turtle" or similar that has a crescent hammer tool attached. Obviously, craft a turtle and a crescent hammer to get one.

#7 BigTwisty

  • Members
  • 106 posts

Posted 28 September 2013 - 04:46 PM

View PostLyqyd, on 28 September 2013 - 03:13 PM, said:

View PostBigTwisty, on 28 September 2013 - 01:19 AM, said:

The other problem you'll find is that tesseracts don't keep their settings like redstone cells do when you wrench them. The turtle can place them, but they won't actually do anything until you come by and set their frequencies.

You can use either a shiny dust or a shiny ingot on them to cause them to retain their settings when broken. This may only work when they're broken with the crescent hammer. TE adds an "engineering turtle" or similar that has a crescent hammer tool attached. Obviously, craft a turtle and a crescent hammer to get one.

That is awesome! Never knew that. Thanks!

#8 Lyqyd

    Lua Liquidator

  • Moderators
  • 8,465 posts

Posted 28 September 2013 - 08:03 PM

Also, I didn't clarify very well; I said above you can use either a dust or an ingot. In fact, you can only use one or the other. I can't remember whether it is the dust or the ingot.

#9 plazter

  • Members
  • 134 posts

Posted 29 September 2013 - 02:57 PM

Its dust:)

EDIT1:
I saw this post yesterday, and now i've made a program to do it :)
Have a look at it and get some inspiration! :)
link: http://pastebin.com/Sb8VwgwU

Heres the code if you just want a look :)

Spoiler






1 user(s) are reading this topic

0 members, 1 guests, 0 anonymous users