Affected by silk touch isn't working on blocks

Started by KoolKidKurt on

Topic category: Help with Minecraft modding (Java Edition)

Joined Sep 2019
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Affected by silk touch isn't working on blocks

I have a block of mine which is overgrown stone, which when mined drops cobblestone, and i have affected by silk touch enabled, but when i mine the block in game with silk touch it still drops cobblestone, is there something i did wrong, and if so can i get some help?

Joined Sep 2019
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
this is what i have set up…
Wed, 03/04/2020 - 03:12

this is what i have set up on the block

Joined Dec 2017
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Make a new procedure that…
Wed, 03/04/2020 - 18:21

Make a new procedure that triggers when the block is mined in that procedure you check if the item in Players Hand has silktouch and also set Drop amount to 0

Set something like this in the procedure:

If Get [Item in Entitys main Hand] Level of enhancement SILKTOUCH = 1

          Drop [Overgrown stone]

else

          Drop [Cobblestone]

Joined Sep 2019
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
thanks for the help
Wed, 03/04/2020 - 22:16

thanks for the help

Joined Jun 2019
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Klemen, It seems like 1.14…
Thu, 03/05/2020 - 01:16

Klemen, It seems like 1.14 does not support as much things as 1.12.2, I don't know why forge devs thought it was "stable"

Joined May 2016
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
does anyone know how to…
Thu, 11/19/2020 - 01:19

does anyone know how to create a procedure in 2020.5 to make a silktouch drop?

 

Joined May 2016
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
do you have a tutorial on…
Sat, 11/21/2020 - 00:46

do you have a tutorial on creating loot tables?