Jump to content

warjort

Members
  • Posts

    5420
  • Joined

  • Last visited

  • Days Won

    175

Everything posted by warjort

  1. My apologies, it seems you do activate the InventoryScreen on the client. I never knew that. But I guess this is only possible because it has special hard coded handling. I doubt you can just change it like you are doing? e.g. you can find code that handles switching normal inventory to spectator mode or creative mode screens. I would need to investigate further to see how to make your approach work, if it is even possible? But you don't need to replace the whole screen. You can use ScreenEvent and its subclasses to modify screens. e.g. You can subscribe to ScreenEvent.Init.Post then addListener() to add widgets to any screen you want.
  2. Example of forge doing it on the client for the debug overlay: https://github.com/MinecraftForge/MinecraftForge/blob/98823a8f071e04c360a99ad5b46910f6c15028a8/src/main/java/net/minecraftforge/client/gui/overlay/ForgeGui.java#L680
  3. Your config/artifacts-client.toml file is corrupted. This usually happens when you don't turn off your computer properly. If you don't have a backup of this file, you can delete it and it should get recreated with default values.
  4. Looks like an issue with the ipnext mod. Make sure you have the latest version and since this is a ClassNotFoundException, make sure you have all its latest dependencies installed. If that doesn't work, contact the mod author.
  5. Most likely you have that broken browser plugin (winrar?) installed that downloads .jar files as .jar.zip files. Make sure the mod files in your mods folder end with .jar
  6. You can't open a container screen on the client. You open a container by calling player.openMenu() on the server. The MenuType of the AbstractContainerMenu controls which screen gets displayed.
  7. One of browser plugins or something in the browser cache is broken. You should fix it. But see: https://forums.minecraftforge.net/topic/116997-newest-version-not-downloading/#comment-515747
  8. Older versions of minecraft's server did use an executable jar file, But this changed a long time ago.
  9. You do not "run" the jar file. It is not an executable jar file. You use run.sh or run.bat depending on your operating system. See those files and user_jvm_args.txt for more information. If you can't get this to work, you need to speak with your hosting provider.
  10. Your question is unanswerable in its current form. Don't paraphrase error messages. Show the real error/output and explain the steps you took to get that error. GUESSING: If you are clicking on the installer jar and it does not run, try this: https://johann.loefflmann.net/en/software/jarfix/index.html
  11. optifine issue, make sure the version you have is compatible with the forge version you have.
  12. Yes, and star worm equestrian doesn't have a 1.19.2 version so you must be trying to use the 1.16.5 version with minecraft 1.19.2 This won't work. https://www.curseforge.com/minecraft/mc-mods/swem/files
  13. The name of the class in 1.19.2 is net.minecraft.world.entity.decoration.LeashFenceKnotEntity
  14. Looks like you have a very old mod in your mod folder. LeashKnotEntity was the name of this class back in 1.16.5 The crash report alone does not identify the problem mod.
  15. Yes, citadel now has error trying to modify the game code. But this could be a conflict with some other mod.
  16. Something wants a different version of citadel to the one you have. You don't have the latest version of citadel. https://www.curseforge.com/minecraft/mc-mods/citadel/files If that doesn't fix it, it's likely you have some other mod that is out-of-date. You should contact the mod author to ask for help if you can't figure it out.
  17. I assume you mean the damage that comes from the explosion? You will need to create your own projectile that creates an explosion that understands your logic. The other direct damage can be easily changed by overriding onHitEntity() Forge has an ExplosionEvent.Denotate that lets you decide which candidate blocks and entities are affected by an explosion. But if you look at LargeFireball.onHit() it just creates a generic explosion so you can't differentiate it from other explosions.
  18. Forge's installer will work with java 8. But it won't work with an ancient version of java 8 that has expired trust certificates like the version of java being used here. The mojang (or curseforge, etc.) launcher will later download its own version of java that is valid for the game version.
  19. https://en.wikipedia.org/wiki/Nohup or similar tricks.
  20. Your question is unanswerable.
  21. The error says your terminal is broken. Did you start the server from the command line then close the window?
  22. Update your java or install a recent version https://adoptium.net/
  23. Probably one of these? https://github.com/search?q=because+"p_130086_"+is+null&type=issues
  24. Now you have a problem with simple planes. But given the error message it is probably caused by a different error not shown in the crash report.
  25. Looks like an issue with krypton mod, check you have the latest version then contact the mod author.
×
×
  • Create New...

Important Information

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