Jump to content

Recommended Posts

Posted

There's something wrong with your mods folder:

 

First, some mod archives are corrupt:

[11:38:47] [main/ERROR] [FML/]: Unable to read the jar file ThermalExpansion-[1.7.10]4.0.0B5-13.jar - ignoring
java.util.zip.ZipException: error in opening zip file

[11:38:47] [main/ERROR] [FML/]: Unable to read the jar file ThermalFoundation-[1.7.10]1.0.0B3-8.jar - ignoring
java.util.zip.ZipException: error in opening zip file

[11:38:47] [main/ERROR] [FML/]: Unable to read the jar file twilightforest-1.7.2-2.2.3.jar - ignoring
java.util.zip.ZipException: error in opening zip file

 

Then, you have a lot of duplicates:

 

[11:39:01] [Client thread/ERROR] [FML/]: Found a duplicate mod Growthcraft at [C:\Users\Huw\AppData\Roaming\.minecraft\mods\growthcraft-core-1.7.10-2.1.0a.jar, C:\Users\Huw\AppData\Roaming\.minecraft\mods\extrautilities-1.1.0i.jar]
[11:39:01] [Client thread/ERROR] [FML/]: Found a duplicate mod Growthcraft|Bees at [C:\Users\Huw\AppData\Roaming\.minecraft\mods\CoFHCore-[1.7.10]3.0.0B6-32.jar, C:\Users\Huw\AppData\Roaming\.minecraft\mods\growthcraft-bees-1.7.10-2.1.0.jar]
[11:39:01] [Client thread/ERROR] [FML/]: Found a duplicate mod MekanismGenerators at [C:\Users\Huw\AppData\Roaming\.minecraft\mods\immibis-core-59.0.1.jar, C:\Users\Huw\AppData\Roaming\.minecraft\mods\MekanismGenerators-1.7.10-7.1.1.127.jar]
[11:39:01] [Client thread/ERROR] [FML/]: Found a duplicate mod MekanismTools at [C:\Users\Huw\AppData\Roaming\.minecraft\mods\InventoryTweaks-1.58-147.jar, C:\Users\Huw\AppData\Roaming\.minecraft\mods\MekanismTools-1.7.10-7.1.1.127.jar]
[11:39:01] [Client thread/ERROR] [FML/]: Found a duplicate mod Waila at [C:\Users\Huw\AppData\Roaming\.minecraft\mods\OpenBlocks-1.7.10-1.3-snapshot-433.jar, C:\Users\Huw\AppData\Roaming\.minecraft\mods\Waila-1.5.8a_1.7.10.jar]
[11:39:01] [Client thread/ERROR] [FML/]: Found a duplicate mod witchery at [C:\Users\Huw\AppData\Roaming\.minecraft\mods\witchery-1.7.10-0.22.0.jar, C:\Users\Huw\AppData\Roaming\.minecraft\mods\OpenModsLib-1.7.10-0.6-snapshot-224.jar]

 

 

I suggest redownload the corrupt mods and delete the duplicates.

Don't ask for support per PM! They'll get ignored! | If a post helped you, click the "Thank You" button at the top right corner of said post! |

mah twitter

This thread makes me sad because people just post copy-paste-ready code when it's obvious that the OP has little to no programming experience. This is not how learning works.

Posted

if you take a closer look at what the duplicate is saying

 

Found a duplicate mod Growthcraft at [C:\Users\Huw\AppData\Roaming\.minecraft\mods\growthcraft-core-1.7.10-2.1.0a.jar, C:\Users\Huw\AppData\Roaming\.minecraft\mods\extrautilities-1.1.0i.jar]

 

 

from my understanding those two path's are the duplicates, so growthcraft is a duplicate of extra utils?

 

unless i'm reading this wrongly (entirely possible, i'm new at this)

 

i'm pretty sure there's only one of each mod in the folder, i've checked twice and moved each file over one by one

Posted

Where are you downloading these mods from?

FML won't say they are duplicates, unless they are duplicates.

 

I do Forge for free, however the servers to run it arn't free, so anything is appreciated.
Consider supporting the team on Patreon

Posted

I doubt that consdering you're downloading the same mod under different file names.

THere isnt much we can do about that, you have duplicates.

I do Forge for free, however the servers to run it arn't free, so anything is appreciated.
Consider supporting the team on Patreon

Posted

why would i lie? i've come here looking for help

 

this isn't the first pack i've compiled, this is the first time i've run into any problem

 

some of the files that are registering as duplicates have been used on my old server because i didnt need to update them

they didnt register as duplicates then

something is going wrong and im asking for some help

Posted

With what we have there is nothing I can do for you.

YOu have duplicates simple as that.

For further help you are required to provide your mod pack and a list fo EXACTLY where you downloaded every mod.

I do Forge for free, however the servers to run it arn't free, so anything is appreciated.
Consider supporting the team on Patreon

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

    • Hi, this is my second post with the same content as no one answered this and it's been a long time since I made the last post, I want to make a client-only mod, everything is ok, but when I use shaders, none of the textures rendered in RenderLevelStageEvent nor the crow entity model are rendered, I want them to be visible, because it's a horror themed mod I've already tried it with different shaders, but it didn't work with any of them and I really want to add support for shaders Here is how i render the crow model in the CrowEntityRenderer<CrowEntity>, by the time i use this method, i know is not the right method but i don't think this is the cause of the problem, the renderType i'm using is entityCutout @Override public void render(CrowEntity p_entity, float entityYaw, float partialTick, PoseStack poseStack, MultiBufferSource bufferSource, int packedLight) { super.render(p_entity, entityYaw, partialTick, poseStack, bufferSource, packedLight); ClientEventHandler.getClient().crow.renderToBuffer(poseStack, bufferSource.getBuffer(ClientEventHandler.getClient().crow .renderType(TEXTURE)), packedLight, OverlayTexture.NO_OVERLAY, Utils.rgb(255, 255, 255)); } Here renderLevelStage @Override public void renderWorld(RenderLevelStageEvent e) { horrorEvents.draw(e); } Here is how i render every event public void draw(RenderLevelStageEvent e) { for (HorrorEvent event : currentHorrorEvents) { event.tick(e.getPartialTick()); event.draw(e); } } Here is how i render the crow model on the event @Override public void draw(RenderLevelStageEvent e) { if(e.getStage() == RenderLevelStageEvent.Stage.AFTER_ENTITIES) { float arcProgress = getArcProgress(0.25f); int alpha = (int) Mth.lerp(arcProgress, 0, 255); int packedLight = LevelRenderer.getLightColor(Minecraft.getInstance().level, blockPos); VertexConsumer builder = ClientEventHandler.bufferSource.getBuffer(crow); Crow<CreepyBirdHorrorEvent> model = ClientEventHandler .getClient().crow; model.setupAnim(this); RenderHelper.renderModelInWorld(model, position, offset, e.getCamera(), e.getPoseStack(), builder, packedLight, OverlayTexture.NO_OVERLAY, alpha); builder = ClientEventHandler.bufferSource.getBuffer(eyes); RenderHelper.renderModelInWorld(model, position, offset, e.getCamera(), e.getPoseStack(), builder, 15728880, OverlayTexture.NO_OVERLAY, alpha); } } How i render the model public static void renderModelInWorld(Model model, Vector3f pos, Vector3f offset, Camera camera, PoseStack matrix, VertexConsumer builder, int light, int overlay, int alpha) { matrix.pushPose(); Vec3 cameraPos = camera.getPosition(); double finalX = pos.x - cameraPos.x + offset.x; double finalY = pos.y - cameraPos.y + offset.y; double finalZ = pos.z - cameraPos.z + offset.z; matrix.pushPose(); matrix.translate(finalX, finalY, finalZ); matrix.mulPose(Axis.XP.rotationDegrees(180f)); model.renderToBuffer(matrix, builder, light, overlay, Utils .rgba(255, 255, 255, alpha)); matrix.popPose(); matrix.popPose(); } Thanks in advance
    • Same issue - I have no idea
    • I am trying to develop a modpack for me and my friends to use on our server. Does anyone know how to develop a modpack for a server or could they help take a look at my modpack to potentially help at all?
    • un server de armas realista.  
    • removed both, nope https://pastebin.com/kgtwq9us
  • Topics

×
×
  • Create New...

Important Information

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