Help with making a flying mob faster.

Started by possumbud13 on

Topic category: Help with Minecraft modding (Java Edition)

Joined Jun 2024
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Help with making a flying mob faster.
Mon, 10/13/2025 - 22:36 (edited)

I made a procedure to make the mob fly faster and when I have the values at 0.9 they move slowly at a steady pace, but when I set them higher than 1 they go faster and faster until they vanish. Here's the procedure https://imgur.com/a/x0ZJSXx

Edited by possumbud13 on Mon, 10/13/2025 - 22:36
Joined Jun 2024
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
It did not let me post the…
Mon, 10/13/2025 - 22:31

It did not let me post the procedure picture- sorry guys

Joined Jun 2024
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Ignore the comment above, I…
Mon, 10/13/2025 - 22:33

Ignore the comment above, I fixed it

Joined Dec 2014
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
why can't you just change…
Tue, 10/14/2025 - 07:05

why can't you just change the speed factor here?

Joined Jun 2024
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
No, Minecraft's engine makes…
Tue, 10/14/2025 - 08:09

No, Minecraft's engine makes it always 0.3 no matter what number you put in, that's why I am having to use this procedure

Joined Nov 2019
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
You should not make it run…
Mon, 11/10/2025 - 20:38

You should not make it run every tick as it will accelerate the mob into the void, maybe every 1-5% chance to run that code? You could also set its flying movement speed attribute to be equal to 0.7 when they spawn so more than double if that will work (if you are using the newest versions with built in attributes).

Joined Jun 2024
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
That also does not work,…
Mon, 11/17/2025 - 01:56

That also does not work, making it do it every 1-5% chance still ends up making it fly into the void and making it use an attribute does not work either.

Joined Jun 2024
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
No, it does not, I have…
Sat, 11/22/2025 - 07:17

No, it does not, I have tried to make an override vector system, but it ends up making it fly off into the void.

Joined Feb 2026
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
I managed to get it working…
Thu, 03/19/2026 - 01:30

I managed to get it working by putting it on a timer with an nbt number. basically, every tick it adds one to an nbt value and then checks if the value is a certain number. if it is, it resets back to zero and runs the above code. if it isn't then it does nothing. this allows the mob to move in short bursts of speed (which are easily adjusted) instead of continuously speeding up and exiting reality.

Joined Jun 2024
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Thanks for the reply, I have…
Sat, 04/18/2026 - 16:25

Thanks for the reply, I have tried replicating it, but I cannot seem to replicate what you have suggested, I was wondering if you could send me an image of the procedure you had made