Jump to content

Recommended Posts

Posted

I try to launch minecraft after installing forge. It won't start. I'll post de logfile. Can someone help me?

 

22:20:14.798

launcher

main

Minecraft client 1.18.1-forge-39.0.75 is ready to start.

22:20:14.798

launcher

main

Starting!

22:20:22.606

launcher

main

Version does not support log configuration, will assume one plaintext entry per line

22:20:25.209

game

2022-02-12 22:20:25,192 main WARN Advanced terminal features are not available in this environment

22:20:25.399

game

[22:20:25] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher running: args [--username, Zira23, --version, 1.18.1-forge-39.0.75, --gameDir, C:\Users\tvlug\AppData\Roaming\.minecraft, --assetsDir, C:\Users\tvlug\AppData\Roaming\.minecraft\assets, --assetIndex, 1.18, --uuid, 61b7a1352dc5432f8184016210f0fdf2, --accessToken, ????????, --clientId, MDQ1NjIzNGItZTJlMi00ZGRjLTlmZDQtOWUzM2E5YTY4OThh, --xuid, 2535441573953850, --userType, msa, --versionType, release, --launchTarget, forgeclient, --fml.forgeVersion, 39.0.75, --fml.mcVersion, 1.18.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20211210.034407]

22:20:25.403

game

[22:20:25] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher 9.1.0+9.1.0+main.6690ee51 starting: java version 17.0.1 by Microsoft

22:20:25.621

game

Exception in thread "main" java.lang.module.ResolutionException: Module OptiFine._1._16._5.HD.U.G7 contains package net.minecraftforge.eventbus.api, module eventbus exports package net.minecraftforge.eventbus.api to OptiFine._1._16._5.HD.U.G7

22:20:25.621

game

at java.base/java.lang.module.Resolver.resolveFail(Resolver.java:901)

22:20:25.621

game

at java.base/java.lang.module.Resolver.failTwoSuppliers(Resolver.java:807)

22:20:25.621

game

at java.base/java.lang.module.Resolver.checkExportSuppliers(Resolver.java:736)

22:20:25.621

game

at java.base/java.lang.module.Resolver.finish(Resolver.java:380)

22:20:25.621

game

at java.base/java.lang.module.Configuration.<init>(Configuration.java:140)

22:20:25.621

game

at java.base/java.lang.module.Configuration.resolveAndBind(Configuration.java:494)

22:20:25.621

game

at MC-BOOTSTRAP/cpw.mods.modlauncher@9.1.0/cpw.mods.modlauncher.ModuleLayerHandler.buildLayer(ModuleLayerHandler.java:70)

22:20:25.621

game

at MC-BOOTSTRAP/cpw.mods.modlauncher@9.1.0/cpw.mods.modlauncher.ModuleLayerHandler.buildLayer(ModuleLayerHandler.java:82)

22:20:25.621

game

at MC-BOOTSTRAP/cpw.mods.modlauncher@9.1.0/cpw.mods.modlauncher.TransformationServicesHandler.discoverServices(TransformationServicesHandler.java:128)

22:20:25.621

game

at MC-BOOTSTRAP/cpw.mods.modlauncher@9.1.0/cpw.mods.modlauncher.Launcher.run(Launcher.java:86)

22:20:25.630

game

at MC-BOOTSTRAP/cpw.mods.modlauncher@9.1.0/cpw.mods.modlauncher.Launcher.main(Launcher.java:77)

22:20:25.630

game

at MC-BOOTSTRAP/cpw.mods.modlauncher@9.1.0/cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26)

22:20:25.630

game

at MC-BOOTSTRAP/cpw.mods.modlauncher@9.1.0/cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23)

22:20:25.630

game

at cpw.mods.bootstraplauncher@1.0.0/cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:149)

22:20:25.692

monitor

Process Monitor

Process crashed with exit code 1

Posted

this is the message in the debug log

19:32:40.903

launcher

main

Prepared asset index

19:32:41.464

launcher

main

Have 3116 total files to check or download

19:32:41.468

launcher

main

Waiting for 3116 futures

19:32:42.204

launcher

main

Nothing to download!

19:32:42.204

launcher

main

Downloading Java Runtime java-runtime-beta:17.0.1.12.1

19:32:42.564

launcher

main

Extracting 8 files!

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.