Quantum Ring Builder Script

  • Please make sure you are posting in the correct place. Server ads go here and modpack bugs go here

Riuga

New Member
Jul 29, 2019
684
0
0
Beta v0.1

Here's the turtle script I use for auto building the Quantum Ring. AKA Wireless Network Access without Wireless, waiting for Algo to add a hand-held Quantum Access Terminal:

(Type in this command first): label set qBuilder

(Must use wrench turtle!)

Setup:

Slot 1: 8 Quantum Field Rings
Slot 2: 1 Quantum Link Chamber
Slot 3: 1 QE Singularity
Slot 4: ME Access Terminal OR ME Crafting Terminal
Slot 5: Preconfigured Energy Tesseract (See below)

Code:
function turnAround()
turtle.turnLeft();
turtle.turnLeft();
end;

function buildLevel(chamber)
turtle.place();
turnAround();
turtle.place()
turtle.up();

if chamber then
turtle.select(2);
turtle.placeDown();
turtle.select(3);
turtle.dropDown(1);
turtle.select(1);
else
turtle.placeDown();
end;
end;

turtle.forward();
turtle.down();
turtle.turnRight();
buildLevel(false);
buildLevel(true);
buildLevel(false);
turtle.forward();
turtle.forward();
turtle.down();
turtle.select(5);
turtle.placeDown();
turtle.turnLeft();
turtle.forward();
turtle.turnLeft();
turtle.forward();
turtle.forward();
turtle.down();
turnAround();
turtle.select(4);
turtle.place();
turtle.up();
turtle.forward();
turtle.select(1);

Planned:

Break after finished using.
EnderChest compat
build 3x3 / 5x5 platform

Preconfiguring a Tesseract:
Set it up as you usually would.
Right click with shiny dust (ferrous dust).
Wrench it.
 
  • Like
Reactions: yayes2