Jump to content

Forge and modloader error, but I didn't install modloader?


monsterjohn

Recommended Posts

This is my log:

*** MagicMinecraftLauncher 1.0.0 ***

Disable inactive mods

2013-02-22 22:45:38 [iNFO] [ForgeModLoader] Forge Mod Loader version 4.7.4.520 for Minecraft 1.4.7 loading

2013-02-22 22:45:38 [sEVERE] [ForgeModLoader] FML appears to be missing any signature data. This is not a good thing

2013-02-22 22:45:50 [iNFO] [sTDERR] java.lang.reflect.InvocationTargetException

2013-02-22 22:45:50 [iNFO] [sTDERR]    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

2013-02-22 22:45:50 [iNFO] [sTDERR]    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

2013-02-22 22:45:50 [iNFO] [sTDERR]    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

2013-02-22 22:45:50 [iNFO] [sTDERR]    at java.lang.reflect.Method.invoke(Unknown Source)

2013-02-22 22:45:50 [iNFO] [sTDERR]    at magic.launcher.Launcher.main(Unknown Source)

2013-02-22 22:45:50 [iNFO] [sTDERR] Caused by: java.lang.RuntimeException: java.lang.RuntimeException: java.lang.RuntimeException: Invalid ModLoader class detected

2013-02-22 22:45:50 [iNFO] [sTDERR]    at cpw.mods.fml.relauncher.FMLRelauncher.setupHome(FMLRelauncher.java:175)

2013-02-22 22:45:50 [iNFO] [sTDERR]    at cpw.mods.fml.relauncher.FMLRelauncher.relaunchApplet(FMLRelauncher.java:242)

2013-02-22 22:45:50 [iNFO] [sTDERR]    at cpw.mods.fml.relauncher.FMLRelauncher.appletEntry(FMLRelauncher.java:212)

2013-02-22 22:45:50 [iNFO] [sTDERR]    at net.minecraft.client.MinecraftApplet.init(MinecraftApplet.java:25)

2013-02-22 22:45:50 [iNFO] [sTDERR]    at net.minecraft.client.Minecraft.main(Minecraft.java:2277)

2013-02-22 22:45:50 [iNFO] [sTDERR]    ... 5 more

2013-02-22 22:45:50 [iNFO] [sTDERR] Caused by: java.lang.RuntimeException: java.lang.RuntimeException: Invalid ModLoader class detected

2013-02-22 22:45:50 [iNFO] [sTDERR]    at cpw.mods.fml.relauncher.RelaunchLibraryManager.handleLaunch(RelaunchLibraryManager.java:265)

2013-02-22 22:45:50 [iNFO] [sTDERR]    at cpw.mods.fml.relauncher.FMLRelauncher.setupHome(FMLRelauncher.java:155)

2013-02-22 22:45:50 [iNFO] [sTDERR]    ... 9 more

2013-02-22 22:45:50 [iNFO] [sTDERR] Caused by: java.lang.RuntimeException: Invalid ModLoader class detected

2013-02-22 22:45:50 [iNFO] [sTDERR]    at cpw.mods.fml.common.asm.FMLSanityChecker.call(FMLSanityChecker.java:118)

2013-02-22 22:45:50 [iNFO] [sTDERR]    at cpw.mods.fml.common.asm.FMLSanityChecker.call(FMLSanityChecker.java:34)

2013-02-22 22:45:50 [iNFO] [sTDERR]    at cpw.mods.fml.relauncher.RelaunchLibraryManager.handleLaunch(RelaunchLibraryManager.java:261)

2013-02-22 22:45:50 [iNFO] [sTDERR]    ... 10 more

 

And I only had: Mo creatures, Forge .497, Galacticraft, GUIapi, Hats mod, Wild Caves 3, Better Storage, Custom mobspawner, NIE and the requirements for NEI and also optifine, I didn't install modloader, and it comes up with a modloader in environment error. Please help? P.S, all the mods were up-to-date.

Link to comment
Share on other sites

One or more of your mods is overriding the ModLoader class, which means it wont work with forge as we need control over that class.

Aside from that seems you havent installed Forge's META-INF folder?

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

Link to comment
Share on other sites

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

    • I recently updated my mods and now my game is crashing on startup i tried adding them one at a time and couldn't find anything wrong and no crash log is being made the only thing I have is the debug log. If it helps I'm also using the curseforge launcher to launch the game. Minecraft version- 1.20.1 Forge Version-47.2.0 https://gist.github.com/keepinitreal247/d3105af6bb70e30f183505715113c61a
    • i managed to use another launcher but it still says logging in
    • i tried to open the modpack with multimc by importing it from Ftb and it gave me an error https://paste.ee/p/YDqWN
    • Hi, I'm trying to render a single quad in the world. I'm mixing into the ChestRenderer class. If I understand correctly, BufferSource#getBuffer opens a buffer according to the supplied RenderType (Quads with POSITION_COLOR in my case). Then, I can supply my vertices (a simple 1-block plane along the Z Axis) and close the buffer using BufferSource#endBatch for rendering. This is the code I'm using: @Inject(at = @At("TAIL"), method = "render(...)V") public void render(T blockEntity, float partialTick, PoseStack poseStack, MultiBufferSource multiBufferSource, int packedLight, int packedOverlay, CallbackInfo ci) { BlockPos pos = blockEntity.getBlockPos(); AABB box = new AABB(pos, pos.offset(1, 1, 1)); BufferSource buffer = Minecraft.getInstance().renderBuffers().bufferSource(); VertexConsumer consumer = buffer.getBuffer(RenderType.guiOverlay()); poseStack.pushPose(); poseStack.translate(-pos.getX(), -pos.getY(), -pos.getZ()); consumer.vertex(box.minX, box.maxY, box.minZ).color(1, 1, 1, 1).endVertex(); consumer.vertex(box.minX, box.maxY, box.maxZ).color(1, 1, 1, 1).endVertex(); consumer.vertex(box.minX, box.minY, box.maxZ).color(1, 1, 1, 1).endVertex(); consumer.vertex(box.minX, box.minY, box.minZ).color(1, 1, 1, 1).endVertex(); buffer.endBatch(RenderType.guiOverlay()); poseStack.popPose(); } However, the plane does not get rendered. However, if I replace those 4 vertices with a call to LevelRenderer#renderLineBox and set the RenderType to LINES, it works. Do I need something else to render planes other than the 4 edges of the quad? I used QUADS back in 1.8 where it was still the raw OpenGL type and it worked then. Or am I missing something else entirely? Thanks!
  • Topics

×
×
  • Create New...

Important Information

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