# How To Configure Your Myth of Empires Server (/docs/myth-of-empires/configure-your-server)



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

Myth of Empires uses Unreal Engine configuration files to manage server settings. The main configuration files are `GameUserSettings.ini` and `Game.ini`, which control everything from gameplay rates to server visibility.

Startup Parameters [#startup-parameters]

The most common settings are available in the panel.

<div className="fd-steps">
  <div className="fd-step">
    Open the XGamingServer Panel [#1-open-the-xgamingserver-panel]

    Log in to the [XGamingServer Panel](https://panel.xgamingserver.com).
  </div>

  <div className="fd-step">
    Go to Startup [#2-go-to-startup]

    In the sidebar, click **Startup**.
  </div>

  <div className="fd-step">
    Adjust Settings [#3-adjust-settings]

    Common startup settings include:

    * **Server Name** - The name shown in the server browser
    * **Max Players** - Maximum concurrent players
    * **Server Password** - Password to join the server
  </div>
</div>

Configuration Files [#configuration-files]

For advanced settings, edit the configuration files directly.

<div className="fd-steps">
  <div className="fd-step">
    Open Files [#1-open-files]

    In the sidebar, click **Files**.
  </div>

  <div className="fd-step">
    Navigate to the Config Directory [#2-navigate-to-the-config-directory]

    Navigate to the configuration directory where `GameUserSettings.ini` and `Game.ini` are located. This is typically in the `Saved/Config/WindowsServer/` or `Saved/Config/LinuxServer/` directory.
  </div>

  <div className="fd-step">
    Edit GameUserSettings.ini [#3-edit-gameusersettingsini]

    This file controls core server settings. Common settings include:

    ```
    [ServerSettings]
    ServerName=My Server
    MaxPlayers=70
    ServerPassword=
    AdminPassword=YourAdminPassword
    DifficultyOffset=0.5
    ```
  </div>

  <div className="fd-step">
    Edit Game.ini [#4-edit-gameini]

    This file controls gameplay-specific settings such as:

    * Experience multipliers
    * Harvesting rates
    * Taming speeds
    * Day/night cycle length
  </div>

  <div className="fd-step">
    Save and Restart [#5-save-and-restart]

    After making changes, click **Save** and **restart** your server for the settings to take effect.

    > ⚠️ **Warning:** Incorrect configuration values can prevent your server from starting. Always make a backup before editing configuration files. You can create one from **Backups** in the sidebar.

    > 💡 **Tip:** For more specific setting questions, check the game's community resources or join our [Discord](https://discord.xgamingserver.com) for help.
  </div>
</div>
