# How to Install Mods on Your Path of Titans Server (/docs/path-of-titans/mod-setup)



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

Path of Titans uses **Alderon's own mod system** for mod distribution. Mods auto-download when players connect — players don't need to manually install anything.

Add Mods [#add-mods]

<Steps>
  <Step>
    Find the mod ID [#find-the-mod-id]

    Browse mods in the in-game Mod Browser or the Alderon mod portal. Mod IDs follow the format `UGC_M_XXXXXXXXX_SK`.
  </Step>

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

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

  <Step>
    Edit GameUserSettings.ini [#edit-gameusersettingsini]

    Click **Files** in the sidebar and open `PathOfTitans/Saved/Config/LinuxServer/GameUserSettings.ini`. Under `[PathOfTitans.Mods]`, add one `EnabledMods=` line per mod:

    ```ini
    [PathOfTitans.Mods]
    EnabledMods=UGC_M_DYV7XYEGX2_SK
    EnabledMods=UGC_M_DYV0XMY7GX_SK
    ```
  </Step>

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

    Click **Save Content** and start from **Console**. The server downloads the mods automatically.
  </Step>
</Steps>

Mod Types [#mod-types]

| Type               | Stackable | Notes                                   |
| ------------------ | :-------: | --------------------------------------- |
| Skin mods          |    Yes    | Multiple skin mods can run together     |
| Creature mods      |    Yes    | Adds new playable species               |
| Creator Mode items |    Yes    |                                         |
| Stat change mods   |   Yes\*   | Only if they affect different creatures |
| Map mods           |   **No**  | Only one map mod at a time              |

Map Mods [#map-mods]

To use a custom map mod:

1. Add the mod ID to `GameUserSettings.ini` as above
2. In `Game.ini`, set `ServerMap=` to the mod's map name

> Some mods don't support all platforms. Mobile and Nintendo Switch players may not be able to join servers with intensive map mods.

Remove a Mod [#remove-a-mod]

Delete the `EnabledMods=` line from `GameUserSettings.ini` and restart.

Related Guides [#related-guides]

* [Server Configuration](/docs/path-of-titans/server-config)
* [Map Selection](/docs/path-of-titans/map-selection)
