Loading...
Beta Modpages Unclaimed

Immersive Engineering Blueprint Tweaker

Immersive Engineering blueprint recipe support for Minetweaker

0 Likes
973 Downloads
Created by facetorched

Description

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

// add a new blueprint and recipe using that blueprint
// NOTE: this blueprint will be unobtainable in survival. You must create your own recipe.
mods.immersiveengineering.Blueprint.addRecipe("vanillaItems", <minecraft:iron_bars>*4, [<ore:stickIron>, <ore:stickIron>]);
game.setLocalization("desc.ImmersiveEngineering.info.blueprint.vanillaItems", "Vanilla Items");

// remove the entire entry about graphite
mods.immersiveengineering.Manual.removeEntry("graphite");

// remove the last seven pages of the biodiesel category
var removePages = [7, 6, 5, 4, 3, 2, 1] as int[];
for i in removePages{
    mods.immersiveengineering.Manual.removePage("biodiesel", i);
}

// Add a new page to replace the ones that were removed
game.setLocalization("ie.manual.entry.biodieselTest", "Biodiesel is basically useless. Don't listen to the wiki");
mods.immersiveengineering.Manual.addTextPage("biodiesel", "biodieselTest", 1);

// Add a new category, an entry and three pages
game.setLocalization("ie.manual.category.gregtech.name", "Greg Tech");
game.setLocalization("ie.manual.entry.ochem.name", "Organic Chemistry");
game.setLocalization("ie.manual.entry.ochem.subtext", "");
game.setLocalization("ie.manual.entry.ochem0", "this is the first page");
game.setLocalization("ie.manual.entry.ochem1", "this is the second page");
game.setLocalization("ie.manual.entry.ochem2", "this is the third page");
mods.immersiveengineering.Manual.addTextPage("ochem", "ochem2", "gregtech"); // create a new category (gregtech) and entry (ochem)
mods.immersiveengineering.Manual.addTextPage("ochem", "ochem0"); // default insert as first page
mods.immersiveengineering.Manual.addTextPage("ochem", "ochem1", 1); // insert at page index 1

 

 


AD Become Premium to remove Ads!

What means Verified?

  • Compatibility: The mod should be compatible with the latest version of Minecraft and be clearly labeled with its supported versions.
  • Functionality: The mod should work as advertised and not cause any game-breaking bugs or crashes.
  • Security: The mod should not contain any malicious code or attempts to steal personal information.
  • Performance: The mod should not cause a significant decrease in the game's performance, such as by causing lag or reducing frame rates.
  • Originality: The mod should be original and not a copy of someone else's work.
  • Up-to-date: The mod should be regularly updated to fix bugs, improve performance, and maintain compatibility with the latest version of Minecraft.
  • Support: The mod should have an active developer who provides support and troubleshooting assistance to users.
  • License: The mod should be released under a clear and open source license that allows others to use, modify, and redistribute the code.
  • Documentation: The mod should come with clear and detailed documentation on how to install and use it.

AD Become Premium to remove Ads!

How to Install

1

Download Forge & Java

Download Forge from the offical Site or here. If you dont have Java installed then install it now from here. After Downloading Forge you can run the file with Java.

2

Prepare

Lounch Minecraft and select your Forge istallation as Version this will create a Folder called Mods.

3

Add Mods

Type Win+R and type %appdata% and open the .minecraft Folder. There will you find your Folder called Mods. Place all Mods you want to play in this Folder

4

Enjoy

You are now Ready. Re-start your Game and start Playing.

More Mods like this

ModTweaker

ModTweaker is an addon for CraftTweaker, a recipe manipulator utility for Minecraft. It allows you to modify the recipes of other mods that add their own crafting mechanics

JEITweaker

Adds CraftTweaker support to Just Enough Items

LootTweaker

A CraftTweaker addon that allows loot tables to be tweaked

Recipe Stages

Allows for Crafting table recipes to be locked behind stages.

Initial Inventory

Allows you to set an Initial Inventory for a player using ZenScript

Item Stages

Allows items to be restricted to a stage.

Dimension Stages

Allows access to dimensions to be restricted based on stages.

LootTableTweaker

LootTable support for CraftTweaker / MineTweaker3

Waila Stages

Allows access to Waila HUD and specific tool tip info to be restricted based on stages,