fluid fire

Started by minecraftepic on

Topic category: Help with Minecraft modding (Java Edition)

Joined Oct 2025
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
fluid fire

I'm trying to make napalm (which is a fluid) and i want it to set blocks around it on fire, is there i way i can do this?

Joined Nov 2025
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Use a few "Execute Command"…
Wed, 12/10/2025 - 11:01

Use a few "Execute Command" blocks with commands: "/fill ~-1 ~ ~-1 ~1 ~ ~1 fire replace air", "/fill ~-1 ~ ~-1 ~1 ~ ~1 fire replace grass"

Or (in on tick update procedure):

int varRandX = 1-(random_inclusive(0, 1) * 3)

int varRandZ = 1-(random_inclusive(0, 1) * 3)

if (random_inclusive(0,4000)==0&&getblock(varRandX, varRandZ) in tag("yourmodid:block_fire_replacables")) {

setblock(varRandX, [BLOCK_Y], varRandZ, fire)

}

Joined Nov 2025
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
btw the procedure code…
Wed, 12/10/2025 - 11:02

btw the procedure code shouldn't be put in the code editor, interpret the code to procedure blocks.

Joined Oct 2025
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
sorry but ,could you simply…
Wed, 12/10/2025 - 16:02

sorry but ,could you simply the procedure because i cant really read that

Joined Nov 2025
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Here is the link, the…
Thu, 12/11/2025 - 10:28

Here is the link, the variable "_Y" and the functions "Get Block" and "Set Block" are placeholders:

https://www.jdoodle.com/ia/1OaV