Started by
tazzan
on
Topic category: Help with MCreator software
I want to make it so whenever you mine an iron ore it drops a certain item. I don't know how to specify in procedures that it should only drop from iron ores. Any help?
Topic category: Help with MCreator software
I want to make it so whenever you mine an iron ore it drops a certain item. I don't know how to specify in procedures that it should only drop from iron ores. Any help?
use procedures, like this:
external procedure when player leftclicks block
if block at x y z = iron ore
spawn gem at x y z [item]
You would use the trigger When Block Destroyed or something, not on computer to look, and like bananarang says, if block = iron ore, spawn your item
I would do that but there is no "if block =" block.
What would happen if you do that is whenever you left click the block (not just mine it) it'd spawn the item, which would make it easily farmable
It's in the bottom of the block category "block at x y z", you put that with an if statement,.
In 2022.1V you can do this:
The "is x the same block as x" is in Logic section, and spawn item/gem is in World Management.