[TUTORIAL] How to create Smithing table recipe using all 3 slots

Started by ZanderNotch on

Topic category: User side tutorials

Last seen on 01:43, 1. May 2024
Joined May 2023
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
[TUTORIAL] How to create Smithing table recipe using all 3 slots
Fri, 10/27/2023 - 00:44 (edited)

This is just an easy way to show people who don't know too much about code or don't know how to code to create a smithing table recipe with all 3 slots

Step 1. Create a recipe for it

Step 2. Lock the code and open the recipe again

Step 3. Delete the code

Step 4. Paste this code in

{
"type": "minecraft:smithing_transform",
"addition": {
"item": "Change this: the upgrade material goes here"
},
"base": {
"item": "Change this: the item you want to upgrade goes here"
},
"result": {
"item": "Change this: output item goes here"
},
"template": {
"item": "Change this: the first slot aka the upgrade slot is here"
}
}

Step 5. Change the area's on the code where it says Change this 

(NOTE: If you change anything else in the code it will not work and make sure you are using the correct name for your mod in front of the item)

Step 6. It should look like this with YOUR OWN CUSTOM MOD NAME AND ITEMS!

Edited by ZanderNotch on Fri, 10/27/2023 - 00:44
Last seen on 00:19, 4. May 2024
Joined Dec 2023
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
what is the registry name of…
Tue, 12/12/2023 - 01:42

what is the registry name of netherite upgrade, sorry?

Last seen on 01:43, 1. May 2024
Joined May 2023
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
I think its minecraft…
Sun, 12/17/2023 - 03:33

I think its minecraft:netherite_upgrade_smithing_template you can also check by doing F3 + H and look at the bottom of the item to see the name

Last seen on 00:19, 4. May 2024
Joined Dec 2023
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Thank you!
Thu, 02/01/2024 - 09:47

Thank you!