# How to Change the Scenario on Your Arma Reforger Server (/docs/arma-reforger/switch-scenario)







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

Arma Reforger ships with 29+ official scenarios across Conflict, Game Master, Combat Ops, Combined Arms, and showcase modes. The XGamingServer Config Editor lists all of them with friendly names, so you don't need to memorize scenario IDs.

<Tabs items={['Config Editor (Recommended)', 'Manual JSON']}>
  <Tab value="Config Editor (Recommended)">
    <Steps>
      <Step>
        Open the Config Editor [#open-the-config-editor]

        In the [XGamingServer Panel](https://panel.xgamingserver.com), click **Arma Reforger Config** in the sidebar.

                <img alt="Config Tool in the sidebar" src={__img0} placeholder="blur" />
      </Step>

      <Step>
        Go to the Game tab [#go-to-the-game-tab]
      </Step>

      <Step>
        Open the Scenario dropdown [#open-the-scenario-dropdown]

        Click the **Scenario** dropdown — all 29+ official scenarios are listed with friendly names (e.g., "Conflict — Everon", "Game Master — Arland").

                <img alt="Config Editor scenario dropdown" src={__img1} placeholder="blur" />
      </Step>

      <Step>
        (Optional) Use a Workshop scenario [#optional-use-a-workshop-scenario]

        If you want to use a community scenario from the Workshop, toggle **Use Custom Scenario** and paste the scenario ID. See [Workshop Scenarios](/docs/arma-reforger/workshop-scenarios).
      </Step>

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

        Click **Save Changes** and restart from **Console**. The new scenario loads on next start.
      </Step>
    </Steps>
  </Tab>

  <Tab value="Manual JSON">
    <Steps>
      <Step>
        Stop the server [#stop-the-server]
      </Step>

      <Step>
        Edit config.json [#edit-configjson]

        Click **Files** in the panel and open `config.json`. Set `scenarioId`:

        ```json
        "game": {
          "scenarioId": "{ECC61978EDCC2B5A}Missions/23_Campaign.conf"
        }
        ```
      </Step>

      <Step>
        Save and start [#save-and-start]
      </Step>
    </Steps>
  </Tab>
</Tabs>

Popular Scenarios [#popular-scenarios]

| Scenario               | Map    | Scenario ID                                             |
| ---------------------- | ------ | ------------------------------------------------------- |
| Conflict — Everon      | Everon | `{ECC61978EDCC2B5A}Missions/23_Campaign.conf`           |
| Conflict — Arland      | Arland | `{2BBBE828037C6F4B}Missions/23_Campaign.conf`           |
| Game Master — Everon   | Everon | `{59AD59368755F41A}Missions/21_GM_Eden.conf`            |
| Game Master — Arland   | Arland | `{2BBBE828037C6F4B}Missions/21_GM_Eden.conf`            |
| Combat Ops — Everon    | Everon | `{ECC61978EDCC2B5A}Missions/22_Showcase_CombatOps.conf` |
| Combined Arms — Everon | Everon | `{BB3A14A4FFFCF9B8}Missions/24_CombinedArms.conf`       |

See the full list at [Scenario List](/docs/arma-reforger/scenario-list).

> **Tip:** Use the `-listScenarios` startup parameter to print all available scenarios (including any from installed mods) to the server console.

Related Guides [#related-guides]

* [Scenario List](/docs/arma-reforger/scenario-list)
* [Workshop Scenarios](/docs/arma-reforger/workshop-scenarios)
* [Server Configuration](/docs/arma-reforger/server-config)
