# How to Enable Crossplay on Your Arma Reforger Server (/docs/arma-reforger/crossplay-setup)







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

Arma Reforger supports full crossplay between PC (Steam), Xbox, and PlayStation. You enable it via the Config Editor by toggling Cross Platform and selecting which platforms can join.

> **Important:** `PLATFORM_PC` is **always required** — Arma Reforger does not allow console-only servers.

<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>
        Toggle Cross Platform on [#toggle-cross-platform-on]

        Find the **Cross Platform** toggle and switch it on.

                <img alt="Config Editor Game tab with Cross Platform toggle" src={__img1} placeholder="blur" />
      </Step>

      <Step>
        Select supported platforms [#select-supported-platforms]

        Under **Supported Platforms**, enable the platforms you want to allow:

        * **PC** (always required)
        * **Xbox**
        * **PlayStation**
      </Step>

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

        Click **Save Changes** and restart from **Console**.
      </Step>
    </Steps>
  </Tab>

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

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

        In **Files**, open `config.json`:

        ```json
        "game": {
          "crossPlatform": true,
          "supportedPlatforms": [
            "PLATFORM_PC",
            "PLATFORM_XBL",
            "PLATFORM_PSN"
          ],
          "supportedGameClientTypes": [
            "PLATFORM_PC",
            "PLATFORM_XBL"
          ]
        }
        ```
      </Step>

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

Platform Values [#platform-values]

| Platform    | Value          |
| ----------- | -------------- |
| PC (Steam)  | `PLATFORM_PC`  |
| Xbox        | `PLATFORM_XBL` |
| PlayStation | `PLATFORM_PSN` |

Common Configurations [#common-configurations]

PC Only (No Crossplay) [#pc-only-no-crossplay]

```json
"crossPlatform": false,
"supportedPlatforms": ["PLATFORM_PC"]
```

PC + Xbox [#pc--xbox]

```json
"crossPlatform": true,
"supportedPlatforms": ["PLATFORM_PC", "PLATFORM_XBL"]
```

PC + PlayStation [#pc--playstation]

```json
"crossPlatform": true,
"supportedPlatforms": ["PLATFORM_PC", "PLATFORM_PSN"]
```

All Platforms [#all-platforms]

```json
"crossPlatform": true,
"supportedPlatforms": ["PLATFORM_PC", "PLATFORM_XBL", "PLATFORM_PSN"]
```

Important Notes [#important-notes]

* **PC must always be in the list** — even if you only want console players, PC is required
* **Console players cannot use mods** — if your server runs mods, only PC players can join
* **BattlEye is mandatory** for crossplay servers
* **Xbox and PlayStation use partner certification** — server browser listings can take longer to appear for console players

Related Guides [#related-guides]

* [Server Configuration](/docs/arma-reforger/server-config)
* [Connect to Your Server](/docs/arma-reforger/join-server)
* [BattlEye Anti-Cheat](/docs/arma-reforger/battleye)
