Started by
sergeylyan
on
Topic category: Help with Minecraft modding (Java Edition)
How do I change the height of the fall? So that when I jump high there is no damage. But if I fall from a greater height, I will receive damage.
Topic category: Help with Minecraft modding (Java Edition)
How do I change the height of the fall? So that when I jump high there is no damage. But if I fall from a greater height, I will receive damage.
i didn't test this myself, but i think it should work:
all you need is to make a global procedure with trigger "Entity Falls", make a new local variable and get the "distance" dependency from the global trigger
i just noticed, inside the "if then else" block you should change "distance > maxfalldistance" with "distance < maxfalldistance"
its not working. maybe because the distance is determined after landing, or maybe because this condition works when falling only one tick of the player
its an attribute. If you search "attribute" in the search bar in the blockly procedure editor,
you'll find the "set base attributes" (name is smth along those lines) block.
select the one for fall damage
set it to a value higher than 4 i believe(cause ig 4 is the default fall height for fall-damage).
"Override fall distance" this is the only procedure that is responsible for this, but for some reason changing it does not affect anything. The only thing is that if you assign it a value of 0, then damage from any height will disappear. I just don't understand how to use this procedure and under what conditions.
I don't want to completely disable fall damage. In my mod, the character's jump height increases with level.