How to make block disappear with some chance when its destroyed?

Started by Metarilo on

Topic category: Help with MCreator software

Last seen on 06:46, 21. Aug 2020
Joined Feb 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
How to make block disappear with some chance when its destroyed?

I wan't to make dirt block disappear with 0.25% chance when its broken. Like gravel block.

Last seen on 06:46, 21. Aug 2020
Joined Feb 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
.
Wed, 04/15/2020 - 15:07

.

Last seen on 06:46, 21. Aug 2020
Joined Feb 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
... anyone?
Thu, 04/16/2020 - 11:09

... anyone?

Last seen on 06:46, 21. Aug 2020
Joined Feb 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
okay, i will wait.
Fri, 04/17/2020 - 11:07

okay, i will wait.

Last seen on 18:57, 24. Apr 2020
Joined Dec 2014
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Is it a custom block? Like a…
Fri, 04/17/2020 - 22:05

Is it a custom block? Like a custom dirt block for a dimension you added, or biome?

Last seen on 18:57, 24. Apr 2020
Joined Dec 2014
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Also, be patient. People…
Fri, 04/17/2020 - 22:06

Also, be patient. People would most likely respond later on.

Last seen on 06:46, 21. Aug 2020
Joined Feb 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
vanilla cr... dirt block  
Sat, 04/18/2020 - 05:41

vanilla cr... dirt block

 

Last seen on 06:33, 1. May 2023
Joined Mar 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
execute command as entity:(…
Thu, 05/07/2020 - 15:21

execute command as entity:(/kill @e[type=item,name="<CUSTOM ITEM NAME>",r=1])

Last seen on 02:28, 29. Mar 2024
Joined May 2019
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
create a json loot table…
Fri, 05/22/2020 - 16:30

create a json loot table file with trigger chance

something like this

"conditions": [
{
"condition": "random_chance",
"chance": 0.1
}
]