General items
Last updated
Last updated
This tutorial DOESNT WORK for ARMOR RETEXTURING. In case you want it, use optifine retexturing (that isn't explained here, search on google/youtube)
FILES IN YOUR TEXTURE PACK MUST BE AT ALL LOWERCASE OR THERE WILL BE ISSUES SUCH AS TEXTURES NOT LOADING
This page will guide you how to add new textures to the game (without modifying the actual ones) from the start making the item, the texture pack, linking everything, until your EI Item has the texture inside the game, so let's begin ! 😎
First of all tell you that all this tutorial is based on the next video:
Here you can learn more deeply about the texture pack, how it works, and if you didn't get at all this tutorial, check the video, its made to understand everything. 🥳😈
Well, first of all let's create the item we want to have the custom texture, use:
/ei create <id>
I'll set up just some visual things, such as the name and the lore.
Ok, so the item is ready (you could add activators, mechanics, whatever you want to that item, in this case it will be simple, the main part is the textures.)
Now the textures.. they don't appear from nothing, you have to do them.. how? You'll need a photo editor, such as: Photoshop, Paint 3D, Paint.net, Paint, etc. The download part is from your side, so use the one you want, in this case, this will be made using Paint.net
The image needs to be:
16x16 pixels (or any power of 2, like 16x16 - 32x32 - 64x64 - etc)
PNG
Once you have it, we are ready to create the texture pack
Well, let's part from the beggining, create a folder, let's call it "ExecutableItemsTexturePack"
Then add another folder inside it called "assets"
Besides that folder we also need to add a custom text here, it will be called "pack.mcmeta" (it need to be MCMETA type) and will have the next code:
So checking what we have, should be this:
To don't tell EVERY folder that you have to create I'll leave the format right here, create all the folders.
So, in the folder of 📁custom_textures we will save all the custom textures that we have, in this case, the pickaxe photo we made before. (the file will be -> "pickaxeimage.png")
Now, inside the models/item we have to create one folder and one file.yml for each item, in this case, I will edit the diamond_pickaxe, so I will create them
The name of "diamond_pickaxe" is because of that is the nbttag inside the minecraft
Inside diamond_pickaxe.json we will add this code:
If you want to do it with another item, just change the file name, then the layer0, and the predicate.
And if you want to add more than one custom model data, just add a "," and add another line, for example:
Where it says "model" : "item/diamond_pickaxe/2" its calling the folder created before "📁diamond_pickaxe", inside it we will add as many <number>.json as custom model data we set in the file above. In this case I am just setting one custom model data so it will have 1 file called "1.json", if they were two custom model data they will be two files called "1.json" and "2.json"
Inside this 1.json we will add this:
Where the "layer0" part is the folder where is the customTexture, in this case, assets/minecraft/textures/item/custom_textures/<nameoftexture> (In this case pickaxeimage, remember)
And that would be all, now grab the pack.mcmeta and the assets folder and create a .zip using Winrar
And now let's put it into minecraft (go to resourcepacks and leave it there)
Now it is supposed that it is working, so, we are going to edit our item
And in the customModelData config we are going to set it to "1" (In the files we set it to 1)
And kaboom !! 💥💥, now the item will have the texture we set before
And that would be all !! If have any question or feel this tutorial needs to explain something better, just tell us in the Discord of EI !! ^^
I hope you understood everything, nice day ! 😀😀
==========================================
Since a lot of people don't follow the steps correctly, here is the file for you to check if you everything right