Everything posted by warjort
-
How to install the forge server using Linux
https://forums.minecraftforge.net/topic/119636-forge-1193-44048-installerjar-does-not-start-on-ubuntu-2204/#comment-524468
-
Getting Rendering errors with optifine or rubidium+oculus
Known issue: https://github.com/Asek3/Oculus/issues/257
-
[1.19.2] Internal Exception: io.netty.handler.codec.DecoderException: java.lang.IndexOutOfBoundsException: readerIndex(12) + ...
No. Whatever it is, just shows the same error that doesn't identify the mod. So far I haven't seen any clue to what mod could be causing it in anything you have posted. Like I said originally, you need to experiment with removing mods to find the problem mod (backup your world). Or start from scratch with a test world/server and add mods one-by-one or in small groups and test it. This will make it easier to identify which mod is causing the problem.,
-
Forge-1.19.3-44.0.48-installer.jar does not start on ubuntu 22.04
A lot of mods use mixin which doesn't support java 19. You need to install and use java 17 if you have any of those.
-
Forge-1.19.3-44.0.48-installer.jar does not start on ubuntu 22.04
Sorry this is the installer not the actual server. You need to pass the parameters on the command line if you can't start the gui. e.g. java -jar forge-xxx-installer.jar --installServer /folder/where/you/want/the/server
-
Forge-1.19.3-44.0.48-installer.jar does not start on ubuntu 22.04
You are trying to use the server gui in an environment that has no graphical device. See run.sh for the comment about the nogui parameter.
-
Property EnumProperty not found on block[1.18.2]
Looks like your block doesn't have that block property. See for example RotatedPillarBlock.createBlockStateDefinition() To make a question answerable, you need to post all the relevant code (not just snippets out of context). Preferably on github.
-
[1.19.2] Internal Exception: io.netty.handler.codec.DecoderException: java.lang.IndexOutOfBoundsException: readerIndex(12) + ...
That is not the logs/debug.log What you show implies there is no obvious error on the server. It justs show the user logging in and then disconnecting.
-
[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.
IPS spam blocked by CleanTalk.