Posted December 2, 20195 yr Hello, looking for some info on making a custom effect that goes with my custom food. basically its the nausea effect with a different name, picture, and colour. i took a look at the vanilla code, but could use some example of a custom one if possible. or just where to start. thanks in advance!
December 2, 20195 yr I'm not sure how creating a new instance of Effect and registering it with the RegistryEvent<Effect>.register event isn't sufficient. Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable. If you think this is the case, JUST REPORT ME. Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice. Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked. DO NOT PM ME WITH PROBLEMS. No help will be given.
December 2, 20195 yr Author 44 minutes ago, Draco18s said: I'm not sure how creating a new instance of Effect and registering it with the RegistryEvent<Effect>.register event isn't sufficient. point taken. ive got a new effect now, but it just shows the particles, the screen does not warp or anything. and also the dreaded pink and black square where the "active effects" are
December 2, 20195 yr 3 hours ago, plugsmustard said: point taken. ive got a new effect now, but it just shows the particles, the screen does not warp or anything. and also the dreaded pink and black square where the "active effects" are black and pink colour means you don't have a texture for it.
December 3, 20195 yr Author 17 minutes ago, poopoodice said: black and pink colour means you don't have a texture for it. i know that. its the actual warping of the screen im looking for rn.
December 3, 20195 yr The screen warp effect is almost certainly 100% tied into the game's main rendering system and hard coded to check for Nausea. Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable. If you think this is the case, JUST REPORT ME. Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice. Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked. DO NOT PM ME WITH PROBLEMS. No help will be given.
December 3, 20195 yr Author 10 minutes ago, Draco18s said: The screen warp effect is almost certainly 100% tied into the game's main rendering system and hard coded to check for Nausea. what exactly does that mean? can i use it in soemway, or replicate it?
December 3, 20195 yr 2 hours ago, plugsmustard said: what exactly does that mean? can i use it in soemway, or replicate it? I am not positive, as I have not checked the code itself. But it might be as simple as making your custom effect set the same flag that the nausea effect triggers.
December 3, 20195 yr Author 3 hours ago, diesieben07 said: No. The rendering checks for Effects.NAUSEA and nothing else. well thats shit. where is this rendereing code exactly?
December 3, 20195 yr Author 1 hour ago, diesieben07 said: Use your IDE and search for usages of Effects.NAUSEA, it's easy to find... did that. what about changing the colour of the screen? is that the same as the problems im facing with the portal warp?
December 3, 20195 yr Author how about some code? this is what i have so far. where i register effects https://github.com/drmdgg/marijuanacraft1.14.4/blob/61ab35c1a10418fa2fdfe331cf07da1d6a5162a3/src/main/java/drmdgg/marijuanacraft/ModEventSubscriber.java#L36-L41 the effects https://github.com/drmdgg/marijuanacraft1.14.4/tree/master/src/main/java/drmdgg/marijuanacraft/potion Edited December 3, 20195 yr by plugsmustard
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.