Affected by silk touch isn't working on blocks

Started by KoolKidKurt on

Topic category: Help with modding (Java Edition)

Last seen on 20:15, 23. Mar 2021
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?

Last seen on 20:15, 23. Mar 2021
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

Last seen on 15:54, 6. Jun 2023
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]

Last seen on 20:15, 23. Mar 2021
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

Last seen on 03:10, 19. Feb 2022
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"

Silk touch is probably meant…
Thu, 03/05/2020 - 12:42

Silk touch is probably meant to be defined by loot tables now or using procedures.

Last seen on 20:06, 5. Feb 2023
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?

 

You need to create a loot…
Thu, 11/19/2020 - 08:54

You need to create a loot table with silk touch drop and assign it to your block.

Last seen on 20:06, 5. Feb 2023
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?