Started by
KorDen
on
Topic category: Advanced modding
I want to make an armor of shoes(boots) that when donning will disable(removes) the fall damage. How to do it?
Edited by KorDen on Mon, 05/22/2017 - 14:33
Topic category: Advanced modding
I want to make an armor of shoes(boots) that when donning will disable(removes) the fall damage. How to do it?
goto events, do when armor active {boots in your case} and goto custom code and paste
{
entity.fallDistance = 0.0F;
}
that should do it :D
Hope This Helps :D
@#1 Thank you! You helped me a very!
How do I accomplish this in 2020.2 with the visual code?
It worked!
Thx :)