How do you make a block that waits a certain amount of time before changing?

Started by TheOriginalGoatMan2 on

Topic category: Help with MCreator software

Last seen on 21:26, 28. Mar 2024
Joined Jul 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
How do you make a block that waits a certain amount of time before changing?

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…
Sun, 02/14/2021 - 09:52

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

Last seen on 14:29, 18. Sep 2022
Joined Aug 2022
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Hello, You found a solution?…
Sun, 08/28/2022 - 14:47

Hello,

You found a solution?? Because I've got the same problem. Thxs

Last seen on 06:22, 13. Mar 2023
Joined Feb 2022
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Manu88, make a block and…
Tue, 08/30/2022 - 19:36

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

}

Last seen on 14:29, 18. Sep 2022
Joined Aug 2022
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Hello And how can I do this…
Sun, 09/18/2022 - 14:09

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.