Help removing blocks

Started by CosmicNebulous on

Topic category: Troubleshooting, bugs, and solutions

Last seen on 23:02, 24. Jun 2024
Joined Mar 2024
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Help removing blocks

Hi, i am making a new boss that is a giant and is forest based. everything works fine except he always appears floating due to him standing on all the trees. i would like there to be a way this boss could remove all the leaves and logs that are specifically in his way, just so when he walks, he is ACTUALLY walking on the floor. anything helps, thank you!

Last seen on 16:00, 26. Jun 2024
Joined May 2024
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
do a procedure that replaces…
Tue, 06/18/2024 - 17:13

do a procedure that replaces all the blocks within 10 blocks horizontally (not under) with air on tick global trigger. so no matter which way the mob is moving, it is leaving a path of destruction. There is no way to replace it though.

get coordinates of mob

then add 1 block in every direction (XYZ) and replace the cords with air.

then add 2 blocks in every direction (XYZ) and replace it with air.

repeat adding 1 more block until you get height of mob.

hope I helped and feel free to ask any questions!

-PixelKid

Last seen on 23:02, 24. Jun 2024
Joined Mar 2024
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Thank you so much, i…
Tue, 06/18/2024 - 20:02

Thank you so much, i understand that there is already a "check in a 6x6x6 area" template already but I'm not 100% sure how to go about writing the procedure you suggested