Floating Horse Minecraft Legends

Started by nil1 on

Topic category: Help with Minecraft modding (Java Edition)

Joined Feb 2025
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Floating Horse Minecraft Legends

Hello dear friends! I recently started making my own build for Minecraft on version 1.20.1 and saw in the Minecraft Legends game that horses don't drown. I did not find any modifications for this feature of horses for my assembly and decided to make it myself, but no matter what I tried, nothing works! Good people, can you tell me how to do this?

Joined Apr 2021
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
global entity tick update…
Sat, 02/22/2025 - 14:35

global entity tick update procedure. check if the entity in question is a horse, then check if its being ridden, then check if it's in water. if it is, set its y velocity to +1.

this is just what i can think of off the top of my head since i'm not looking at the program currently, but that's worked well enough for me personally when i worked on a flying mob a while ago

Joined Feb 2025
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
akisephila I didn't…
Tue, 02/25/2025 - 07:47

akisephila I didn't understand anything

Joined Aug 2017
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
If your goal is to make all…
Mon, 05/26/2025 - 08:24

If your goal is to make all horses unable to take drowning damage you can do this:

  1. Create a procedure
  2. Make the event trigger be "Entity is Attacked"
  3. Create an if statement with the conditions "Entity is subtype of Horse" and "Provided damage source of type drown"
  4. Now, inside the statement add the block "Cancel event that triggered global trigger". This will cancel the damage

 

Hope this helped!