Jump to content

[Unsolved] Unable to decompile client.


Roze

Recommended Posts

Hi there.

 

After deciding to once again try my go with the Forge API; I've hit a road bump in setup.

I'm wondering if anyone would be so kind to help me get past this error?

 

Taken from my mcp.log. See bottom of log for error.

21:46:19 - == MCP 7.25 (data: 7.25, client: 1.4.6, server: 1.4.6) ==
21:46:19 - OS : win32
21:46:20 - # VERSION INFO
21:46:20 - python: 2.7.3 (default, Apr 10 2012, 23:31:26) [MSC v.1500 32 bit (Intel)]
21:46:20 - platform: Windows-7-6.1.7600
21:46:20 - # java: '"C:\Program Files\Java\jdk1.7.0_11\bin\java" -version'
21:46:20 - java version "1.7.0_11"

Java(TM) SE Runtime Environment (build 1.7.0_11-b21)

Java HotSpot(TM) 64-Bit Server VM (build 23.6-b04, mixed mode)
21:46:20 - # javac: '"C:\Program Files\Java\jdk1.7.0_11\bin\javac" -version'
21:46:20 - javac 1.7.0_11
21:46:20 - # javac runtime: '"C:\Program Files\Java\jdk1.7.0_11\bin\javac" -J-version'
21:46:20 - java version "1.7.0_11"

Java(TM) SE Runtime Environment (build 1.7.0_11-b21)

Java HotSpot(TM) 64-Bit Server VM (build 23.6-b04, mixed mode)
21:46:20 - # retroguard: 'runtime\bin\retroguard.jar --version'
21:46:20 - RetroGuard MCP v3.6.5
based on RetroGuard v2.3.1 by Retrologic Systems - www.retrologic.com
21:46:20 - # mcinjector: 'runtime\bin\mcinjector.jar --version'
21:46:20 - MCInjector v2.8 by Searge, LexManos, Fesh0r
21:46:20 - # patch: 'runtime\bin\applydiff.exe --version'
21:46:20 - patch 2.5.4
21:46:20 - # astyle: 'runtime\bin\astyle.exe --version'
21:46:20 - Artistic Style Version 2.02.1
21:46:20 - # jadretro: 'runtime\bin\jadretro.jar'
21:46:20 - Error: Unable to access jarfile runtime\bin\jadretro.jar
21:46:20 - # jad: 'runtime\bin\jad.exe'
21:46:20 - # fernflower: 'runtime\bin\fernflower.jar'
21:46:20 - Usage: java ConsoleDecompiler ( -<option>=<value>)* (<source>)+ <destination>
21:46:20 - # found ff, ff patches, srgs, name csvs, doc csvs, param csvs, renumber csv, astyle, astyle config
21:46:20 - Updates disabled
21:46:20 - > Creating Retroguard config files
21:46:20 - client md5: 48677dc4c2b98c29918722b5ab27b4fd
21:46:20 - == Decompiling client using fernflower ==
21:46:20 - > Creating SRGs
21:46:20 - > Applying Retroguard
21:46:20 - > Compiling AccessTransformer
21:46:20 - javac: invalid flag: Files\Java\jdk1.7.0_11\bin\javac
21:46:20 - Usage: javac <options> <source files>
21:46:20 - use -help for a list of possible options

 

I, aswell as the logs, can confirm I'm using; JDK 1.7.0_11, JRE 7 and MCP 7.25.

However the log states I'm using 'win32', whereas I'm using Windows 7 Ultimate 64-bit.

On purpose I've decided to use 1.4.6 for porting to CraftBukkit, which requires '.6.

 

Cheers, Roze.

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • It wasnt mappings issue, I was reading fabric and not forge. Fabric has PlayerEntity while forge has Player. Through a mixin I was able to change the player's velocity so that there is a sort of slow-motion type movement. Only issue is that jumping seems to be handled separately. Changing that velocity only makes the jump lower, not slower. Unsure how to increase the duration in which a jump happens.   @Mixin(LivingEntity.class) public abstract class ExampleMixin extends Entity { public ExampleMixin(EntityType<?> type, World world) { super(type, world); } @Inject(method = "tickMovement", at = @At("HEAD")) private void onTickMovement(CallbackInfo ci) { // Access the player entity LivingEntity entity = (LivingEntity)(Object)this; // Modify player's acceleration by applying a force in the opposite direction double slowdownFactor = 0.75; // Adjust as needed entity.setVelocity(entity.getVelocity().multiply(1, slowdownFactor, 1)); } }  
    • Hi so i made a modded survival, and when i go to the page 13 of my JEI,  my game instant crash and give this error "The game crashed whilst rendering item Error", I don't know what to do i give you the crash report : https://pastebin.com/EhzYdEZg
    • You need to run build at least once before running the game for the first time in a dev environment. Make sure stuff's working *before* you start making changes to the mdk template
    • Greetings, people of the forge forums: I come to you in a time of need. While creating my silly block entity that is (in theory) supposed to point to a position within world space I've started to question how to actually implement it.   How would I get a tile entity element (or bone) to change its pitch/yaw/roll? While I do have prior experience with programming, I have no actual experience with the forge API except the things listed in its docs. Please correct me if I am in any way wrong.
    • Making my own screen by extending from net.minecraft.client.gui.screens.Screen and override render method. I am trying to make green square only to be visible when intersecting with red square. This is what I got so far: @Override public void render(PoseStack poseStack, int mx, int my, float partialTick) {     RenderSystem.enableDepthTest(); // Red square     GuiComponent.fill(pPoseStack, 32, 32, 64, 64, 0xFFFF0000);     RenderSystem.depthFunc(GlConst.GL_LEQUAL); // Green square     GuiComponent.fill(pPoseStack, mx-16, my-16, mx+16, my+16, 0xFF00FF00); } Thank you in advance.
  • Topics

  • Who's Online (See full list)

×
×
  • Create New...

Important Information

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