😁Emojis
Introduction
For example I want to create an emoji pack named "myemojis", so my namespace would be myemojis
Creating the textures folder
Open folder plugins\ItemsAdder\data\resource_pack\assets\
Create a folder named
myemojis
Create a folder named
textures
, then inside create a folder namedfont
and then a folder namedemoji
Now you should have this path: plugins\ItemsAdder\data\resource_pack\assets\myemojis\textures\font\emoji
Inside this folder you have to put your emojis, you should make them 72x72 to make sure they're not too big and they're not pixelated. But you can decide the size you want (only important thing is that height and width is not over 256.
In this example I put an image named smile.png
Creating ItemsAdder config for your emojis
Now you have to create the folders for your emoji configs. In this example you have to create a folder named myemojis inside plugins\ItemsAdder\data\items_packs\
inside plugins\ItemsAdder\data\items_packs\myemojis create a file named emoji_images.yml (you can call it whatever you want)
Now you have to open the .yml file and
Then add your emoji (in this example I made a smile emoji) to the list of font_images, so your file would look like this:
scale_ratio is the final height in pixels of the emoji because 72x72 pixels is too big, You'd have to scale it but you can set 9 so Minecraft will handle it automatically. y_position is the y position in pixels, 8 should be good if you keep emoji 72x72 and scale_ratio to 9. If you have different size you'll have to tweak the y_position based on your tests.
scale_ratio
must ALWAYS be bigger than y_position
or Minecraft won't like it. I cannot fix that issue, it's a Minecraft limitation.
In-game view
Using the /e useful suggestions
Last updated