Jump to content

Recommended Posts

Posted

Hi,

i'm using Magic Launcher,

when i try to get Forge into it, i get the following error:

 

Missing class member: public B c, class: agl

 

The error appears on the Magiclauncher Screen when adding the mod!

 

Can anyone help me with that?

 

 

  Reveal hidden contents

 

Posted

Logs?

There's an EAQ for a reason. Read it!

"Note that failure to read this will make you look idiotic. You don't want that do you?" -- luacs1998

 

First rule of bug reports: More information is always better.

Oh, and logs OR IT DIDN'T HAPPEN!!

Posted

Ok after installing OptiFine magiclauncher says: "not compitable"

 

here's the new log:

 

 

  Reveal hidden contents

 

 

getting black screen now when trying to start

 

 

edit: moved forge to top list on mod list, now i got again the error from the start post....

Posted

Try updating Forge.

There's an EAQ for a reason. Read it!

"Note that failure to read this will make you look idiotic. You don't want that do you?" -- luacs1998

 

First rule of bug reports: More information is always better.

Oh, and logs OR IT DIDN'T HAPPEN!!

Posted

I am having this exact same "Missing class member: public B c, class: agl, mod: Forge_1.4.2.zip" problem.

 

I am also using the Magic Launcher and Magic Launcher records one error with the Forge mod when it is added to the configuration. See the Magic Launcher log below.

 

  Reveal hidden contents

 

 

Note:

I am using the most recent build of Forge (universal-6.0.1.341 for Minecraft 1.4.2).

I have tried the latest Forge build (minecraftforge-universal-6.0.1.345 for Minecraft 1.4.2) but the same error occurs.

I am running Magic Launcher 1.0.0.

Forge was added correctly to the configuration (i.e. first, at the top of the list, before any other mods).

When other mods were applied to the configuration, no errors were reported by Magic Launcher.

Upon Launching Minecraft from Magic Launcher using the Forge-modded setup, FML appeared to setup the mods without a hitch.

However, upon selecting a world to play, the game then crashes to a black screen.

In the log files you will notice that I have renamed my mod zip files, Forge_1.4.2.zip relates to the latest build of Forge for Minecraft version 1.4.2. In the log file below, the specific Forge version in question is 6.0.1.341.

 

Below is the ForgeModLoader-client-0 log.

 

 

  Reveal hidden contents

 

 

I'd love to be able to continue using Magic Launcher but I could be convinced otherwise. However, I would like to think the Forgers would be interested in fixing such bugs anyway so I hope the details I have provided can help point out the problem.

 

Thanks in advance,

Abe

Posted

First of all, a big thanks to Abe for filing a useful and informational bug report.

The logs point to a bug in AutoSwitch, not Forge. Go bug Thebombzen for that.

There's an EAQ for a reason. Read it!

"Note that failure to read this will make you look idiotic. You don't want that do you?" -- luacs1998

 

First rule of bug reports: More information is always better.

Oh, and logs OR IT DIDN'T HAPPEN!!

Posted

Sorry for the delay, I replied yesterday but the site went down and I lost the message.

 

Thanks for the heads up HMPerson1, I may go give Thebombzen a poke about the issue. Would it be okay to post a link on his minecraft forum thread to this thread?

 

Cheers rivvest, #338 seems to be working working perfectly! So happy to have all my mods back. Magic Launcher is still recording one error but I think it is just making things up.

 

Thanks again Forgers.

Posted
  On 10/30/2012 at 9:20 PM, Malivil said:

AutoSwitch 2.4.2 is working perfectly for me with Forge 350

 

Thanks Malivil, I just checked the autoswitch thread and it turns out Thebombzen has fixed the bug mentioned in this thread since yesterday. He works quick :) See his change log below:

 

 

  Reveal hidden contents

 

 

Unfortunately, I can't test this yet myself but for now at least #338 is running good enough for me.

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

    • Yes that’s the full log, I managed to get it working last night, the anvil fix mod is what was causing it to crash
    • Hey guys, i'm currently developping a mod with forge 1.12.2 2860 and i'm using optifine and gradle 4.9. The thing is i'm trying to figure out how to show the player's body in first person. So far everything's going well since i've try to use a shader. The player's body started to blink dark when using a shader. I've try a lot of shader like chocapic, zeus etc etc but still the same issue. So my question is : How should i apply the current shader to the body ? At the same time i'm also drawing a HUD so maybe it could be the problem?   Here is the issue :    And here is the code where i'm trying to display the body :    private static void renderFirstPersonBody(EntityPlayerSP player, float partialTicks) { Minecraft mc = Minecraft.getMinecraft(); GlStateManager.pushMatrix(); GlStateManager.pushAttrib(); try { // Préparation OpenGL GlStateManager.enableDepth(); GlStateManager.depthMask(true); GlStateManager.enableAlpha(); GlStateManager.alphaFunc(GL11.GL_GREATER, 0.1F); GlStateManager.enableBlend(); GlStateManager.blendFunc(GL11.GL_SRC_ALPHA, GL11.GL_ONE_MINUS_SRC_ALPHA); // Éclairage correct pour shaders GlStateManager.enableLighting(); RenderHelper.enableStandardItemLighting(); GlStateManager.enableRescaleNormal(); // Active la lightmap pour les shaders mc.entityRenderer.enableLightmap(); // Position de rendu interpolée double px = player.lastTickPosX + (player.posX - player.lastTickPosX) * partialTicks; double py = player.lastTickPosY + (player.posY - player.lastTickPosY) * partialTicks; double pz = player.lastTickPosZ + (player.posZ - player.lastTickPosZ) * partialTicks; GlStateManager.translate( px - mc.getRenderManager().viewerPosX, py - mc.getRenderManager().viewerPosY, pz - mc.getRenderManager().viewerPosZ ); // Rendu du joueur sans la tête Render<?> render = mc.getRenderManager().getEntityRenderObject(player); if (render instanceof RenderPlayer) { RenderPlayer renderPlayer = (RenderPlayer) render; boolean oldHeadHidden = renderPlayer.getMainModel().bipedHead.isHidden; boolean oldHeadwearHidden = renderPlayer.getMainModel().bipedHeadwear.isHidden; renderPlayer.getMainModel().bipedHead.isHidden = true; renderPlayer.getMainModel().bipedHeadwear.isHidden = true; setArmorHeadVisibility(renderPlayer, false); renderPlayer.doRender(player, 0, 0, 0, player.rotationYaw, partialTicks); renderPlayer.getMainModel().bipedHead.isHidden = oldHeadHidden; renderPlayer.getMainModel().bipedHeadwear.isHidden = oldHeadwearHidden; setArmorHeadVisibility(renderPlayer, !oldHeadwearHidden); } // Nettoyage post rendu mc.entityRenderer.disableLightmap(); GlStateManager.disableRescaleNormal(); } catch (Exception e) { // silent fail } finally { GlStateManager.popAttrib(); GlStateManager.popMatrix(); } }   Ty for your help. 
    • Item successfully registered, but there was a problem with the texture of the item, it did not insert and has just the wrong texture.     
    • Keep on using the original Launcher Run Vanilla 1.12.2 once and close the game Download Optifine and run optifine as installer (click on the optifine jar) Start the launcher and make sure the Optifine profile is selected - then test it again  
    • Hi everyone, I’m hoping to revisit an old version of Minecraft — specifically around Beta 1.7.3 — for nostalgia’s sake. I’ve heard you can do this through the official Minecraft Launcher, but I’m unsure how to do it safely without affecting my current installation or save files. Are there any compatibility issues I should watch out for when switching between versions? Would really appreciate any tips or advice from anyone who’s done this before! – Adam
  • Topics

×
×
  • Create New...

Important Information

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