How do I make a creature set fire to other creatures and the player when it dies?

Started by violent_dream on

Topic category: Help with MCreator software

Last seen on 00:53, 9. Apr 2024
Joined May 2023
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
How do I make a creature set fire to other creatures and the player when it dies?

I want to create a monster that sets nearby creatures on fire after it dies. Is it possible for me to do that? If so, how can I do it?

Last seen on 17:47, 5. May 2024
Joined Jan 2022
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
You can use a "When entity…
Tue, 05/23/2023 - 17:33

You can use a "When entity dies" procedure that says 'For each entity as Entity iterator at x, y, z, in square cube with size #' > 'Set Entity iterator on fire for # seconds'.

Once your entity dies, all entities within range will be set on fire for the designated length of time.

Do note that this would set every kind of entity on fire, however. Including items and xp orbs.

I suggest adding an if statement checking to see if the Entity iterator is '(sub)type of Mob entity' before allowing them to be set on fire. If you still wanted items to be set on fire, though, for example, you could check if the entity is a Mob or an Item.