How do I make flaming arrows spawn fire blocks

Started by Muzaki on

Topic category: Help with modding (Java Edition)

Last seen on 05:06, 30. Aug 2021
Joined Jul 2021
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
How do I make flaming arrows spawn fire blocks

Ive tried using on entity tick if entity is (sub)type of arrow and is burning do place block at x y z fire 

it didnt seem to work, i even tried "if entity is sub(type) of arrow do send chat message to all players "message"" to see if it was detecting the arrow and it didnt seem to be. Is there any way I can get this to work?

Last seen on 04:19, 17. Apr 2024
Joined May 2018
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
You can do this without mods…
Mon, 08/16/2021 - 22:10

You can do this without mods at all, simply by using commands.
/execute at @e[type=arrow,nbt={inGround:1b}] run setblock ~ ~ ~ fire

Last seen on 05:06, 30. Aug 2021
Joined Jul 2021
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
yes, but i want specifically…
Sat, 08/28/2021 - 02:39

yes, but i want specifically only flaming arrows to do this. Like arrows from a flame bow

Last seen on 04:19, 17. Apr 2024
Joined May 2018
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
I could be wrong, but I…
Tue, 09/14/2021 - 17:44

I could be wrong, but I believe you can use an NBT for the arrow's fire the same way you can use the inGround NBT.