Started by
CaiGuyCrafter
on
Topic category: Help with Minecraft modding (Java Edition)
So there's a plugin called DTM's toolkit. It changes other attributes. I need to change the speed attribute. I think I saw a way to do this manually by doing some odd stuff involving entity speed but I'm wondering if there's a simpler way to do it.
With a procedure?
Use effects, but with no particles. I ALWAYS use them, if I needed.
Lower Speed: /effect give @s minecraft:slowness 2 1 true
Increase Speed: /effect give @s minecraft:speed 2 1 true
Where:
► 2 - duration;
► 1 - level;
► true/false - remove/keep particles. (If set on [true], no particles will be seen).
Is there a way to put the level in decimal?