-
Posts
3284 -
Joined
-
Last visited
-
Days Won
62
Everything posted by ChampionAsh5357
-
My 1.16.5 forge Installation won't open
ChampionAsh5357 replied to Ellis_'s topic in Support & Bug Reports
We generally don't support old versions, but as this error is probably related to the M1 chip, I will provide an answer. If you're saying that it works fine without mods then failed after a mod was added, then there is probably a mod which causes the error to which you need to remove one-by-one or in batches to find. If that's not the case, it could be with the early progress window, to which you would need to add `-Dfml.earlyprogresswindow=false` to your java arguments in your profile. If that doesn't fix the issue, then you're better off updating to a later minecraft version where the issue is fixed within GLFW. You can attempt to rebuild Forge with the updated library, but you will receive no support for that here. -
Someone could tell me how Forge works with mod jar?
ChampionAsh5357 replied to Blu3Fat's topic in General Discussion
Make a resource pack? Or make a mod. Don't try to modify an existing jar. -
Disconnect when player gets granted OP permissions
ChampionAsh5357 replied to Nils Jeschke's topic in Support & Bug Reports
Looks like wherever that file is located has a bunch of illegal characters within it or is being read incorrectly. Best thing to do is to split the mods into two piles, load them up, repeat the situation that caused this error, and keep splitting the erroring pile until you find the mod in question. -
I can't play because of a mod that doesn't exist.
ChampionAsh5357 replied to R1nGs_'s topic in Support & Bug Reports
Provide the debug.log in the logs folder of wherever your game directory is (typically .minecraft). -
[1.19.2] How can I make a Block holding an item?
ChampionAsh5357 replied to MushMello's topic in Modder Support
BlockEntity with renderer is probably the way to go. You can look at the campfire for an example of how an item is rendered on a block entity. -
How to use BlockStateProvider to generate blockstate assets?
ChampionAsh5357 replied to Darkorg69's topic in Modder Support
Could you please show what you currently have and explain what is unclear about the documentation? -
You're missing the renderer through EntityRenderersEvent$RegisterRenderers, spawn placement through SpawnPlacements#register in the queue within FMLCommonSetupEvent, and attributes added through EntityAttributeCreationEvent. As for the `#build` method, that is for specifying the name of the entity to be referenced in the datafixer if things change across versions and the entity data needs to be adjusted; however, it currently is not supported by Forge.
-
1) Don't use @OnlyIn. You should never have a reason to use that annotation. 2) Most likely this comes down to your texture and the way you render the model/layers. What is transparent and what is opaque? The opaque parts should be rendered in the main model, followed by the translucent parts in the layers going from inner to outer.
-
I want to add task to play clip sound
ChampionAsh5357 replied to Jongco0331's topic in Modder Support
It's better to just use ogg; it is not worthwhile to reimplement an entire sound engine which will just conflict with the ingame one when determining what to output to the audio devices. -
How can i change standard entities models?
ChampionAsh5357 replied to Klarks's topic in Modder Support
RenderLivingEvent$Pre, cancel the render, render what you want. -
That's because items aren't part of the model, it is a layer. Unless you are doing it for an item you own, you would need to replace the layer to do your own rendering or rerender the model itself, both of which would probably cause incompatibilities. Alternatively, you could regenerate all the item models with what you want them to have.
-
Game crashing when i open my inventory
ChampionAsh5357 replied to bloodynylon'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). -
Mind providing a video link of the current issue? I can't say I've encountered this problem before so I'm unsure where the error might appear.
-
Minecraft forge with optifine 1.16.5 keeps crashing
ChampionAsh5357 replied to Devik'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). -
Unexpected error when launching forge 1.16.5
ChampionAsh5357 replied to Ocean6'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). -
Problem with starting minecraft server
ChampionAsh5357 replied to Xeoq139's topic in Support & Bug Reports
We are not Fabric. Ask wherever they provide support. -
That's the point of MinecraftServer#getLevel. You can get the server from any current ServerLevel instance via #getServer.