how do i make a block apear when water colides with a liquid

Started by Ello.-'_@ on

Topic category: Help with modding (Java Edition)

Last seen on 23:15, 7. Jan 2023
Joined Oct 2019
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
how do i make a block apear when water colides with a liquid

it says in the title, how do i make a block apear when water colides with a liquid, example, Water Mixing with lava makes cobblestone,stone,or obsidian.

Last seen on 19:10, 4. Aug 2023
Joined Aug 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
If get block at x: x y: y z:…
Fri, 01/01/2021 - 14:50

If get block at x: x y: y z: z = (Whatever fluid you want)

do replace block at x: x y: y z: z with (Whatever block you want)

All of this in When neigbour block change I think. I'm not sure if this is exacly the procedure that you need, because I don't know a lot about this, but I hope that this help. If this don't work, I'm sure that there has to be a little thing that I'm not thinking about and makes useless my code, but I think I has to work.

Last seen on 19:10, 4. Aug 2023
Joined Aug 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Sorry, It doesn't work, but…
Fri, 01/01/2021 - 15:03

Sorry, It doesn't work, but I don't understand why.

Last seen on 14:43, 2. Aug 2022
Joined Nov 2018
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
There is a procedure…
Fri, 01/01/2021 - 15:04

There is a procedure template for this...

Last seen on 19:10, 4. Aug 2023
Joined Aug 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Well, I can't find that…
Sun, 01/03/2021 - 12:34

Well, I can't find that procedure template, but I guess it's somewhere.

Last seen on 17:59, 7. Jan 2024
Joined Jul 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
If- [Get fluid as block at x…
Sun, 01/03/2021 - 14:20

If- [Get fluid as block at x: <x> y: <y> z: <z> = blocktype[  ] ]
do; Place block at x: <x> y: <y> z: <z>

Should work. the blocktype should be the one where you select a block, and replace x y z with the co-ordinates of the edge of the liquid, which should need 6 if blocks (or just an extra 5 else if sections).

Last seen on 23:57, 31. Aug 2022
Joined Apr 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
if place block doesnt work,…
Sun, 01/03/2021 - 14:57

if place block doesnt work, then replace block at x y z would work

Last seen on 20:35, 12. Feb 2023
Joined Jul 2022
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
It does not work. For some…
Mon, 07/11/2022 - 16:23

It does not work. For some reason I can't replace liquids with any procedure, I tried all these ones.