Everything posted by warjort
-
Minecraft server crashing randomly?
* That error report and command line shows you using the minecraft vanilla server not forge * It also shows you trying to use java 17 when minecraft/forge 1.12.2 only works with java 8 * minecraft/forge 1.12.2 is no longer supported in these forums https://forums.minecraftforge.net/topic/91712-supported-version-directory/
-
All the mods 8 crash when loading back into server
As I said above, you need to talk to nvidia about crashes in their driver. All I can see is minecraft doing an opengl call:
-
All the mods 8 crash when loading back into server
That is information collected by java from the operating system. You would need to ask your java vendor. In your case microsoft, the link is in the crash report: http:// https://github.com/microsoft/openjdk/issues
-
I'm trying to make a server pack for my modpack but i keep getting this error whenever i try to join please help
You need to enable debug for the client and add the following to its java arguments so we can see the full stacktrace of that NPE error. -Dforge.logging.mojang.level=debug
-
Help me pls!!!
Looks like an issue with optifine? If you are using their latest 1.19.4 preview release, you need to contact them.
-
(My own forge 1.18.2 server) When I run using .bat file, it says this. When I press any key as told, command prompt closes.
Now it says you are trying to load a world that was created with custom mod dimensions, but you no longer have those mods installed. i.e. hem and beyond_earth
-
I can't start my minecraft server
No idea. All I can tell you is what errors appear in the logs you posted. You should report the issue to multicraft or the BetterMC modpack developers. Maybe they know?
-
Playing modded and I can't figure out why this is happening
Issue with quark, check you have the latest version, etc.
-
(My own forge 1.18.2 server) When I run using .bat file, it says this. When I press any key as told, command prompt closes.
It starts at line 2080 in that file you uploaded. If you are having difficulty with the byg config, I suggest you contact the byg mod authors. Usually if you have a broken config file, you can delete it and the mod will recreate with default values.
-
Exception in server tick loop
Looks like a conflict between the pluto mod and immersive portals. Check you have the latest versions of these mods then contact the mod authors.
-
I can't start my minecraft server
BTW: The last thing in the logs for the server you posted is this: Which suggests you have a mod trying to load client classes on the server. Just above it I can see you have rubidium installed which is a client side only mod you don't need on the server. You likely have others?
-
I can't start my minecraft server
Please don't post logs in the forums, use a file upload site. Trying to use search in the forums is impossible, especially when there are multiple logs. The log(s) you just posted all finish at 10:09:40. They don't show the original error you posted which was at 10:46:14 I would guess you are looking in the wrong place for the logs? Your original error shows minecraft installed in /custom_forge while the logs show it is in /home/admin1/multicraft/servers/server577/
-
Unable to Install Recommended or Latest Forge 1.19.3
Issue with journeymap. Check you have the latest version then contact the mod author.
-
Playing modded and I can't figure out why this is happening
Issue with the darkerdepths mod. Check you have the latest version then contact the mod author.
-
Problem with serveur minecraft 1.19.2
It is you that needs to supply more information. Like the debug.log so we can see the error. Likely you only installed a mod on the server and not the client. That usually won't work.
-
Unable to Install Recommended or Latest Forge 1.19.3
That error message says the file that got downloaded is not the file it expected. The file hash does not match. This usually means either; * The file didn't download properly, so try downloading it again * You have been using a hacked version of minecraft so you are not connecting to mojang's website to download the files (pirated minecraft is not supported in this forum).
-
getting exit code 1 every time I try to launch forge 1.19.3-forge-44.1.0
You are trying to use optifine for 1.16.5 with minecraft 1.19.3?
-
(My own forge 1.18.2 server) When I run using .bat file, it says this. When I press any key as told, command prompt closes.
Some problems with your byg config files: e.g. one is You probably uninstalled immersiveenginnering and now the config is invalid? Look at the error message for a complete list of problems.
-
I can't open the forge installer "forge-1.19.3-44.1.0-mdk"
The MDK is an archive not a program. You unzip it. Or use jar -xf file-name which is the same thing as unzipping.
-
How to add Tree decorators to my tree?
Only providing snippets of code out of context and no error message means you are unlikely to get help. And directly registering features hasn't been the correct thing to do since at least minecraft 1.18.1
-
Automaticlly accept all mod items and blocks into creative tab
Add some debug for the results of your Block.asItem() calls. I bet at least one of the is "minecraft:air", i.e. not registered/found so its count will be zero. I would also guess that your ITEMS.getValues() contains those BlockItems anyway. Otherwise how are they are registered? So the Block part is duplicate work.
-
I can't start my minecraft server
That debug.log is from 30 minutes before your crash: 10:46:14 (crash) vs 10:09:40 (debug.log)
-
Creative Mode Tab Help
The modern way to register CreativeModeTabs is: https://github.com/MinecraftForge/MinecraftForge/blob/f03adc840e031b0c772e07ddda4ab910e367469a/src/main/java/net/minecraftforge/event/CreativeModeTabEvent.java#L56 e.g. from the forge tests https://github.com/MinecraftForge/MinecraftForge/blob/44c689f1712fcfb7ccb13262d1c02f0a880055be/src/test/java/net/minecraftforge/debug/CreativeModeTabTest.java
-
Automaticlly accept all mod items and blocks into creative tab
Posting code snippets out of context and not showing the error isn't going to get you much help. We have no psychic powers.
-
An error when starting world
You are trying to use the 1.19.4 version of appleskin with minecraft 1.19.2 That isn't going to work well.