Colorize
Allows players to easily set their own chat colors
Features
- Custom chat color for players
- Colors persist across restarts
- No lag
- Useful for VIP players
- MySQL is optional ! We provide LiteDB provider in case you don't want to set up MySQL
Commands
Command | Syntax | Explanation | Example |
---|---|---|---|
/colorize | color name or hex | Changes player chat color | /colorize yellow |
Configuration
<?xml version="1.0" encoding="utf-8"?>
<ColorizePluginConfiguration xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<DatabaseType>LiteDB</DatabaseType>
<MySqlConfiguration>
<ServerAddress>127.0.0.1</ServerAddress>
<ServerPort>3306</ServerPort>
<Username>root</Username>
<Password>password</Password>
<DatabaseName>unturned</DatabaseName>
<ConnectionString />
</MySqlConfiguration>
</ColorizePluginConfiguration>
Translations
<?xml version="1.0" encoding="utf-8"?>
<Translations xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Translation Id="ColorSetSuccess" Value="Your chat color has been updated" />
<Translation Id="InvalidColor" Value="{0} is not a valid color" />
<Translation Id="ColorizeSyntax" Value="Correct usage: /colorize <color>" />
</Translations>