Copper like Oxidation

Started by parrotgab on

Topic category: Help with modding (Java Edition)

Last seen on 02:19, 21. Jun 2023
Joined Mar 2022
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Copper like Oxidation

So i want to do a procedure to make my rose gold block (copper gold alloy) oxidise like minecraft copper blocks

Last seen on 08:44, 30. Sep 2024
Joined Jul 2021
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
You can add a procedure on…
Fri, 03/25/2022 - 06:30

You can add a procedure on each tick,

If random 0 to 1<x- Chances of it oxidising, eg. 0.5 would be 1 in 2 chance each tick, 0.01 is 1 in 100 each tick or an average of around 5 seconds, 0.001 is around 50 seconds on average, 0.0001 is around 6~8 mins, etc.

For example, we'll use it oxidises every 6~8 mins, or something like this:

 

if random 0 to 1 < 0.0001

replace block at x y z with (oxidised version of the block)

 

So for this, you'll need to make a new blocked called "oxidised copper gold alloy" or something like that, and put that into the procedure I just showed you. Make sure that procedure is in the "block update tick" trigger.

Last seen on 02:19, 21. Jun 2023
Joined Mar 2022
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Can you show a screenshot or…
Sat, 03/26/2022 - 18:10

Can you show a screenshot or gove me the procedure file? I am still new with that so i have difficulty understanding

Last seen on 02:19, 21. Jun 2023
Joined Mar 2022
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Hello?
Mon, 03/28/2022 - 21:52

Hello?

Last seen on 02:19, 21. Jun 2023
Joined Mar 2022
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
I was right i just didnt add…
Fri, 04/01/2022 - 14:22

I was right i just didnt add the remove block thing so that why it didn’t work