Immunity to Suffocation

Started by Joe Wrench on

Topic category: Feature requests and ideas for MCreator

Last seen on 20:12, 14. Jun 2023
Joined Jul 2019
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Immunity to Suffocation

I think you should be able to make entities immune to suffocation like you can to drowning and attacks. I was trying to make a technical entity, like an area effect cloud or marker armor stand, and was able to make it immune to just about everything except suffocation in blocks. Including this as well would make it possible to make more versatile entities.

Last seen on 03:52, 28. Jul 2023
Joined Feb 2021
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Put this in your mob's code …
Sun, 02/26/2023 - 07:15

Put this in your mob's code 

if (source == DamageSource.IN_WALL)
return false;
Last seen on 19:25, 27. Mar 2024
Joined Feb 2018
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
You can do it with this…
Sun, 02/26/2023 - 19:30

You can do it with this Plugin.

Last seen on 23:12, 10. Jan 2024
Joined Nov 2019
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
VuFlub where exactly i have…
Fri, 12/22/2023 - 18:32

VuFlub where exactly i have to put this code?