Immersive Engineering Blueprint Tweaker

Quick rating

Immersive Engineering Blueprint Tweaker

No reviews yet

Immersive Engineering blueprint recipe support for Minetweaker

Mod Loaders
Forge
Minecraft

Community voices

Reviews

Versions
Loading versions…
Match includes

Click once to include, again to exclude, again to clear

Rating Any
Any 0.5 1.0 1.5 2.0 2.5 3.0 3.5 4.0 4.5 5.0
Min
Max
Play Status
Reviews
Time Played
hrs+
Verified developers only
Has developer response
List view
Grid view
Compact view
Sort by
Date
Rating
Helpful
Unhelpful
Edited
Sort ascending
Delete this review?

This removes your review from the project. You can write a new review after.

Review submitted for moderation

Your review has been sent to moderators, who will check that it meets our guidelines before it appears publicly.

No reviews yet. Be the first to review this project!

Get it on

Available Platforms

Compatibility

Supported Environments

Dev Environment
Client Optional
Server Required

About

Project Details

Type
Mod
License
MIT License
Latest Version
IEBPT-1.1.3.jar
Authors
CurseForge
Modrinth

For authors

Embed Badge

If you're the author of this project, you can embed a live badge anywhere that supports HTML or Markdown. It updates automatically whenever ratings change.

Custom banner text
ModDex rating badge preview

Use HTML for any page that supports it, or Markdown for README files and Markdown-based descriptions.

Identifiers

Platform IDs

CurseForge ID
Modrinth ID

Resources

External Links

Source Issues Wiki Discord

About

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

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);

 

An example of how to add pages of text

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

 

Screenshots

Gallery

  • Example
    Example

Versions

Files

Relations

Project Relations

More like this

Similar Mods

Suggestions use data such as tags, dependencies, dependents, descriptions, titles, and more to rank how much they overlap with this mod.

On ModDex

Community snapshot

0
Ratings
0
Followers
0
In stacks

By the numbers

Statistics

~4,000
Total Downloads
CurseForge
~2,000
Modrinth
~2,000
Last Updated
CurseForge
Created
CurseForge
Modrinth
Last synced
When ModDex last fetched this project from CurseForge or Modrinth. Every project is re-checked on a schedule, and any project that ships a new file is synced automatically within hours of the release.
New file updates sync automatically
How syncing works