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?
How to automate quarry/tesseract/chest placing?
Started by koeer11, Sep 27 2013 03:25 AM
8 replies to this topic
#1
Posted 27 September 2013 - 03:25 AM
#2
Posted 27 September 2013 - 07:59 PM
Split into new topic.
#3
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.
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
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
Posted 28 September 2013 - 04:18 AM
This is a coding solution, not a loaded chunk solution.
This is a very bad solution, as you need to check if there is fuel to move, etc.
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
Posted 28 September 2013 - 03:13 PM
BigTwisty, 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
Posted 28 September 2013 - 04:46 PM
Lyqyd, on 28 September 2013 - 03:13 PM, said:
BigTwisty, 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
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
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
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











