# How to Add a Discord Server Link to Your The Isle Evrima Server (/docs/the-isle-evrima/discord-setup)



import { Step, Steps } from 'fumadocs-ui/components/steps';

The Isle Evrima lets you advertise a Discord server invite link directly on your dedicated server. Players see the link in the server details panel before they connect, making it easy to grow your community.

Add Your Discord Invite Link [#add-your-discord-invite-link]

<Steps>
  <Step>
    Get a permanent Discord invite link [#get-a-permanent-discord-invite-link]

    In Discord, right-click your server channel > **Invite People**. Click **Edit invite link**, set **Expire after** to **Never** and **Max number of uses** to **No limit**. Copy the generated link.

    > Use a **permanent invite link** (`https://discord.gg/xxxxxx`). Temporary links expire and players who try to join after expiry will get an error.
  </Step>

  <Step>
    Stop your server [#stop-your-server]

    In the [XGamingServer Panel](https://panel.xgamingserver.com), go to **Console** and stop your server.
  </Step>

  <Step>
    Open Game.ini [#open-gameini]

    Click **Files** in the sidebar and navigate to:

    ```
    TheIsle/Saved/Config/LinuxServer/Game.ini
    ```
  </Step>

  <Step>
    Set the Discord field [#set-the-discord-field]

    Under `[/Script/TheIsle.TIGameSession]`, find or add the `Discord` line:

    ```ini
    [/Script/TheIsle.TIGameSession]
    Discord=https://discord.gg/yourinvitecode
    ```

    > Don't wrap the link in quotes — Evrima reads it as plain text after the `=`.
  </Step>

  <Step>
    Save and start [#save-and-start]

    Click **Save Content** and start the server from **Console**. The Discord link now appears in the server details for any player browsing your server.
  </Step>
</Steps>

Where Players See the Link [#where-players-see-the-link]

The Discord link shows up in:

| Location                      | When                                                           |
| ----------------------------- | -------------------------------------------------------------- |
| Server browser detail panel   | When a player clicks your server in the **Unofficial** browser |
| Server info screen            | After joining, in the server info popup                        |
| Some third-party server tools | Tools that read Evrima server metadata                         |

Common Mistakes [#common-mistakes]

| Mistake                     | Fix                                                                                                                        |
| --------------------------- | -------------------------------------------------------------------------------------------------------------------------- |
| Used a temporary invite     | Set the invite to **Never expire** in Discord settings                                                                     |
| Wrapped the link in quotes  | Remove the quotes — `Discord=https://...` not `Discord="https://..."`                                                      |
| Set the wrong section       | Make sure the line is under `[/Script/TheIsle.TIGameSession]`, not a different section                                     |
| Server overwrote the change | Always **stop the server** before editing — Evrima rewrites configs on shutdown                                            |
| Players say link is broken  | Double-check the link works from a fresh browser. Discord invites can be revoked if the original creator leaves the server |

Removing the Discord Link [#removing-the-discord-link]

To remove the link entirely, delete the line from `Game.ini`:

```ini
[/Script/TheIsle.TIGameSession]
Discord=
```

Or just delete the whole `Discord=` line. Save and restart.

Related Guides [#related-guides]

* [Server Configuration](/docs/the-isle-evrima/server-config)
* [Rename Server](/docs/the-isle-evrima/rename-server)
* [Set a Password](/docs/the-isle-evrima/server-password)
