Everything posted by warjort
-
Lots of errors on server launch (doesn't crash)
There are many of these kind of errors. I would guess these are recipes provided by one of your mods that are intended for a mod (mekanism) you don't have installed? The mod author hasn't used conditional recipe loading to check if mekanism is installed so you get that error. They have also put them in the mekanism namespace instead of the one for their mod, so we can't see which mod is causing the problem. It's probably whichever mod creates "sculk stone". All it means is you can't use that recipe (not really a problem if you don't have mekanism installed) and you get a lot of noise in the log. Another error is a broken loot table for the cataclysm mod which means the block won't drop anything when broken. You should contact the catacylsm mod author about this.
-
cant fix "game crashed whilst rendereing an overlay"
You need to close whichever program has it locked. Probably you have minecraft already running or a previous minecraft failed to stop properly? Check task manager for java processes or restart your computer.
-
[1.19.3] Block and Item Texture Folders are not Detected and Blocks display pink and black texture
1.19.3 change notes: https://feedback.minecraft.net/hc/en-us/articles/11280166737293-Minecraft-Java-Edition-1-19-3 You have textures/blocks
-
1.19.2 org.spongepowered.asm.mixin.transformer.throwables.MixinTransformerError
Oculus issue: https://github.com/Asek3/Oculus/issues/257
-
ATERNOS SERVER ERROR
You have different versions of incapacitated mod on the client and server.
-
minecraft error
Looks like you are missing the mrcrayfish framework mod.
-
org.spongepowered.asm.mixin.transformer.throwables.MixinTransformerError: An unexpected critical error was encountered
Crash in rubidium trying to modify client side only classes on the server. Rubidium is a broken client side only mod that doesn't disable itself properly on the server, you don't need it on the server.
-
[1.19.2] wheres the renderer class for the Fireball entity ?
EnttityRenderers Fireball -> ThrownItemRenderer
-
1.19 Server Crashing Upon Launch (SOLVED)
As it says, the neat, entity culling and raised mods all had errors during loading. Since you don't post a link to the logs/debug.log (or even the full crash report) I can't tell you what those problems are. I believe at least the entity culling mod is a client side only mod you don't need on the server and probably hasn't been coded properly to disable itself on a server?
-
[1.18.x-1.19.x] How to create the GuiConfig from back in 1.12 and older versions
Something like: @EventBusSubscriber(modid = MODID, bus = Bus.MOD, value = Dist.CLIENT) public class ConfigScreenTest { @SubscribeEvent public static void clientSetupEvent(FMLClientSetupEvent event) { event.enqueueWork(() -> { ModLoadingContext.get().registerExtensionPoint(ConfigScreenFactory.class, () -> new ConfigScreenFactory(ConfigScreenTest::createConfigScreen)); }); } public static Screen createConfigScreen(Minecraft minecraft, Screen mainConfigScreen) { return new ErrorScreen(Component.literal("Title"), Component.literal("Error")); } } Obviously you should minecraft.setScreen(mainConfigScreen) when you are done, unlike my stupid example. 🙂
-
Minecraft Crashes
Install the latest preview release of optifine.
-
cant fix "game crashed whilst rendereing an overlay"
It says it can't open the config file in write mode because something else has it locked.
-
Again over and over, problem with using essentials I guess...
Oculus issue: https://github.com/Asek3/Oculus/issues/257
-
LAN Disconnect
Please don't post logs in the forums. Put them on a file sharing site like gist. You have a tonne of networking errors for the monsters and girls mod. e.g. And a potential problem with the mobvote2022 mod Check you have the latest versions of these mods then contact the mod authors.
-
Crash minecraft modded 1.19
One of your configuration files is broken. It's in the config subfolder. If you don't have a backup, delete the file and it will be recreated with default values.
-
Minecraft crashes when loading screen please help
Oculus issue: https://github.com/Asek3/Oculus/issues/257
-
Minecraft crashing with Create mod. Exit code: -1073740940
Crash in the java virtual machine, contact microsoft. Or try a different java. Sometimes an access violation can just be it running out of memory and java not handling it correctly.
-
Java is crashing Minecraft 1.18.2 for some reason.
Issue with the java virtual machine. Contact microsoft. Or try a different version of java: https://adoptium.net/ Sometimes an access violation can just be you running out of memory and java not handling it correctly.
-
Minecraft crashing with Create mod. Exit code: -1073740940
That error code is a crash in native code. It means windows has detected the program has corrupted its memory. Usual causes are a bug in your graphics driver or java virtual machine. Make sure these are up-to-date or try a different version of java: https://adoptium.net/ You probably have a file beginning hs_err_pid in your minecraft folder from the time of the crash. If you do just post the first 20 lines so we can see the error. Or the launcher_log.txt will sometimes include this information.
-
I keep crashing with the 1 exit code
Looks like one of your mod files is corrupted and not a valid jar file (probably because it didn't finish downloading it properly). The error message does not say which one. Try redownloading your mods until you find the one that fixes the problem. Or you can try to open each mod file with a program like winzip which should tell you if it is a valid zip/jar file.
-
Can't download forge it says error
There are 2 main reasons for getting this error: 1) You have a very old version of java that has expired trust certificates so java can't create https sessions. The solution is to upgrade java to a recent version. The original poster already has java 19 so that is not the issue here. 2) You have been using cracked minecraft that has modified your hosts file to redirect requests to minecraft's download site to some other dodgy website. When the forge installer tries to download minecraft you get the above error, which basically says "that's not the official download site". Pirated versions of minecraft are not supported in this forum.
-
I keep crashing with the 1 exit code
No error in that file either. Read my footer for how to get the launcher_log.txt
-
The game crashed whilst rendering overlay, AGAIN.
install the latest preview release of optifine.
-
Create Mod Crashing
This is a crash in the java virtual machine. You need to report it to microsoft. Or try a different version of java: https://adoptium.net/
-
Minecraft 1.19.3 Crash
You are missing the architectury mod. You have a mod that is not a 1.19.3 mod.