IC2 Classic

IC2 Classic

2M Downloads

[1.7.10 Request] Add a way to change recipes

brandyyn opened this issue · 4 comments

commented

Currently there is no way to change IC2 recipes in the 1.7.10 version of the mod, there is no other mod that can do so either. This really puts a huge damper on the progression of my pack. I'd really really appreciate it.

commented

No, it doesn't?
What recipes are we talking about?
Regular crafting recipes work as intended.

commented

Have you tried CraftTweaker?

commented

Have you tried CraftTweaker?

Yes, IC2Classic uses a custom recipe system that CraftTweaker doesn’t support.

commented

Please, refer to this page for machine recipes:
https://docs.blamejared.com/MineTweaker/en/mods/ic2_support/

And this page for regular recipes:
https://docs.blamejared.com/MineTweaker/en/tutorials/1.7.x/basic_recipes.md

Make sure your script file is located at <mc_folder>/scripts/ and your file has the .zs extension.

To check the script if it works, perform a /mt reload call while in game.

This is how it should look:

import mods.ic2.Compressor;

// regular recipe removal
recipes.remove(<IC2:blockGenerator:1>);

// machine recipe 
Compressor.addRecipe(<minecraft:planks>, <minecraft:stick>);