Jump to content

warjort

Members
  • Posts

    5420
  • Joined

  • Last visited

  • Days Won

    174

Everything posted by warjort

  1. 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.
  2. 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
  3. 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.
  4. 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
  5. 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
  6. 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?
  7. Given the error message, most likely that captialized name is a (sub)folder you created?
  8. 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.
  9. Read the FAQ at the top of this forum about fixing graphics drivers.
  10. Read the FAQ at the top of this forum about posting the logs/debug.log to a file sharing site.
  11. 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.
  12. 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.
  13. Most of those are broken client side only mods. You need to go through your mods and check which ones say they should not be installed on the server.
  14. 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.
  15. Optifine issues should be reported to them. https://github.com/Creators-of-Create/Create/issues/5441
  16. Read the FAQ at the top of this forum about updating graphics drivers.
  17. Check you have the latest version then contact the mod author. Please don't post logs in the forum. Use a file sharing site.
  18. 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.
  19. 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.
  20. 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.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.