warjort
Members-
Posts
5420 -
Joined
-
Last visited
-
Days Won
175
Everything posted by warjort
-
The garbage in that error message suggests one of your mods has broken networking code and/or broken custom recipe serializers. Usually the only way to find the problem mod is to experiment with removing mods until the problem goes away. Mismatched versions can also cause problems when the wire protocol (either for minecraft, forge or a mod) changes between versions.
-
Resource pack is not able to override vanilla text in en_us.json
warjort replied to cwJn's topic in Support & Bug Reports
Duplicate of -
Data override for Minecraft lang file only works in IDE.
warjort replied to cwJn's topic in Modder Support
Make sure your mod depends on the "forge" mod and has an "AFTER" ordering dependency if you want to override vanilla resources. https://docs.minecraftforge.net/en/latest/gettingstarted/modfiles/#modstoml -
Your logs/debug.log will have those "above errors"
-
In minecraft most callbacks get invoked on both the client and server. https://docs.minecraftforge.net/en/latest/concepts/sides/ search this forum for InteractionResult.sidedSuccess or look at how one of the vanilla items handles sides.
-
You need a java/kotlin forum for questions about learning JNI This is a minecraft modding forum not a learning java forum. You can get a lot of information from the JRE itself. e.g. https://docs.oracle.com/en/java/javase/17/docs/api/java.management/java/lang/management/package-summary.html either running inside the JVM or to integrate the information into another management tool using remote JMX. See also : https://www.curseforge.com/minecraft/mc-mods/spark
-
You need to send a network message to the server, saying which button in which block got pressed. https://docs.minecraftforge.net/en/latest/networking/ There is no real standard for this, you will need to look at other mods if you want example code, e.g. https://github.com/search?q=repo%3Amekanism%2FMekanism+PacketGuiButtonPress&type=code
-
1.20.4 Solved 1.20.4 How can I make block break without block underneath?
warjort replied to Bunnly's topic in Modder Support
If your block does not extend one of the blocks that supports canSurvive(), you need to do what they do with the updateShape() callback. It is called when neighbouring blocks change. See for example, BushBlock, DoorBlock, TorchBlock, etc. Or maybe FaillingBlock depending upon what you are trying to achieve? -
Looks like one of your mods wants a different (older) version of create. i.e. you probably have the wrong version of that mod. None of the errors indicate which mod it is only that whatever it is uses mixins and is therefore breaking the classloading. Also read the FAQ. You should post the logs/debug.log to a file sharing site, not the forums.
-
Read the FAQ at the top of this forum about fixing graphics drivers.
-
The game crashed whilst exception in server tick loop Error
warjort replied to dereco's topic in Support & Bug Reports
Some problem with that config file. Contact the mod author. -
Read the FAQ at the top of this forum about posting the logs/debug.log to a file sharing site.
-
The log you posted is incomplete and not the required debug.log. Read the FAQ at the top of the forum. The actual error you show is a network protocol error. This is usually caused by mods that were not test in multiplayer by the mod author or are mods for a different version of minecraft/forge with different network formats. Since you say it only happens for people with OP, the issue is likely related to a mod that has custom commands? Usually the only way the find the problem mod is to experiment with removing mods until the issue goes away. Backup your world before removing mods.
-
https://maven.minecraftforge.net/net/minecraftforge/forge/1.20.1-47.1.46/forge-1.20.1-47.1.46-changelog.txt You need to use the latest version of forge for mods that use that event.
-
Remove all the broken client side only mods from the server. Like rubidium, oculus, legendary tooltips etc. In future before posting, please read the FAQ at the top of this forum, in particular: * DO post the logs/debug.log on a file sharing site. * Do NOT post logs in the forum. * Do use the search function of this forum. You will find questions like this have been answered hundreds of times before.
-
Minecraft crashes at startup when I try to open it
warjort replied to dxccccc's topic in Support & Bug Reports
Optifine issues should be reported to them. https://github.com/Creators-of-Create/Create/issues/5441 -
1.19.2 1.19.2 AlltheModsVolcanoBlockATMVB
warjort replied to TheGamesTabs's topic in Support & Bug Reports
Read the FAQ at the top of this forum about updating graphics drivers. -
Error code 1 forge crash on start
warjort replied to DogsandCats7429's topic in Support & Bug Reports
From my footer: NOTE: You need to post this log from directly after the crash. If you restart the launcher it will clear that log. -
Error code 1 forge crash on start
warjort replied to DogsandCats7429's topic in Support & Bug Reports
You still didn't read the FAQ/rules post. Summary: * DO post the logs/debug.log to file a sharing site - what you posted is not the debug.log * Do NOT post logs in the forum. What you have posted does not contain an error. So either; * it was truncated by the forum - again don't post logs in the forum (for that and other reasons) * You have a hard crash and the real error will be in the launcher_log.txt But hard crashes like that are usually caused by graphics drivers errors - again read the FAQ. -
code error -1 with forge and optifine together
warjort replied to JLV's topic in Support & Bug Reports
Questions about optifine need to be directed to them. But you need to use the correct version of optifine (including preview versions) for the version of forge you are using. See their download page. Also, you need to read the FAQ at the top of this forum before posting. e.g. When reporting issues you need to post the logs/debug.log to a file sharing site, DONT post logs in the forum.