Jump to content

Recommended Posts

Posted

I imagine I'll get banned for doing something wrong, so I apologise in advance.

 

I've been trying to set up a custom modpack on a server, made the pack in curse launcher etc etc. Everytime I add things that require forge, the server just crashes. I've installed the latest versions of forge and the mods that require forge and crash (Cofh), and I'm just flailing wildly now to try and find help.

 

I'm not sure this is the required file, but if it's not I do apologise.

  Reveal hidden contents

 

Posted

The forge website shows 14.23.3.2673, as being the latest, I assumed this was the case? I've tried using the older version that the log requests, but that didn't work either.

Posted

Is there anywhere else a crash report might be generated? I've re-installed everything and now it's crashing without making a crash report to that location.

Posted
[12:01:30] [Server thread/INFO]: Starting minecraft server version 1.12.2
[12:01:31] [Server thread/ERROR]: Encountered an unexpected exception
net.minecraftforge.fml.common.MultipleModsErrored: null
    at net.minecraftforge.fml.common.Loader.sortModList(Loader.java:300) ~[Loader.class:?]
    at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:547) ~[Loader.class:?]
    at net.minecraftforge.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:97) ~[FMLServerHandler.class:?]
    at net.minecraftforge.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:331) ~[FMLCommonHandler.class:?]
    at net.minecraft.server.dedicated.DedicatedServer.func_71197_b(DedicatedServer.java:125) ~[nz.class:?]
    at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:484) [MinecraftServer.class:?]
    at java.lang.Thread.run(Thread.java:745) [?:1.8.0_121]
[12:01:31] [Server thread/ERROR]: This crash report has been saved to: /.rw/games/minecraft/beta/2702469/./crash-reports/crash-2018-04-26_12.01.31-server.txt
[12:01:31] [Server thread/INFO]: Stopping server
[12:01:31] [Server thread/INFO]: Saving worlds
[12:01:31] [Server Shutdown Thread/INFO]: Stopping server
[12:01:31] [Server Shutdown Thread/INFO]: Saving worlds

 

 

I appreciate any help you can provide, I'm not smart enough to understand this other than Forge dislikes some mods?
 

Posted

I don't have any mods installed now except for RedstoneFlux, CoFHWorld, and CoFH Core. If I remove CoFH Core it launches, so I assume this is the error? Do you think it's worth my while trying to contact the author?

Posted

This is why posting the FULL LOG FILE is important.

It will tell us exactly what files it is scanning for mods and which ones it is loading.

Delete the logs folder, re-run it, and give us all the files it creates.

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 am sorry, as I said I'm very new to this so your patience is appreciated. 

 

I did as you suggested, deleted the logs file and started the server once more. It crashed instantly and made a new logs folder, however there's no new crash report and the logs folder is empty.

Posted

Then show us the full screenshot of you running the server from the command line.

There is ALWAYS a log SOMEWHERE.

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

  • 2 years later...
Posted

Hi i GOT this error

[12:49:49] [Server thread/ERROR]: Encountered an unexpected exception

3net.minecraftforge.fml.common.MultipleModsErrored: null

4at net.minecraftforge.fml.common.Loader.sortModList(Loader.java:300) ~[Loader.class:?]

5at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:547) ~[Loader.class:?]

6at net.minecraftforge.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:97) ~[FMLServerHandler.class:?]

7at net.minecraftforge.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:331) ~[FMLCommonHandler.class:?]

8at net.minecraft.server.dedicated.DedicatedServer.func_71197_b(DedicatedServer.java:122) ~[nx.class:?]

9at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:483) [MinecraftServer.class:?]

10at java.lang.Thread.run(Thread.java:748) [?:1.8.0_222]

11[12:49:49] [Server thread/ERROR]: This crash report has been saved to: /aternos/server/./crash-reports/crash-2020-05-30_12.49.49-server.txt

 

 

Help 

Guest
This topic is now closed to further replies.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Hi everyone, I'm currently developing a Forge 1.21 mod for Minecraft and I want to display a custom HUD overlay for a minigame. My goal: When the game starts, all players should see an item/block icon (from the base game, not a custom texture) plus its name/text in the HUD – similar to how the bossbar overlay works. The HUD should appear centered above the hotbar (or at a similar prominent spot), and update dynamically (icon and name change as the target item changes). What I've tried: I looked at many online tutorials and several GitHub repos (e.g. SeasonHUD, MiniHUD), but most of them use NeoForge or Forge versions <1.20 that provide the IGuiOverlay API (e.g. implements IGuiOverlay, RegisterGuiOverlaysEvent). In Forge 1.21, it seems that neither IGuiOverlay nor RegisterGuiOverlaysEvent exist anymore – at least, I can't import them and they are missing from the docs and code completion. I tried using RenderLevelStageEvent as a workaround but it is probably not intended for custom HUDs. I am not using NeoForge, and switching the project to NeoForge is currently not an option for me. I tried to look at the original minecraft source code to see how elements like hearts, hotbar etc are drawn on the screen but I am too new to Minecraft modding to understand. What I'm looking for: What is the correct way to add a custom HUD element (icon + text) in Forge 1.21, given that the previous overlay API is missing? Is there a new recommended event, callback, or method in Forge 1.21 for custom HUD overlays, or is everyone just using a workaround? Is there a minimal open-source example repo for Forge 1.21 that demonstrates a working HUD overlay without relying on NeoForge or deprecated Forge APIs? My ideal solution: Centered HUD element with an in-game item/block icon (from the base game's assets, e.g. a diamond or any ItemStack / Item) and its name as text, with a transparent background rectangle. It should be visible to the players when the mini game is running. Easy to update the item (e.g. static variable or other method), so it can change dynamically during the game. Any help, code snippets, or up-to-date references would be really appreciated! If this is simply not possible right now in Forge 1.21, it would also help to know that for sure. Thank you very much in advance!
    • The simple answer is there is not an easy way. You would need to know how to program in Java, as well as at least some familiarity with how Forge works so you could port the differences. You would also need the sourcecode for the original mod, and permission from the author to modify it, if they did not use some sort of open source license. So it's not impossible, but it would take some effort, but doing so would open up a whole new world of possibilities for you!
    • Does it still crash if you remove holdmyitems? Looks like that mod doesn't work on a server as far as I can tell from the error.  
    • Crashes the server when trying to start. Error code -1. Log  
  • Topics

  • Who's Online (See full list)

    • There are no registered users currently online
×
×
  • Create New...

Important Information

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