Everything posted by warjort
-
[1.19.2] ATM 8 - Exit Code: 1
There is no real error in that log. The last thing in the log is this: [31Dec2022 10:31:21.341] [Render thread/ERROR] [Quartz/OpenGLSelector/]: Quartz OpenGL version search enabled, this may potentially cause issues with some graphics cards, please report issues [31Dec2022 10:31:21.341] [Render thread/INFO] [Quartz/OpenGLSelector/]: Searching for latest OpenGL version [31Dec2022 10:31:21.342] [Render thread/INFO] [Quartz/OpenGLSelector/]: Attempting version 4.6 Which suggests it might be a problem with quartz or your graphics driver. If that is the full log, post a link to your launcher_log.txt
-
[1.19.2] crash on world gen due to blueprint?
The error shows a error raised by blueprint. But the actually error is usually caused by a conflict between 2 or more mods. See this link for an explanation and a mod to help debug which mods might be causing it. https://misode.github.io/guides/feature-order-cycle/#:~:text=Feature order cycles happen when,but in a different order.
-
Please Help
The error says one of your world gen configuration files (either from a mod or a datapack) is looking for some biomeoplenty worldgen configuration which you don't have. You don't post a link to your logs/debug.log so we can't give anymore information than that. Check you have the latest versions of biomesoplenty and minecolonies then contact the mod authors.
-
Minecraft crashes when I try to break a block
You don't post a link to your logs/debug.log so we can tell you which mod is causing the problem. That kind of error is usually caused by installing a mod for the wrong version of minecraft.
-
Internal Exception: io.netty.handler.codec.DecoderException: java.lang.IndexOutOfBoundsException: readerIndex(19139) + length(1
The error indicates a bug in one of your mods networking code. The jvm argument you added, just enables debug logging for Mojang's networking code. You don't post a link to your logs/debug.log Usually with this kind of problem, the only way to find the broken mod is to experiment with removing mods until the problem goes away. Backup your world before removing mods.
-
[1.19.2] [SOLVED] Cannot get passengers of an entity when there are multiple instances of the entity in the world.
If you want to modify the deltaMovement on the server for a player, see https://forums.minecraftforge.net/topic/119307-any-idea-on-how-to-make-the-screen-shake/?do=findComment&comment=523410 That isn't the full story though. When it comes to entities and passengers, you need to look at Entity.isControlledByLocalInstance() and LivingEntity.isEffectiveAi() and how different types of entities override these methods. Good luck understanding how this fully works, because I don't. 🙂 basic examples; * entities are normally controlled by the server * but players are normally controlled by the client * but if an entity has the player as a passenger then it is controlled by the client/player * unless the player is not the controlling passenger then they are both controlled by the server (e.g. riding a pig without a carrot on a stick) Confused yet? 🙂
-
Game Crashes When Making World.
Oculus issue: https://github.com/Asek3/Oculus/issues/257
-
My friends minecraft is crashing every time he joins the server and its giving him a weird error code (-1073740940)
Issue with microsoft java virtual machine. Contact them or try a different version of java. But maybe you have this problem? https://forums.minecraftforge.net/topic/119518-exit-code-1073740940/#comment-524102
-
[1.19.2] Sharing textures between mods
I have no idea what you need to do. I have never played with it. I only answered this question because of the 1.19.3 change. The wiki says: Of course, I might be completely misleading you into the wrong direction. As I said, I know little about this feature.
-
[1.19.2] PlayerInteractEvent#EntityInteract
It's a runtime event. Not a mod initialisation event. You register on the Forge event bus. https://forge.gemwire.uk/wiki/Events#Main_Forge_Event_Bus
-
Got a " The game crashed whilst rendering overlay" error.
You have 8 mods that want a different version of forge. Try updating to the most recent version of forge for 1.18.2 I know create wants at least forge 40.1.60 https://github.com/Creators-of-Create/Create/blob/8d89080bc065d54d23c55adeede17f6dc066dafd/gradle.properties#L11
-
Payload may not be larger than 1048576 bytes
Unfortunately that log doesn't give any new information. From the other information you have posted, it would not surprise me if whatever is causing the problem is a side effect of the data corruption you mention.
-
1.19.2 Modpack Crashing When Joining World (org.spongepowered.asm.mixin.transformer.throwables.MixinTransformer)
Oculus issue: https://github.com/Asek3/Oculus/issues/257
-
[1.19.2] Sharing textures between mods
It's not something I know a lot about, but I bet this has something to do with how you configure the existing files helper? https://forge.gemwire.uk/wiki/Datageneration/States_and_Models
-
1.19 Server Not Launching
One of your config files is invalid/corrupted. You can find it in the config folder. If you dont have a backup, you can delete the file and it should be recreated with default values.
-
Payload may not be larger than 1048576 bytes
Yes. It enables logging for mojang's networking code. If I were you I would do this: * Start with a clean install * Add mods "one by one" or in small groups and test it, until you hit the error. Then you have a better idea which mod(s) are causing the problem * Once the issue is resolved, replace that test world with your backed up world
-
[1.18.2] How to get painting entity at block position
It returns whatever you ask for based on the entity predicate.
-
[1.19.2] Sharing textures between mods
If this is 1.19.3, textures need to be in the item folder not items. See Mojang's change notes Otherwise you are going to need to show more than just 4 lines of json, preferably on github. Does changing it to use minecraft:item/apple work?
-
Server 1.18.2 crash
Use java 17, mixin does not support java 19
-
Exit Code -1073740940
That is a crash in the java virtual machine. Did you try the create/flywheel configuration change posted above? https://forums.minecraftforge.net/topic/119518-exit-code-1073740940/#comment-524102 Otherwise you need to talk to microsoft or try a different java.
-
installed aristois now forge wont load
Looks like a conflict between create and a mixin added by the deftware framework mod EMC.jar?
-
[Forge 1.19.2] Can't start rlcraft server
Looks like an issue with bountiful mod. Check you have the latest version then contact the mod author. Off-topic. You should use java 17. That is the long term support version. You won't get anything but security fixes for java 18 now java 19 is released.
-
Exit Code -1073740940
That doesn't show an error either. The last thing in the log is an error from the signpost and/or dynamic surroundings mods, but there are many of those. Then it just shows the error code And then it says it trying to submit a crash report to Mojang but that fails because of bad ip configuration? It doesn't say which crash report it is trying to submit.
-
installed aristois now forge wont load
Looks like an issue with the create mod. Probably caused by an earlier we can't see because you don't post a link to your logs/debug.log Check you have the latest version of the create and registrate mods then contact the mod author.
-
1.19.2 Crash during startup
Conflict between uniquebase and apotheosis. Check you have the latest versions then contact the mod authors.