Started by
DaRealHerobrine
on
Topic category: Help with MCreator software
I want to make a block that is similar to Copper. I need it to change variants at random times. The problem is, the current blocks only allow me to have it change almost immediately after being placed. I could not find anything on this site that applied to my situation. Can anyone help me make a placed block wait a random amount of ticks to update?
I suggest you check our tutorials collection playlist on our YouTube channel which contains many examples and tutorials that can help you get started with MCreator: https://www.youtube.com/playlist?list=PLAeL-oIFIEngE6jRgFYeFMfuj8WQsO3Ei
Hello,
You found a solution?? Because I've got the same problem. Thxs
Manu88, make a block and click tick randomly or set the tick speed, and make an on block tick procedure containing:
(0.01 makes the procedure run on average 1/100 times, but it is randomized.
if ( rand[0,1) < 0.01 ){
replace/place block x y z
}
Hello
And how can I do this for a block that is generated in the generación of the World. For example that the water after the ramfomized change for another block.