Advanced Rocketry Tweaker: Full Recipe Customization
Building rockets, launching satellites, and colonizing distant planets in Advanced Rocketry often hits a wall: the default crafting recipes do not fit your modpack's progression. Advanced Rocketry Tweaker solves this by exposing every core machine to CraftTweaker scripts. Instead of adding new blocks, this add-on gives you complete command over existing production chains, letting you rebalance, remove, or replace recipes to match your vision.
Whether you are assembling a hardcore survival pack or a tech-focused experience, this tool is the missing link between Advanced Rocketry and full customization. It works quietly in the background, reading ZenScript files and applying your rules to every relevant machine.
Supported Machines and What You Can Control
Advanced Rocketry Tweaker covers nearly every production block involved in fuel, components, and resource processing. The full list includes:
- Chemical Reactor
- Precision Assembler
- Cutting Machine
- Lathe
- Rolling Machine
- Electrolyser
- Arc Furnace
- Crystallizer
- Plate Presser
For each machine, you can clear all default recipes, remove specific entries, or add custom ones with defined processing time, energy consumption, and exact input ingredients. This level of control is essential for modpack authors who need consistent balance across multiple mods.
Writing Scripts: Syntax and Practical Examples
Scripting uses the familiar ZenScript language from CraftTweaker. You get access to clear(), removeRecipe(), and addRecipe() methods for every supported machine. Below are practical examples to get you started quickly.
Chemical Reactor
To fully redefine rocket fuel production, first clear all recipes, then remove the default liquid fuel recipe, and finally add a new one requiring oxygen and hydrogen:
mods.advancedrocketry.ChemicalReactor.clear();
mods.advancedrocketry.ChemicalReactor.removeRecipe(<liquid:rocketfuel>);
mods.advancedrocketry.ChemicalReactor.addRecipe(<liquid:rocketfuel>*1000, 80, 100, <liquid:oxygen>*500, <liquid:hydrogen>*500);
The numbers 80 and 100 represent time in ticks and energy cost. Liquid inputs use volume multipliers, giving you precise ratio control.
Precision Assembler
This machine often crafts lenses and precise components. Remove the standard lens recipe and replace it with a custom one requiring diamonds and lapis:
mods.advancedrocketry.PrecisionAssembler.clear();
mods.advancedrocketry.PrecisionAssembler.removeRecipe(<advancedrocketry:blocklens>);
mods.advancedrocketry.PrecisionAssembler.addRecipe(<minecraft:stone>*1, 80, 100, <minecraft:diamond>*4, <ore:gemLapis>*4);
Cutting Machine and Lathe
Working with item metadata is straightforward. To remove a recipe for a specific wood type in the Cutting Machine, use a variable with withDamage():
val junglePlanks = <minecraft:planks>;
mods.advancedrocketry.CuttingMachine.removeRecipe(junglePlanks.withDamage(3)*6);
For the Lathe, you can redefine titanium rod production:
var titaniumRod = <advancedrocketry:productrod>;
mods.advancedrocketry.Lathe.removeRecipe(titaniumRod.withDamage(1)*2);
Electrolyser and Arc Furnace
The Electrolyser breaks liquids into components. A full clear and new recipe looks like this:
mods.advancedrocketry.Electrolyser.clear();
mods.advancedrocketry.Electrolyser.addRecipe(<liquid:nitrogen>*500, <liquid:oxygen>*500, 80, 100, <liquid:lava>*1000);
The Arc Furnace suits ore smelting. Remove the titanium ingot recipe and add a custom one:
val titaniumIngot = <libvulpes:productingot>;
mods.advancedrocketry.ArcFurnace.removeRecipe(titaniumIngot.withDamage(7));
mods.advancedrocketry.ArcFurnace.addRecipe(<minecraft:dirt>*1, 20, 10, <minecraft:apple>*1, <minecraft:gold_ingot>*1);
How to Install and Version Compatibility
To download Advanced Rocketry Tweaker: Full Recipe Customization, place the JAR file into the mods folder of your Minecraft instance. The add-on requires CraftTweaker and Advanced Rocketry to be present. It supports Minecraft versions commonly used with Advanced Rocketry, including 1.12.2 and 1.16.5, on the Forge loader. Ensure the add-on version matches your Advanced Rocketry and CraftTweaker versions; mismatches will prevent scripts from loading.
Common Mistakes and Practical Tips
Order matters. Always call clear() or remove specific recipes before adding new ones. When dealing with metadata, verify values through JEI or console commands; a wrong number means the recipe will not be removed. Also, keep an eye on the script load order if you use multiple tweaker mods.
Why AR Tweaker Is Essential for Modpacks
Without this add-on, modpack authors are stuck with rigid crafting chains that often conflict with other mods or break intended balance. Advanced Rocketry Tweaker turns Advanced Rocketry into a flexible tool, allowing seamless integration of space exploration into any gameplay style. Adjusting processing time and energy costs fine-tunes difficulty, while full recipe clearing enables building unique tech trees from scratch.
In conclusion, if you want to download Advanced Rocketry Tweaker: Full Recipe Customization for Minecraft, you are getting the definitive solution for customizing one of the most complex tech mods. The simple ZenScript syntax, combined with broad machine coverage, makes it a must-have for any serious modpack. Master the basics, and you will turn the standard rocket program into an original adventure where every production step follows your logic.