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

# Customisation

> Personalise how raze appears and behaves in your server and across Discord.

# Customisation

> Personalise how raze appears and behaves in your server and across Discord.

## Server bot appearance (Free)

The `edit` command group lets server managers modify raze's visual identity directly on the bot account in your server — display name, avatar, banner, and bio. **No donor perks or premium subscription required.**

<Tabs>
  <Tab title="Name">
    Change raze's nickname in this server.

    ```bash theme={null} theme={null}
    ;edit name (name)
    ```

    **Example:**

    ```bash theme={null} theme={null}
    ;edit name siord
    ```
  </Tab>

  <Tab title="Avatar">
    Change raze's avatar in this server. Must be a direct image URL or image attachment.

    ```bash theme={null} theme={null}
    ;edit avatar (url)
    ```

    **Example:**

    ```bash theme={null} theme={null}
    ;edit avatar https://i.imgur.com/example.png
    ```
  </Tab>

  <Tab title="Banner">
    Set a banner image on raze's profile in this server.

    ```bash theme={null} theme={null}
    ;edit banner (url)
    ```

    **Example:**

    ```bash theme={null} theme={null}
    ;edit banner https://i.imgur.com/banner.png
    ```
  </Tab>

  <Tab title="Bio">
    Set a custom about-me text shown on raze's profile in this server.

    ```bash theme={null} theme={null}
    ;edit bio (text)
    ```

    **Example:**

    ```bash theme={null} theme={null}
    ;edit bio Your friendly server assistant.
    ```
  </Tab>

  <Tab title="Reset">
    Reset raze's server profile. Pass a specific field (`name`, `avatar`, `banner`, `bio`) or omit to reset everything.

    ```bash theme={null} theme={null}
    ;edit reset [field]
    ```

    **Example:**

    ```bash theme={null} theme={null}
    ;edit reset avatar
    ;edit reset
    ```
  </Tab>
</Tabs>

<Note>
  The `edit` profile commands modify the bot account itself in your server (`Manage Server` permission required). This is separate from [reskin](/overview/donator-perks#reskin), which routes messages through a webhook persona.
</Note>

***

## Server prefix

Set a custom command prefix for your server instead of the default `;`. Free for all servers.

```bash theme={null} theme={null}
;prefix set (symbol)
```

**Example:**

```bash theme={null} theme={null}
;prefix set !
```

After this, commands work with `!` in your server. Mentioning the bot (`@raze`) always works regardless of the configured prefix.

***

## Slotted guild customization (Premium)

Servers activated with a donor slot unlock advanced styling and branding commands:

<AccordionGroup>
  <Accordion title="Embed accent color">
    Set the default accent color for embeds sent by raze in your slotted guild.

    <CodeGroup>
      ```bash Syntax theme={null} theme={null}
      ;edit accent (color)
      ```

      ```bash Example theme={null} theme={null}
      ;edit accent #5865F2
      ;edit accent reset
      ```
    </CodeGroup>
  </Accordion>

  <Accordion title="Economy currency name">
    Rename the economy currency throughout your server.

    <CodeGroup>
      ```bash Syntax theme={null} theme={null}
      ;edit currency (name)
      ```

      ```bash Example theme={null} theme={null}
      ;edit currency Gems
      ;edit currency reset
      ```
    </CodeGroup>
  </Accordion>

  <Accordion title="Custom context emojis">
    Override default status emojis (`approve`, `deny`, `warn`, `info`) in your server's embeds.

    <CodeGroup>
      ```bash Syntax theme={null} theme={null}
      ;edit emoji (kind) (emoji)
      ```

      ```bash Example theme={null} theme={null}
      ;edit emoji approve ✅
      ;edit emoji reset approve
      ```
    </CodeGroup>
  </Accordion>
</AccordionGroup>

***

## Personal customization

Donors can also customize their own personal experience across all servers:

* **Custom self-prefix (`Premium`):** Set a personal prefix that works for you in any server using `;prefix self set (symbol)`.
* **Global embed accent color (`Apex`):** Set a personal embed accent color across all servers using `;edit gaccent (color)`.
* **Bot Reskin (`Premium`):** Route messages through a webhook using a custom username and avatar. Learn more on [Donator Perks](/overview/donator-perks#reskin).

***

## Summary of permissions & requirements

| Command                                      | Requirement                  | Target Scope   |
| :------------------------------------------- | :--------------------------- | :------------- |
| `;edit name / avatar / banner / bio / reset` | Free (`Manage Server`)       | Current Server |
| `;prefix set`                                | Free (`Manage Server`)       | Current Server |
| `;edit accent / currency / emoji`            | **Premium** (Slotted Server) | Current Server |
| `;prefix self set`                           | **Premium**                  | User Global    |
| `;reskin`                                    | **Premium**                  | User Global    |
| `;edit gaccent`                              | **Apex**                     | User Global    |
