Jump to content

Paint_Ninja

Community Manager
  • Posts

    766
  • Joined

  • Last visited

  • Days Won

    27

Everything posted by Paint_Ninja

  1. Please share a link to your debug.log on https://pastebin.com You can find the debug.log in your logs folder. The logs folder is in the same place as the resourcepacks or mods folders. If you can't find a debug.log file and are using the CurseForge launcher, enable it in the launcher settings.
  2. Instead of `java -jar` you do `%ProgramFiles%\Java\jdk8\java -jar`, or wherever your Java 8 install is
  3. The version you are using is no longer supported on this forum. Please update to a modern version of Minecraft to receive support.
  4. The version you are using is no longer supported on this forum. Please update to a modern version of Minecraft to receive support.
  5. That's strange, your log says it crashed due to an issue inside an AMD graphics driver OpenGL DLL... Do you have integrated graphics?
  6. From your log, it looks like your drivers are very old. Update your graphics drivers to the "Recommended WHQL" version and enable update notifications in AMD Software: Adrenalin Edition. https://www.amd.com/en/support Note that AMD calls stable graphics drivers "Recommended" and experimental beta drivers "Optional", therefore avoid optional verisons.
  7. Assuming 1.20.1, you can subscribe to the LivingDamageEvent and get the DamageSource from there: @SubscribeEvent public static void onDamage(final LivingDamageEvent event) { final DamageSource source = event.getSource(); } With the DamageSource you can then check if it's caused by an arrow. Probably by source.type() and checking if it matches DamageTypes.ARROW
  8. Here's what the error codes mean: Error code 1: The game crashed Error code 0: Someone clicked "Quit game" and the game closed without crashing Remove your mods one by one until you find what caused the crash, then please share if that worked and which mod caused the issue.
  9. Here's what the error codes mean: Error code 1: The game crashed Error code 0: Someone clicked "Quit game" and the game closed without crashing Try removing Optifine, it's known to break things sometimes
  10. Here's what the error codes mean: Error code 1: The game crashed Error code 0: Someone clicked "Quit game" and the game closed without crashing From your log, it looks like your drivers are very old. Update your graphics drivers to the "Recommended WHQL" version and enable update notifications in AMD Software: Adrenalin Edition. https://www.amd.com/en/support Note that AMD calls stable graphics drivers "Recommended" and experimental beta drivers "Optional", therefore avoid optional verisons.
  11. This is the Minecraft Forge forum, we do not support Fabric here.
  12. Forge+Bukkit hybrids are not supported here. Contact the Mohist team for help or look into Forge mods to replace the plugins you need.
  13. The version you are using is no longer supported on this forum. Please update to a modern version of Minecraft to receive support.
  14. Glad to hear you got it sorted. Please may you share which mod that was so that others having the same issue know the fix?
  15. You need to install Java first. Follow these steps to do so: 1) Open Windows Terminal. Get it from the MS Store if you don't already have it 2) Run WinGet install Microsoft.OpenJDK.17 3) Restart your PC
  16. I recommend learning Java first or finding someone with programming experience. From what you're describing, it sounds like the mod is incomplete and can't compile - in which case you need to fix the compilation error first by altering the relevant piece of code. To compile a mod from source, follow these steps: 1) Obtain the sources, usually as a github zip download or repo clone 2) Open a terminal in the root of the sources folder where the gradlew files are 3) Run ./gradlew build 4) Find the built jar in build -> libs folder
  17. Outdated AMD graphics drivers It seems like you're on old, experimental beta drivers from over a year ago. Updating to the latest "WHQL Recommended" (aka stable) version should fix your issue. https://www.amd.com/en/support
  18. Your log seems to be cut off. Are you sure you pasted the whole thing?
×
×
  • Create New...

Important Information

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