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"