Skip to content
This repository has been archived by the owner on Sep 25, 2021. It is now read-only.

Item ID mismatch for SimplyJetpacks2 #531

Closed
gewoonnico opened this issue Jan 31, 2019 · 8 comments
Closed

Item ID mismatch for SimplyJetpacks2 #531

gewoonnico opened this issue Jan 31, 2019 · 8 comments

Comments

@gewoonnico
Copy link

gewoonnico commented Jan 31, 2019

  • Modpack Version: 1.6.0

  • Link to Log or Crash File Paste: /

  • Is it Repeatable?: Yes

  • Mod/s Affected: SimplyJetpacks2, EFab

Issue

Item IDs in oreDictionary for SimplyJetpacks2 items are incorrectly implemented into the scripts which change recipes.

In the /config/AppliedEnergistics2/ folder there are two items.csv files containing all the oreDictionary IDs loaded into Minecraft: one in the directory itself and one in the subdirectory aerecipes.

Within these files you have either entries simplyjetpacks:metaitemmods 18-30 or 15-27.
IDs 18-30 seems to be the correct range. The scripts utilising these IDs are configured using the wrong range, hence the uncraftable recipes.

Known Fix

All oreDictionary IDs used in the scripts with the name simplyjetpacks:metaitemmods are off by 3. Simply fix these values and you're done.

I have updated the scripts with the correct values so other people can progress:
simplyJetpacks.zs.txt
efab.zs.txt

Simply download the files, remove the .txt extension, overwrite the files in your (/minecraft)/scripts/ folder and enjoy!

This fixes recipes for Digital Upgrade, all tier Thrusters and all tier Armor Plating.

NOTE: When doing this on a server you have to make sure people's clients also get this fix. It will work, but JEI won't show the fixed recipes otherwise.

Related issues

#515, #517, #518, #529

@blizzard4591
Copy link

Thank you so much for this!

BUT: There is a bug still remaining, you forgot to replace the Item ID of the Glowstone Elevation Unit (was: 15, should be: 18)

This is your current script:

#glowstone elevation unit
recipes.remove(simplyjetpacks:metaitemmods:15);
recipes.addShaped(simplyjetpacks:metaitemmods:15, [[ore:ingotElectrumFlux, ore:ingotLumium, ore:ingotElectrumFlux], [ore:ingotLumium, ore:blockGlassHardened, ore:ingotLumium], [ore:ingotElectrumFlux, ore:ingotLumium, ore:ingotElectrumFlux]]);

But it should be:

#glowstone elevation unit
recipes.remove(simplyjetpacks:metaitemmods:18);
recipes.addShaped(simplyjetpacks:metaitemmods:18, [[ore:ingotElectrumFlux, ore:ingotLumium, ore:ingotElectrumFlux], [ore:ingotLumium, ore:blockGlassHardened, ore:ingotLumium], [ore:ingotElectrumFlux, ore:ingotLumium, ore:ingotElectrumFlux]]);

(notice the 18)

@gewoonnico
Copy link
Author

Thank you so much for this!

BUT: There is a bug still remaining, you forgot to replace the Item ID of the Glowstone Elevation Unit (was: 15, should be: 18)

You're totally right. I have updated the file in this issue, thanks for pointing that out!

@manwhowantssayTY
Copy link

Signing up for this site to say thank you!

Thank you very much!

@plugerduck
Copy link

this might me a stupid question but how do you remove the .txt extension for the files ?

@CassiusHammer
Copy link

Just signed up to say thank you for your fix!

@fmohican
Copy link

@gewoonnico Thanks for fix!

this might me a stupid question but how do you remove the .txt extension for the files ?

Yes, you should remove .txt and replace files, the right extension its .zs

@rune-san rune-san mentioned this issue Jul 31, 2019
@Crystal98TR
Copy link

Thanks so much, very helpful and clean.

@016Nojr
Copy link

016Nojr commented Jun 2, 2021

This has been fixed in a pack update coming in a few days

@016Nojr 016Nojr closed this as completed Jun 2, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

8 participants