This small addon mod is a backport of the Crafttweaker Blueprint recipe support that exists in modern versions of Immersive Engineering.
This mod is designed for modpackers using the 1.7.10 version of minecraft to allow them to customize blueprints using zenscript (see below)
To add a blueprint
mods.immersiveengineering.Blueprint.addRecipe(String category, IItemStack output, IIngredient[] inputs);
To remove a blueprint
mods.immersiveengineering.Blueprint.removeRecipe(IItemStack output);
See https://docs.blamejared.com/1.12/en/Mods/Immersive_Engineering/CraftTweaker_Support/Blueprint for more information
Additionally, this addon allows users to modify the Engineer's Manual by adding/removing entries and pages
To remove an entry
mods.immersiveengineering.Manual.removeEntry(String name);
To remove a specific page
mods.immersiveengineering.Manual.removePage(String name, int pageNum);
To add a page
mods.immersiveengineering.Manual.addTextPage(String name, String text, @Optional String category, @Optional int pageNum);
EXAMPLE SCRIPT
No files available for download.