About Effects Procedures

Started by koyote on

Topic category: Help with Minecraft modding (Java Edition)

Active 10 months ago
Joined Oct 2023
Points:
197

User statistics:

  • Modifications: 0
  • Forum topics: 9
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 9
About Effects Procedures

I am creating an effect right now and I want to disable the player's jump only while the effect is on. Could you please tell me how to create a specific procedure?

Active 4 months ago
Joined Jul 2022
Points:
539

User statistics:

  • Modifications: 1
  • Forum topics: 2
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 237
This will make it so the…
Thu, 10/03/2024 - 19:14

This will make it so the entity cant move up:

If y delta movement > 0

Override vx [x delta movement of event target entity]

                vy [0]

                vz [z delta movement of event target entity]

Greater than 0 means going up, you need that so the player can still move downwards/fall.