Jump to content

ChampionAsh5357

Members
  • Posts

    3284
  • Joined

  • Last visited

  • Days Won

    62

Everything posted by ChampionAsh5357

  1. You are currently using Java 19; you need to download and use Java 17.
  2. You are likely loading a client only mod on the server. You will need to remove the client only mods from the server (mouse tweaks is a guess at one of them).
  3. The version you are using is no longer supported on this forum. Please update to a modern version of Minecraft to receive support. Currently supported versions are 1.19.3 (Latest), 1.19.2, and 1.18.2 (LTS).
  4. Seems you are not using a version of oculus that is supported by 1.19.2. You should update it.
  5. The version you are using is no longer supported on this forum. Please update to a modern version of Minecraft to receive support. Currently supported versions are 1.19.3 (Latest), 1.19.2, and 1.18.2 (LTS).
  6. Check what java version you have installed in your terminal via `java --version` or `java -version` (most likely the latter will work). If not Java 17, download Java 17.
  7. The version you are using is no longer supported on this forum. Please update to a modern version of Minecraft to receive support. Currently supported versions are 1.19.3 (Latest), 1.19.2, and 1.18.2 (LTS).
  8. The version you are using is no longer supported on this forum. Please update to a modern version of Minecraft to receive support. Currently supported versions are 1.19.3 (Latest), 1.19.2, and 1.18.2 (LTS).
  9. The version you are using is no longer supported on this forum. Please update to a modern version of Minecraft to receive support. Currently supported versions are 1.19.3 (Latest), 1.19.2, and 1.18.2 (LTS).
  10. The version you are using is no longer supported on this forum. Please update to a modern version of Minecraft to receive support. Currently supported versions are 1.19.3 (Latest), 1.19.2, and 1.18.2 (LTS).
  11. The version you are using is no longer supported on this forum. Please update to a modern version of Minecraft to receive support. Currently supported versions are 1.19.3 (Latest), 1.19.2, and 1.18.2 (LTS).
  12. The version you are using is no longer supported on this forum. Please update to a modern version of Minecraft to receive support. Currently supported versions are 1.19.3 (Latest), 1.19.2, and 1.18.2 (LTS).
  13. Hmm, would you mind disable ipv6 traffic on your machine and try again? It could be that it's sending out ipv6 traffic in one direction and return ipv4 in another which would cause the connection to fail.
  14. It is most likely a mod, but you should probably attach a profiler that's separate from the jvm instance to get a better view of which mod is doing so. Spark is useful if the game doesn't crash, but an external profiler would probably be better suited to diagnose your issue. Or, you can just look at the spark data if you have it to see what's causing the issue.
  15. There is no crash repot in the debug.log you linked. Is this the complete debug.log file? If so, you may want to enable the debug log output on the launcher to get the actual error log.
  16. We don't support MCreator here. Learn Java completely first. Without doing so, you'll likely be confused on most explanations given on this forum since we assume a decent level of Java knowledge is known by modders. Why do you want this? You should not need to do anything in the world folder. Since this is a backport, do you have permission to backport this mod from the author (or at least have it from a permissible license)?
  17. Look at any LivingEntityRenderer subtype; PlayerRenderer is actually responsible for supplying the model for the player. You would be responsible for handling the logic in there, or you can create your own subtype and then call the #render method for the logic. This is not really Forge and more like vanilla Minecraft. You would have to do this for any mod loader.
  18. Seems to be an issue with betterweather; try removing it.
  19. The client has no idea what data you are trying to show, only the server does. You would need to send a packet to update the client in your block entity or something else to properly display the value.
×
×
  • Create New...

Important Information

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