Jump to content

[SRC]1.6.2 9.10.0.789 Forge install.bat fails on decompile - SOLVED


Recommended Posts

Posted

Howdy guys,

 

After attempting to update to 1.6.2, I seem to be experiencing issues with the install script. I have made sure that I don't have MCP downloaded ahead of time, and I'm not getting stuck on downloading the files, it appears to just be with the actual decompile. Here is a pastebin of the issue.

 

http://pastebin.com/HhxMi8J0

 

Thanks in advance

 

EDIT: Here's a link to the mcp.log, as requested by LexManos

 

http://pastebin.com/Nvus47LD

Posted

Wouldn't usually double post, but wanted to make sure people saw that a solution had been posted.

 

Thanks to the folks in the Minecraft Forge IRC channel, namely TehBeard, I figured out that this was caused due to being unable to run javac from the command line.

 

Now, I'm not sure if this was a recent change with 1.6.2, but for whatever reason I had no issues with 1.5.2. So for those who run into the issue, make sure all of this is true:

 

1. You have the most up to date JRE and JDK

 

2. You have the proper versions for your processor (ie. x86 or x64)

 

3. Ensure you can run java and javac from the command line

 

4. If not, add them to your environment PATH variables. Searching environment variable in the windows search at the control panel will make this easy.

 

P.S. A new fun fact I learned, is double check that your development environment (in my case, a custom Eclipse workspace) has the proper libraries in the build path. Provided you aren't using scala, they are:

 

1.6.2.jar

argo-2.25_fixed.jar

asm-all-4.1.jar

bcprov-jdk15on-1.47.jar

codecjorbis-20101023.jar

codecwav-20101023.jar

commons-io-2.4.jar

commons-lang3-3.1.jar

gson-2.2.2.jar

guava-14.0.jar

jinput-2.0.5.jar*

jopt-simple-4.5.jar

jutils-1.0.0.jar

launchwrapper-1.3.jar

libraryjavasound-20101123.jar

libraryjwjglopenal-20100824.jar

lwjgl_util-2.9.0.jar*

lwjgl-2.9.0.jar*

Izma-0.0.1.jar

soundsystem-20120107.jar

 

All of these should also be exported, with the exception of "1.6.2.jar." As well as this, all the ones marked with a astrik (*) should have the native library location set to:

 

mcp/jars/versions/1.6.2/1.6.2-natives

 

 

Finally, ensure that you have the run configuration pointing to the working directory that contains the assets folder (in this case mcp/jars). I was getting quite a headache with an error resulting in not having the proper icon for Minecraft after launching.

 

 

I hope this helps anyone else with this issue.

 

 

Posted
  On 7/13/2013 at 6:01 AM, Riizu said:

Wouldn't usually double post, but wanted to make sure people saw that a solution had been posted.

 

Thanks to the folks in the Minecraft Forge IRC channel, namely TehBeard, I figured out that this was caused due to being unable to run javac from the command line.

 

Now, I'm not sure if this was a recent change with 1.6.2, but for whatever reason I had no issues with 1.5.2. So for those who run into the issue, make sure all of this is true:

 

1. You have the most up to date JRE and JDK

 

2. You have the proper versions for your processor (ie. x86 or x64)

 

3. Ensure you can run java and javac from the command line

 

4. If not, add them to your environment PATH variables. Searching environment variable in the windows search at the control panel will make this easy.

 

P.S. A new fun fact I learned, is double check that your development environment (in my case, a custom Eclipse workspace) has the proper libraries in the build path. Provided you aren't using scala, they are:

 

1.6.2.jar

argo-2.25_fixed.jar

asm-all-4.1.jar

bcprov-jdk15on-1.47.jar

codecjorbis-20101023.jar

codecwav-20101023.jar

commons-io-2.4.jar

commons-lang3-3.1.jar

gson-2.2.2.jar

guava-14.0.jar

jinput-2.0.5.jar*

jopt-simple-4.5.jar

jutils-1.0.0.jar

launchwrapper-1.3.jar

libraryjavasound-20101123.jar

libraryjwjglopenal-20100824.jar

lwjgl_util-2.9.0.jar*

lwjgl-2.9.0.jar*

Izma-0.0.1.jar

soundsystem-20120107.jar

 

All of these should also be exported, with the exception of "1.6.2.jar." As well as this, all the ones marked with a astrik (*) should have the native library location set to:

 

mcp/jars/versions/1.6.2/1.6.2-natives

 

 

Finally, ensure that you have the run configuration pointing to the working directory that contains the assets folder (in this case mcp/jars). I was getting quite a headache with an error resulting in not having the proper icon for Minecraft after launching.

 

 

I hope this helps anyone else with this issue.

 

 

 

This helped me out a lot in getting my environment setup. I am still running into some problems with the run configuration though.

 

I have my run configuration pointed in the working directory to the following location ${workspace_loc:Minecraft/lib}

Which points to my location F:\minecraft modding\mcp\forge\mcp\mcp\jars\libraries. I have also tried several other locations that contain the jars file, as well as the main part of the jars folder.

Would pointing to a system file accomplish the same result for the run configuration?

 

Below is my runtime error on trying to just run the 1.6.2 environment to make sure that it works beforehand. Which I believe would be fixed with the run configuration pointing to the correct location.

 

Exception in thread "main" java.lang.NullPointerException

at java.util.logging.Logger.setParent(Unknown Source)

at net.minecraft.logging.LogAgent.setupLogger(LogAgent.java:33)

at net.minecraft.logging.LogAgent.<init>(LogAgent.java:25)

at net.minecraft.client.Minecraft.<init>(Minecraft.java:308)

at net.minecraft.client.main.Main.main(Main.java:77)

at Start.main(Start.java:68)

 

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • "I want to understand how complex mods with ASM transformation and coremods work, such as Xray or AntiXray. Why do they break when you simply rename packages? What features of their architecture make refactoring difficult? And what techniques are used to protect these mods? I am interested in technical aspects in order to better understand the bytecode and Forge loader system."
    • I can't figure out if you're looking for help trying to steal someone elses work, or cheat at the game....
    • Title: Why Is It So Hard to Rename and Restructure Mods Like Xray or AntiXray? 🤔 Post text: Hey everyone! I’ve been digging into Minecraft modding for a while and have one big question that I can’t figure out on my own. Maybe someone with more experience could help or give me some advice. Here’s the issue: When I take a “normal” Minecraft mod — for example, one that just adds some blocks or new items — I can easily change its structure, package names, or even rebrand it entirely. It’s straightforward. But as soon as I try this with cheat-type mods like XrayMod or AntiXray, everything falls apart. Even if I just rename the classes, refactor the packages, or hide its identity somehow, the mod either breaks or stops working properly. XrayMod in particular is proving to be a nightmare to modify without losing its core function. So my question is — why is this so much harder with cheat mods like Xray? Is there something fundamentally different about how they’re coded, loaded, or protected that prevents simple renaming or restructuring? And if so, how can I actually learn to understand someone else’s cheat mod enough to safely refactor it without breaking the core features? I’ve already been spending over two months trying to figure this out and haven’t gotten anywhere. It feels like there must be some trick or knowledge I’m missing. Would really appreciate any thoughts, tips, or references — maybe there are guides or techniques for understanding cheat-mod internals? Or if you’ve successfully “disguised” a cheat mod like Xray before, I’d love to hear how you did it. Thanks in advance for any help or discussion. ✌️
    • just started making cinamatic contect check it out on my channel or check out my facebook page    Humbug City Minecraft Youtube https://www.youtube.com/watch?v=v2N6OveKwno https://www.facebook.com/profile.php?id=61575866982337  
    • Where did you get the schematic? Source/Link? And do use an own modpack or a pre-configured from curseforge? If yes, which one On a later time, I can make some tests on my own - but I need the schematic and the modpack name
  • Topics

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.