Started by
Coliop
on
Topic category: Help with Minecraft modding (Java Edition)
Hello,
I would like to create my own concrete blocks, which behave exactly like in the original game, that is to say concrete powder that when placed in water tranforms into concrete. I tried to use procedures but I didn't figure out anything that could do something like this.
Do you have any idea?
check for the block on all 6 sides (x+1, y, z), (x-1, y, z), (x, y+1, z), (x, y-1, z), (x, y, z+1), (x, y, z-1) and if any of them are water, replace the block at x,y,z with (what you want it to turn into)
Nice, but where is it? Block procedures? What is specifically the procedure I have to choose?
Here : https://filebin.net/w7zy0tqnyplumcn7 (Link expires in 1 week)
Oh I'm sorry I did this too fast, you have one OR block too much ^^
(Also put that in the "When placed" bloc trigger)
Oh thanks! That's very helpful, but I have a last question: where is the "OR" blue part? I can't find it
UP
(I really need the question above to be answered, in short : I'm searching a procedure element, which is only "OR" so I can place multiple block procedures in a row, but sadly I can't find it)
UP
I HAVE ANOTHER ISSUE
So basically I did every concrete block related to each concrete powder block. The thing is, every concrete powder (there are 11 of them) when placed in water changes into the same concrete block (one of the 11 colors), the block doesn't change to the hardened form it is supposed to, it doesn't follow the respective color.
The or is in the logic section. Its the light blue equals. Just right click and enable external outputs.
Here's my concrete conversion: https://docs.google.com/document/d/1rxM9DeJx1HsOjBoGmZA-2oZOZf_dgn4QC9N…