Solved No recipe for Resonant flux pack (Armored)

Status
Not open for further replies.
V

Vyssi

Guest
Summary of the problem No recipe for Resonant flux pack (Armored)

Pack Version 1.7.0

What is the bug? No recipe for adding armor to Resonant flux pack, thus can't craft jet plate either since it requires Armored resonant flux pack

Mod & Version Simpy Jetpacks 2.2.1.20

Link to log file

Is it repeatable? Look in JEI or try craftiing it. I tried crafting it with every armor plating and nothing happend.

Known Fix
 
  • Like
Reactions: SnowShock35

GamerwithnoGame

Over-Achiever
Jan 29, 2015
2,808
1,507
224
I've just had a quick look, and it does seem a little odd. According to the ftb.gamepedia wiki, you need to use the Invar armor plating on a redstone flux pack. That doesn't sound in any way correct, but it might be worth a try? If that doesn't work, try using the Invar plating on the resonant flux pack. In all cases it may be shapeless but to be on the safe side, try crafting with the armor plating above the flux pack.

Upon doing a bit of extra research on the aforementioned wiki, it states that the same pattern of armor plating holds true for the EnderIO flux packs as well - i.e. the octadic takes electrical steel plating rather than dark steel (as the jetpack does).

EDIT: apologies @SnowShock35, I didn't check for existing bugs, sorry :oops:
 
Last edited:

SnowShock35

FTB Pack Developer
Feb 27, 2014
486
149
73
United Kingdom
snowshock35.com
Hi there,

Thank you for bringing this issue to our attention. The mod author has been informed of the issue already and we are now awaiting a fix for the issue at hand. Please see the below link for details on the issue reported to the mod author. In the meantime, I will do my best to address the issue myself in the upcoming update (v1.8.0), should it yet to be fixed.

https://github.com/Tomson124/SimplyJetpacks-2/issues/49

Apologies for any hassle this has caused. We hope it will be fixed relatively soon.
Thanks for your patients.
 

Henry Link

Popular Member
Dec 23, 2012
2,601
553
128
USA - East Coast
This might help for the jetpack issues until the mod is updated. Create a file called in JetPack.zs in the scripts folder and copy the code in the spoiler below to it and save it. NOTE: The drawback to this script is that energy stored is lost. So is other NBT data like the particle effects.
Code:
// This script is to fix jetpack crafting issues.
// Specifically the ability to craft armored flux packs
// and decraft armored jet packs and flux packs
//
// NOTE: Energy stored is lost when using these scripts

// Defines
val IronPlate = <simplyjetpacks:metaitemmods:19>;
val BronzePlate = <simplyjetpacks:metaitemmods:20>;
val InvarPlate = <simplyjetpacks:metaitemmods:21>;
val EnderiumPlate = <simplyjetpacks:metaitemmods:22>;

val ReinforcedFluxPack = <simplyjetpacks:itemfluxpack:7>;
val ArmoredReinforcedFluxPack = <simplyjetpacks:itemfluxpack:9>;

val ResonateFluxPack = <simplyjetpacks:itemfluxpack:8>;
val ArmoredResonateFluxPack = <simplyjetpacks:itemfluxpack:10>;

val LeadStoneJetPack = <simplyjetpacks:itemjetpack:10>;
val ArmoredLeadStoneJetPack = <simplyjetpacks:itemjetpack:14>;

val HardenedJetPack = <simplyjetpacks:itemjetpack:11>;
val ArmoredHardenedJetPack = <simplyjetpacks:itemjetpack:15>;

val ReinforcedJetPack = <simplyjetpacks:itemjetpack:12>;
val ArmoredReinforcedJetPack = <simplyjetpacks:itemjetpack:16>;

val ResonateJetpack = <simplyjetpacks:itemjetpack:13>;
val ArmoredResonateJetpack = <simplyjetpacks:itemjetpack:17>;

// Add fluxpack recipes
recipes.addShapeless(ArmoredReinforcedFluxPack,
    [BronzePlate, ReinforcedFluxPack]);
recipes.addShapeless(ArmoredResonateFluxPack,
    [InvarPlate, ResonateFluxPack]);
  
// Decrafting recipes
// Decraft the armored flux packs into the armor and the flux pack
recipes.addShapeless(ReinforcedFluxPack,
    [ArmoredReinforcedFluxPack.transformReplace(BronzePlate)]);
recipes.addShapeless(ResonateFluxPack,
    [ArmoredResonateFluxPack.transformReplace(InvarPlate)]);
// Decraft for the armored jetpacks
recipes.addShapeless(LeadStoneJetPack,
    [ArmoredLeadStoneJetPack.transformReplace(IronPlate)]);
recipes.addShapeless(HardenedJetPack,
    [ArmoredHardenedJetPack.transformReplace(BronzePlate)]);
recipes.addShapeless(ReinforcedJetPack,
    [ArmoredReinforcedJetPack.transformReplace(InvarPlate)]);
recipes.addShapeless(ResonateJetpack,
    [ArmoredResonateJetpack.transformReplace(EnderiumPlate)]);

FTB Team feel free to include this in your next pack update. I need no credit for this work.
 
  • Like
Reactions: GamerwithnoGame

SnowShock35

FTB Pack Developer
Feb 27, 2014
486
149
73
United Kingdom
snowshock35.com
Hi there,

Thank you for your patients. This issue has been addressed and fixed in the latest release of the modpack, 1.9.0 - it's still a beta mind so be sure to backup before updating. As such, this issue will now be closed. If you're still experiencing problems please open a new issue report via the same method as before.

Many thanks once again for your help to find and iron out the various issues in the modpack.

Changelog (Basic):
https://www.feed-the-beast.com/projects/ftb-presents-direwolf20-1-12/files/2534193
 
Status
Not open for further replies.