-
Posts
3284 -
Joined
-
Last visited
-
Days Won
62
Everything posted by ChampionAsh5357
-
[1.18.2] Make the player model translucent (ghost-like effect)
ChampionAsh5357 replied to bl4d3tv's topic in Modder Support
Did you remember to cancel the event? I have no idea what the error is when I can't see the code. Add an if statement? If you need data from the server, send a value via a packet to the client. -
ProjectileImpactEvent and checking if the projectile is an arrow. As for summoning, look at ender pearls or spawn eggs.
-
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.
-
The level the explosion is supposed to occur in. It would probably be the same level as the player.
-
I from china I'm Installation error forge
ChampionAsh5357 replied to h h's topic in Support & Bug Reports
Please provide the entire log generated by the installer in a gist or pastebin. -
That probably has to do with one of the mods, so we're not well equipped to diagnose the issue.
-
(1.18.2) learn to render custom complex VFX
ChampionAsh5357 replied to ElTotisPro50's topic in Modder Support
First of all, you should be using RenderTypes instead of direct RenderSystem calls. Second, you need to transform the line based on the vector of the projected view before drawing to the screen. You should be able to see how this is done by looking at any entity call. Third, don't use pose stacks interchangeably, each is for their individual purpose. If you are rendering in the world, use the posestack provided by the event. -
I keep crashing and i dont know why!
ChampionAsh5357 replied to Will Atwood's topic in Support & Bug Reports
You can try adding '-Dfml.earlyprogresswindow=false' to your list of arguments since it seems like an error with Mac M1 chips. If the issue still persists, it's not on Forge's end. -
Try running Jarfix to see if that fixes the issue to run the installer.
-
[1.18.2] Make the player model translucent (ghost-like effect)
ChampionAsh5357 replied to bl4d3tv's topic in Modder Support
You should not be using entityTranslucentCull first, it should just be entityTranslucent. Second, you should be setting up the animation and then calling the render method like any other model implementation. Otherwise, no animation data will be set on the model itself. Look at how LivingEntityRenderer#render works. -
(1.18.2) learn to render custom complex VFX
ChampionAsh5357 replied to ElTotisPro50's topic in Modder Support
It depends on what you are doing. For example, entities would use an EntityRenderer while an overlay may use IOverlayRenderer. You will need to figure out what you are trying to render and how you want to implement it. -
(1.18.2) learn to render custom complex VFX
ChampionAsh5357 replied to ElTotisPro50's topic in Modder Support
Probably the best place to start is OpenGL and its integration into LWJGL. From there, it's mainly just looking over the vanilla source code and see how they abstract those features into Blaze3D (since Blaze3D has no documentation). -
Server Cant Keep Up even with lots of ram allocated
ChampionAsh5357 replied to stefmavz'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.4 (Latest) and 1.18.2 (LTS). -
Help handle an obj model of a custom armor
ChampionAsh5357 replied to rEDOx_'s topic in Modder Support
Forge does not support this for entity models. You would need to build your own model handler for this. -
[1.18.2] Make the player model translucent (ghost-like effect)
ChampionAsh5357 replied to bl4d3tv's topic in Modder Support
I would suggest just following the call references using your IDE to figure out where to get the parameters from. In general, it is just from the EntityRenderer with the last four floats being RGBA scaled from 0 to 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.4 (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.4 (Latest) and 1.18.2 (LTS).
-
This is just suggesting that there is somebody trying to log in playing on regular Minecraft when Forge with specific mods is required. Whether you think it's a bot is up to your belief and research on who is trying to log onto your server. It has nothing to do with Forge.
-
Apply Forge Source Code Patch Files to MCP
ChampionAsh5357 replied to SharkFinFace's topic in General Discussion
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.4 (Latest) and 1.18.2 (LTS). -
[1.18.2] Make the player model translucent (ghost-like effect)
ChampionAsh5357 replied to bl4d3tv's topic in Modder Support
The player model already supports translucent textures, so you would mainly just need to change the final parameter of ModelPart#render to be a different alpha value. You could accomplish this by replacing the player rendering via PlayerRenderEvent$Pre.