Simple chat stickers
作者:rebot | 分类:模组
Minecraft 版本: 1.20 1.20.1 1.20.2 1.20.3 1.20.4
平台: fabric
标签: social
Simple Chat Stickers
This mod adds stickers to the in-game chat, just like those in messaging apps like Telegram or WhatsApp. You can also create and download custom sticker packs!
Note: For other players to see your stickers, they must have the same sticker pack installed.

How to install a sticker pack: Sticker packs are `.zip` archives that need to be placed in the **"sticker-packs"** folder inside your main game directory. ``` .minecraft > sticker-packs > [packs... (.zip)] ``` How to create your own sticker pack: The ZIP archive must contain a `pack.json` file that defines the pack's name and all included stickers. Sticker images (`.png`) can be organized inside the archive however you like, just make sure to specify the correct relative paths to them in the `pack.json` file. ### `pack.json` Structure: ``` { "name": "[sticker pack name]", "stickers": { "[sticker code]": "[relative path to the sticker image]" } } ``` `"sticker code"` is the sticker's unique identifier (it can be a word or a random set of characters). It acts as a text fallback in chat for players who do not have this mod or this specific sticker pack installed. ### Example of a `pack.json` file: ``` { "name": "Cool Stickers", "stickers": { "happy": "happy.png", "cat": "animals/cat.png" } } ```
请登录后举报
暂无评论,抢个沙发吧~