#Problem with tutorial, can't open game

6 messages · Page 1 of 1 (latest)

keen harness
#

Is there someone who can help me get started with Fabric modding? I am following this tutorial, but it seems that it is already outdated. I've done everything shown in the video

In this Minecraft Modding Tutorial, we are adding custom items to Minecraft using the Fabric API for Minecraft 1.21.

== 1.21 MODDING COURSES ==
▶️ NeoForge Modding with Minecraft 1.21.X:
https://url.kaupenjoe.net/CourseNeoForge121X
▶️ Fabric Modding with Minecraft 1.21.X:
https://url.kaupenjoe.net/CourseFabric121X
▶️ Forge Modding...

▶ Play video
pine spade
keen harness
pine spade
lucid lake
# keen harness Sure thing! Sorry for not clarifying. I chose to develop for 1.21.8. I have just...

There has been a change to the resources.
You now need to add a file at:
assets/MODID/items/itemid.json

Inside that file, you can specify the model like this:
{
"model": {
"type": "minecraft:model",
"model": "MODID:item/itemid"
}
}

So, to add a custom item, you will need the following files:
assets/MODID/items/itemid.json
assets/MODID/models/item/itemid.json
assets/MODID/textures/item/itemid.png

brave ravine
#

i've fixed the docs page to highlight that you need all 3 for the item to appear correctly