Set fire to all mobs in a radius of 5 blocks [SOLVED]

Started by Granknight on

Topic category: User side tutorials

Active 22 hours ago
Joined Nov 2019
Points:
857

User statistics:

  • Modifications: 0
  • Forum topics: 12
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 326
Set fire to all mobs in a radius of 5 blocks [SOLVED]
Thu, 02/01/2024 - 23:08 (edited)

I have a potion effect and want entities around me in a 5 block radius to be set on fire, without the use of commands, and executing commands if possible.  

Edited by Granknight on Thu, 02/01/2024 - 23:08
Active 4 years ago
Joined May 2020
Points:
622

User statistics:

  • Modifications: 0
  • Forum topics: 2
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 2
I wanted to do something…
Sat, 09/19/2020 - 01:59

I wanted to do something similar recently, but couldn't find any way to do it with just one procedure. What I first did was made a command (I made it /ignite) that sets the person who does it on fire for 15 seconds. Then, I made a procedure that ran the command "/execute @e[type=!player,rm=5] ~ ~ ~ ignite". The only issue with this is that this will not set other players on fire, however it will set all other living entities within 5 blocks on fire.

Active 22 hours ago
Joined Nov 2019
Points:
857

User statistics:

  • Modifications: 0
  • Forum topics: 12
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 326
thanks for the help but…
Sat, 09/19/2020 - 04:17

thanks for the help but using the commands and executing them give me a bad feeling, as i dont know if they work in survival only, no cheats, and that the text for the command pops up, i want as little of that as possible, i know its possible as i got close but i made it only effect the person who has the effect active, not around him, which is not what i need and wont help.

 

Active 4 years ago
Joined May 2020
Points:
622

User statistics:

  • Modifications: 0
  • Forum topics: 2
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 2
I've been using commands in…
Sun, 09/20/2020 - 23:46

I've been using commands in my code for a long time now (I'm much more of a command blocker then a mod maker, tbh I'm just using MCreator out of necessity), and I can guarantee that nothing will pop up, and it will work in survival no cheats. All of it is done backend, and the commands it runs won't even pop up in a server console. The only time you will ever see anything from running a command built into a procedure is if you are using something like /tellraw, where the entire objective is to make text.

Active 22 hours ago
Joined Nov 2019
Points:
857

User statistics:

  • Modifications: 0
  • Forum topics: 12
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 326
alright al try it out
Tue, 09/22/2020 - 03:28

alright al try it out

Active 1 month ago
Joined Mar 2022
Points:
478

User statistics:

  • Modifications: 1
  • Forum topics: 6
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 68
Hey, hope this is something…
Thu, 02/01/2024 - 03:33

Hey, hope this is something you can use.

For each entity as Entity iterator at X: X position of event/target entity Y: Y position of event/target entity Z: Z position of event/target entity in a square cube with size 5.

DO IF not is event/target entity the same entity as entity iterator

      DO set entity iterator on fire for 15 seconds (or how ever long you want it to last.)

this is just the effect. you would have to figure out how to use it