-
Posts
3284 -
Joined
-
Last visited
-
Days Won
62
Everything posted by ChampionAsh5357
-
Did you check the debug.log in the logs folder?
-
Fatal error in Minecraft Forge 1.18.2 version 40.1.84
ChampionAsh5357 replied to Ale2105's topic in Support & Bug Reports
I would split the mods into two piles and test them individually to see if they work. If a pile errors, keep splitting it until you find the erroring mod. It seems that one of the mods is making it impossible for the classloader to find the AttachCapabilitiesEvent or is throwing a weird error. -
Error when trying to open modded forge server
ChampionAsh5357 replied to usofnab's topic in Support & Bug Reports
We generally do not support older versions; however, since yours seems to be an issue with java version, I will make an exception. 1.12.2 requires Java 8 to run. It seems like you are running with a later version of java. -
single player world crashing when join
ChampionAsh5357 replied to Nairda's topic in Support & Bug Reports
We are not Fabric, ask their support line. -
Can't run Minecraft forge (no mods)
ChampionAsh5357 replied to Mr.Wii's topic in Support & Bug Reports
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). -
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).
-
In order to root out one of the more common issues, we'll need to see your hosts file. Here's the steps to getting this file. 1) Press the Win + R key on your keyboard. 2) Paste the following into the prompt that opens: 'notepad %windir%\system32\drivers\etc\hosts' 3) Use Ctrl+A to select everything in the file, then Ctrl+C into the textbox to post to this thread.
-
Exit Code -1073741819 when loading a world
ChampionAsh5357 replied to _N_Ved_'s topic in Support & Bug Reports
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). -
Provide the models and folder locations corresponding to the door in addition to its registry name.
-
1.19.2 Override player skin with some effects
ChampionAsh5357 replied to Daziel's topic in Modder Support
Either create a layer that goes above the player skin or cancel RenderPlayerEvent$Pre and render the model yourself, though the latter is more incompatible. If this is your introduction into modding however, I would go for something simpler. -
Basically, add '-Dforge.logging.console.level=debug -Dforge.logging.markers=REGISTRIES' to your JVM arguments in your game profile.
-
What causes incompatibility and how to avoid it?
ChampionAsh5357 replied to DouglasRafael's topic in Modder Support
A number of things could make your mod incompatible, but at that point it's just paranoia. Events are used to mitigate incompatibilities, but you usually don't have to use them unless you're doing something complex or are modifying vanilla in some fashion for a use case in your mod. As for chance, who knows? It's not a quantifiable thing if we have no idea what you're doing. -
Technically, you would only need two classes for this since an interface is not required, but recommended: one for the cap data and one for the provider itself. If you don't want to use the system, you can just try to add persistent data (via #getPersistentData) to the entity nbt directly since the data is relatively small. However, unless you want to build the boilerplate, there is no simple way for adding capabilities with small amounts of data. As for what the wiki page is calling optional, I believe it's referring to the fact that you technically only need the interface to register a capability. The implementation and provider is only used to actually store the data and is not relevant to the minimum needed to create a capability. In general, you'll almost never see a capability without its implementation and provider.
-
Shadowing javafx into jar, Forge not loading mod
ChampionAsh5357 replied to gwoonryan's topic in Modder Support
The recommended method to do this now is through the JarInJar system. There are docs for it, but I recommend using the mdk as an example to add them. -
My 1.16.5 forge Installation won't open
ChampionAsh5357 replied to Ellis_'s topic in Support & Bug Reports
Basically, go to your Installations, click the triple dots next to your profile and select Edit, click More Options, and then add the argument with a space in the JVM Arguments section. -
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).