Update Chat authored by Ashijin's avatar Ashijin
a
\ No newline at end of file
Chat Cosmetics are a group of several different cosmetics that affect the chat, including Chat Colors, Shout Colors, Chat Tags, and Emojis.
## Chat Colors
Chat colors go in configuration files located in any pack:
```plugins/MythicMobs/packs/cosmetics/chatcolors/your_file.yml```
You can have one or more files in the folder, and a file can have multiple cosmetics in it.
To add a chat color, create or modify a file inside the `chatcolors` folder within whatever [pack](Packs) you want and use the following config format:
```
hot_pink:
Display: 'Hot Pink'
Model: item/ui/color_icon
Color: '<#FF66CC>'
```
#### Color Options
| Option | Description |
| ------ | ----------- |
| `ID` | The ID of the cosmetic (in the example: `balloon`) |
| `Model` | The ModelEngine model id |
| `Display` | The display name of the cosmetic in menus |
| `Description` | The lore of the cosmetic in menus |
| `Color` | Hex code for the chat color |
## Shout Colors
Shout colors go in configuration files located in any pack:
```plugins/MythicMobs/packs/cosmetics/shoutcolors/your_file.yml```
Shout Colors are a special feature of MythicCosmetics. A player can use their shout color by default by prefixing their message with `!`, e.g. `!hello chat`, but this effect has a cooldown.
This allows you to let players use special chat colors such as `<rainbow>` or gradients with a cooldown so that your chat doesn't turn into rainbow vomit.
They are configured exactly the same as chat colors.
## Chat Tags