[Request] CraftTweaker compability
HonzaVinCZ opened this issue ยท 0 comments
Hello, I'd like to ask you to add CraftTweaker compability because of editing recipes. We need it for our modpack. It is actually not possible to remove recipes by CraftTweaker.
My script is fine, but it won't remove recipe and it just adds recipe. When I tried to set in cfg file -hasNoRecipe = true, it removed completely recipe and it even didn't add my custom recipe. When hasNoRecipe was false, recipe remove by CT didn't work but recipe addShaped worked well so there were two recipes per one item - one default and one custom. We need just that custom.
It's really important for our modpack because we're planning to finish it until end of summer holiday. It is MP modpack and expected ammount of people playing it daily is about 200 so that's why this is very important update for us. Thank you very much.
CraftTweaker script:
` Weather deflector
recipes.remove(weather2:weather_deflector);
Weather Machine
recipes.remove(weather2:weather_machine);
Pocket Sand
recipes.remove(weather2:pocket_sand);
Weather Item
recipes.remove(weather2:weather_item);
Placeable Sand Layer
recipes.remove(weather2:sand_layer_placeable);
recipes.addShaped(weather2:sand_layer_placeable * 8,
[[null,null,null],
[null,minecraft:sand,null],
[null,null,null]]);
Tornado Sensor
recipes.remove(weather2:tornado_sensor);
recipes.addShaped(weather2:tornado_sensor,
[[null,gregtech:meta_item_1:32690,null],
[null,gregtech:machine_casing:1,null],
[null,gregtech:meta_item_2:32488,null]]);
Weather Radar
recipes.remove(weather2:weather_forecast);
recipes.addShaped(weather2:weather_forecast,
[[ore:paneGlassColorless,ore:paneGlassColorless,ore:paneGlassColorless],
[gregtech:meta_item_2:32451,gregtech:meta_item_2:32451,gregtech:meta_item_2:32451],
[gregtech:meta_item_1:32690,gregtech:machine_casing:1,gregtech:meta_item_1:32690]]);
Tornado Siren
recipes.remove(weather2:tornado_siren);
recipes.addShaped(weather2:tornado_siren,
[[gregtech:meta_item_1:12184,minecraft:noteblock,gregtech:meta_item_1:12184],
[minecraft:noteblock,gregtech:machine_casing:1,minecraft:noteblock],
[gregtech:meta_item_1:12184,gregtech:meta_item_1:32690,gregtech:meta_item_1:12184]]);
Manual Redstone Siren
recipes.remove(weather2:tornado_siren_manual);
recipes.addShaped(weather2:tornado_siren_manual,
[[gregtech:meta_item_1:12184,minecraft:noteblock,gregtech:meta_item_1:12184],
[minecraft:noteblock,gregtech:machine_casing:1,minecraft:noteblock],
[gregtech:meta_item_1:12184,minecraft:redstone,gregtech:meta_item_1:12184]]);
Anemometer
recipes.remove(weather2:anemometer);
recipes.addShaped(weather2:anemometer,
[[null,null,null],
[gregtech:meta_item_1:12184,gregtech:meta_item_1:14184,gregtech:meta_item_1:12184],
[null,gregtech:meta_item_1:14184,null]]);
Wind Vane
recipes.remove(weather2:wind_vane);
recipes.addShaped(weather2:wind_vane,
[[null,gregtech:meta_item_1:12184,null],
[gregtech:meta_item_1:14184,gregtech:meta_item_1:14184,gregtech:meta_item_1:14184],
[null,gregtech:meta_item_1:14184,null]]);
`