> ## Documentation Index
> Fetch the complete documentation index at: https://help.freakhosting.com/llms.txt
> Use this file to discover all available pages before exploring further.

# How to Configure Localization & Chat Colors in Unturned

> Professionalize your server's communication. Learn how to translate automated messages and use Hex color codes to create a unique visual identity in the chat.

## Visual Branding & Localization

Professional community management begins with clear and localized communication. An Unturned server that uses the native language of its participants and employs a consistent, color-coded notification system significantly improves the user experience and establishes a premium brand identity. The **RocketMod** framework enables you to localize every automated response and use rich-text formatting to visually distinguish between administrative alerts, economic rewards, and system errors.

<CardGroup cols={2}>
  <Card title="Difficulty" icon="gauge-low">
    Beginner
  </Card>

  <Card title="Time" icon="clock">
    5 Minutes
  </Card>
</CardGroup>

***

## Technical Message Translation

RocketMod programmatically generates a dedicated translation registry for the core framework and every individual plugin it initializes.

* **Technical Path:** `/Servers/Default/Rocket/Rocket.en.translation.xml` (Substituting `.en.` for your target language code).

### Modifying Registry Entries

To update a specific string (e.g., the "Invalid Command" notification), locate the corresponding `Id` and modify its `Value`.

```xml theme={null}
<Translation Id="command_generic_invalid" Value="Â¡Comando desconocido!" />
```

***

## Implementing Dynamic Chat Colors

Unturned uses a standard **Hexadecimal (Hex)** color system within its XML configuration files. This allows you to apply high-visibility highlighting to critical community information.

* **Standard Syntax:** `<color=#HEXCODE>Your Message Text</color>`

### Strategic Color Combinations

| Category            | Recommended Hex | Visual Identity                                                  |
| :------------------ | :-------------: | :--------------------------------------------------------------- |
| **Critical Errors** |    `#FF0000`    | Red: Used for bans, kicks, and permission denials.               |
| **VIP / Rewards**   |    `#FFD700`    | Gold: Ideal for donor announcements and event wins.              |
| **System Success**  |    `#00FF00`    | Green: Applied to successful teleports or character heals.       |
| **Admin Inquiries** |    `#00FFFF`    | Cyan: Distinguishes direct staff communication from global chat. |

***

## Community Personalization

<AccordionGroup>
  <Accordion title="Localizing Group Prefixes">
    To complete your server's visual identity, ensure you update the **Prefixes** within your [Permissions.config.xml](/games/unturned/setting-up-permissions-in-rocketmod-unturned). For a localized experience, you might transition from the standard `[Admin]` to localized variants like `[Administrador]`.
  </Accordion>

  <Accordion title="Dynamic Placeholders">
    Many translation strings support placeholders (e.g., `{0}`, `{1}`). These are utilized by the engine to dynamically insert player names or numerical values into the message. **Important:** Always ensure these placeholders remain intact within your translated text to prevent script errors.
  </Accordion>
</AccordionGroup>

***

<Note>
  ### Need Extra Help?

  If you encounter any issues, our support team is ready to assist:

  * **Live Chat:** Quick assistance via our website.
  * **Support Ticket:** [Open a Ticket](https://freakhosting.com/clientarea/submitticket.php)
  * **Discord:** [Join our Community](https://discord.gg/freakhosting)
  * **Email:** [support@freakhosting.com](mailto:support@freakhosting.com)
</Note>

<Tip>
  ### Save on Your Hosting

  Ready to get a new server? Use code **KB20** at checkout for **20% off** your first month!
</Tip>

***

<div align="center">
  **Last Updated:** January 2026 | **Unturned:** Branding applied.
</div>
