Jump to content

ChampionAsh5357

Members
  • Posts

    3284
  • Joined

  • Last visited

  • Days Won

    62

Everything posted by ChampionAsh5357

  1. 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.2 (Latest) and 1.18.2 (LTS).
  2. 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.2 (Latest) and 1.18.2 (LTS).
  3. I will note you answered the question yourself: The entity is an Entity, it does not have to be a Player.
  4. Try it and see. Although JEI and The One Probe both have their setup instructions on their website as well instead of pulling directly from cursemaven. https://github.com/mezz/JustEnoughItems/wiki/Getting-Started-[1.13-to-1.18.2] https://github.com/McJtyMods/TheOneProbe/tree/1.18#maven
  5. That's because the interaction that happens on right click for tamed animals (like the wolf and cat) forces them to sit, which is a consumable action, preventing the stack logic from executing. Since the only hook to get around this is an event, you would need to subscribe to `PlayerInteractEvent$EntityInteract` and call the `#interactLivingEntity` method on your item stack there.
  6. Please provide the debug.log from the logs folder. If this is determined to be a user error, then this thread will be locked since 1.12.2 is not a supported version.
  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.2 (Latest) and 1.18.2 (LTS).
  8. I'm assuming you are using a Chrome browser, so try using a different one.
  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.2 (Latest) and 1.18.2 (LTS).
  10. Can you please provide the full gradle error rather than the result of the execution. That simple tells us nothing other than the buildscript failed at some point. I believe the output view should contain something for that.
  11. In general, we don't provide support for any version other than the current latest or LTS. However, I am curious whether this is a user problem or an actual issue with Forge, so I will keep this open until that is determined. Please provide your launcher_log.txt file and the debug.log in the logs folder. If the debug.log isn't present and the launcher disappears before starting, you may need to enable logs in the launcher itself and copy and paste them.
  12. You have been unbanned on the discord. The ban is simply precedent for spamming regardless of if your account is hacked as if they remained in control of that account, it would negatively impact the server.
  13. If someone is having a problem, they should be the one to create the thread. However, 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.2 (Latest) and 1.18.2 (LTS).
  14. 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.2 (Latest) and 1.18.2 (LTS).
  15. 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.2 (Latest) and 1.18.2 (LTS).
  16. 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.2 (Latest) and 1.18.2 (LTS).
  17. A better way to do this is just to have the plugin code be in a separate class and just calling a method in that class which initializes the data. Java classes are lazily loaded, so you don't need to do invoke logic at all. public void ExampleMod() { if (ModList.get().isLoaded("other_mod_id")) { // Won't be called or initialized unless the mod is present. // This is exactly how we protect from sidedness as well ExampleIntegration.load(); } }
  18. 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.2 (Latest) and 1.18.2 (LTS).
  19. The config file probably has a lock on it which can occur if some other program is reading or writing to the file in a non-blocking fashion. You can try to close all instances of the config being opened, or you can try to delete all the config files in the `config` folder. If it still breaks, it could be that some config default provided by one of your mods is illegal and causing the parser to fail. In that case, you'll need to remove mods one by one or test in patches until your find the erroring mod.
  20. Try removing OptiFine, that seems to be the most likely issue causer. We don't recommend keeping the mod, but if you would like to, make sure the version of OptiFine used is backed by the version of Forge they say it supports. Though, if it still breaks then, it's better to just remove the mod altogether.
  21. 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.2 (Latest) and 1.18.2 (LTS).
  22. 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.2 (Latest) and 1.18.2 (LTS).
  23. In general, we don't provide support for old versions; however, since your issue revolves around a common issue, I see no reason not to provide it. Most likely, your config is either corrupted or formatted incorrectly, so you would just need to go into the `config` folder and remove the erroring config in question.
  24. Does this error happen in the launcher or when trying to install Forge? If the former, check to make sure the java directory the profile is pointing towards is either the one shipped with vanilla or a Java 8 jdk you have. If the latter, make sure you have the Java 8 jdk on the path environment variable.
  25. 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.2 (Latest) and 1.18.2 (LTS).
×
×
  • Create New...

Important Information

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