Jump to content

Recommended Posts

Posted

My brother and I are trying to play a LAN server with mods but i cant join him and the same message of Mismatched mod channel list shows up, he can host a world and turn on LAN and play like normal, I just cant join for some reason and its frustrating, please help

  • 1 month later...
Posted

I have the same problem and neither my friend (that runs the server) can't join .

The first photo is my .minecraft/mods folder...image.png.3a96ba67a3ccd8357aa6c098309f2324.png

And this one is the server "mods" folderimage.png.b17109b9fb3625ad61578096507c4db9.png

Please help...

Pd:i've already tried to eliminate the folder "mamiyaotaru" but nothing seems to change

  • Like 1
Posted

I'm having the exact same problem, I'm doing a 1.14.4 modded survival server with Apex Hosting and it's giving me the same error.

 

Also Sbeego99, if you would like to play with us or if we can play on ur server, or maybe if we can help each other out that would be great. If you have Discord add me at extra#4401 and my Minecraft username is extr4

Posted
  On 8/27/2019 at 3:43 AM, extr4 said:

I'm having the exact same problem, I'm doing a 1.14.4 modded survival server with Apex Hosting and it's giving me the same error.

 

Also Sbeego99, if you would like to play with us or if we can play on ur server, or maybe if we can help each other out that would be great. If you have Discord add me at extra#4401 and my Minecraft username is extr4

Expand  

Please don't hijack other people's threads.

If you have an issue please make your own thread.

This is my Forum Signature, I am currently attempting to transform it into a small guide for fixing easier issues using spoiler blocks to keep things tidy.

 

As the most common issue I feel I should put this outside the main bulk:

The only official source for Forge is https://files.minecraftforge.net, and the only site I trust for getting mods is CurseForge.

If you use any site other than these, please take a look at the StopModReposts project and install their browser extension, I would also advise running a virus scan.

 

For players asking for assistance with Forge please expand the spoiler below and read the appropriate section(s) in its/their entirety.

  Reveal hidden contents

 

Posted
  On 8/28/2019 at 2:57 PM, Sbeego99 said:

ok sorry

Expand  

Sbeego99, I have found out it is the 1.14.4 Forge and the mods that are the problem.

 

Ok so basically, since Forge 1.14.4 is fairly new, it is very buggy and unstable and even the main menu states that, but anyways, you can always ask live support from Apex Hosting, like I did but it was as simple as trial and error, Just take out all the mods and put one at a time, some of the mods I used like Amas Damage Indicator mod breaks the game so get rid of that. Other then that, again, just trial and error and get rid of one mod at a time, it is probably just Amas Damage Indicators mod though. If you need help ask live support or add me on discord at extra#4401 I'll gladly help. Also, DaemonUmbra was talking to me I'm pretty sure even though I was just confused at the time.

Posted
  On 8/30/2019 at 12:22 AM, extr4 said:

Sbeego99, I have found out it is the 1.14.4 Forge and the mods that are the problem.

 

Ok so basically, since Forge 1.14.4 is fairly new, it is very buggy and unstable and even the main menu states that.

Expand  

Try using Forge 28.0.55. That one seams to work the best for now as far as I have tested.

Posted

I was talking to all of you, this thread is borderline dead as OP has not said anything in a month and a half

This is my Forum Signature, I am currently attempting to transform it into a small guide for fixing easier issues using spoiler blocks to keep things tidy.

 

As the most common issue I feel I should put this outside the main bulk:

The only official source for Forge is https://files.minecraftforge.net, and the only site I trust for getting mods is CurseForge.

If you use any site other than these, please take a look at the StopModReposts project and install their browser extension, I would also advise running a virus scan.

 

For players asking for assistance with Forge please expand the spoiler below and read the appropriate section(s) in its/their entirety.

  Reveal hidden contents

 

Guest
This topic is now closed to further replies.

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.