How to Add Workshop Scenarios to Your Arma Reforger Server Print

  • 0

Hosting a custom Workshop scenario in Arma Reforger gives you full control over your mission experience. This guide walks you through how to find the necessary mod and scenario details, and how to manually configure them in your server's serverconfig.json file.


Step 1: Gather Mod and Scenario Information

You’ll need the following:

  • modId

  • name

  • version

  • gameId (Scenario ID)

Method 1: From the Arma Reforger Workshop Website

  1. Visit: https://reforger.armaplatform.com/workshop

  2. Select the mod containing the scenario

  3. Copy the following:

    • Mod ID

    • Name

    • Version

  4. Click the Scenarios tab

  5. Copy the Scenario ID (gameId) — it looks like this:

    {6EA2E454519E5869}Missions/CAH_Military_Base.conf
    

Method 2: From ServerData.json (Installed Mod)

  1. Install the mod in-game via the Workshop browser

  2. Navigate to your local mod install path:

    C:\Users\<YourUsername>\Documents\My Games\ArmaReforger\addons\
    
  3. Open the relevant mod folder

  4. Open the ServerData.json file

  5. Look for the following block at the top:

    "id": "591AF5BDA9F7CE8B",
    "name": "Capture & Hold",
    "revision": {
      "version": "1.0.8"
    },
    "scenarios": [
      {
        "name": "Capture & Hold: Camp Blake",
        "gameId": "{6EA2E454519E5869}Missions/CAH_Military_Base.conf"
      }
    ]
    

Step 2: Edit serverconfig.json

  1. Log in to your Imperium Hosting Control Panel

  2. Navigate to your Arma Reforger server

  3. Stop the server

  4. Open Configuration Files

  5. Select Text Editor for serverconfig.json

Add the Workshop Scenario

Inside serverconfig.json, locate the scenarioId field and manually enter the Workshop scenario ID:

"scenarioId": "{6EA2E454519E5869}Missions/CAH_Military_Base.conf",
"useModScenario": true,

Add the Required Mod(s)

Locate the mods block and add your mods using this format:

"mods": [
  {"modId":"591AF5BDA9F7CE8B","name":"Capture & Hold","version":"1.0.8"}
]

For multiple mods:

"mods": [
  {"modId":"591AF5BDA9F7CE8B","name":"Capture & Hold","version":"1.0.8"},
  {"modId":"59673B6FBB95459F", "name":"BetterTracers","version":"1.0.5"},
  {"modId":"5614E482BF83E310","name":"Sample Mod - New Car","version":"1.0.5"}
]

Step 3: Save and Start Your Server

  1. Click Save to apply the changes

  2. Return to the Service Overview

  3. Click Start to launch the server with the selected Workshop scenario and mods


Need Help?

If you're unsure about mod compatibility, syntax errors, or scenario loading issues, our support team is available to assist:
https://www.imperiumhosting.net/submitticket.php


Was this answer helpful?

« Back