How to install mods on your Arma Reforger server

TMG Manic

TMG Member
Member
TMG Founder

Installing Mods to Your Arma Reforger Server (TMG-Style)​

Mods are the backbone of any good Reforger experience—whether you're running realism tweaks, custom gear, or full-blown scenario overhauls. Here's how to install mods to your dedicated server without breaking configs or boot-looping your box.

Step 1: Download Mods via Workshop​

  • Launch Arma Reforger on your local machine
  • Go to the Workshop tab
  • Subscribe to the mods you want to run
  • Let the game download them fully

Step 2: Locate Mod Metadata​

  • Navigate to: %USERPROFILE%\Documents\My Games\ArmaReforger\addons
  • Open each mod folder
  • Find and open ServerData.json
  • Copy the following fields:

JSON:
{
  "modId": "59674C21AA886D57",
  "name": "BetterMuzzleFlashes 2.0",
  "version": "2.0.8"
}

Repeat for each mod you want to install.

Step 3: Add Mods to Your Server Config​

  • SSH into your server or open your control panel
  • Edit your `config.json` file
  • Locate the `"mods"` section
  • Paste your mod entries like this:

JSON:
"mods": [
  {
    "modId": "59674C21AA886D57",
    "name": "BetterMuzzleFlashes 2.0",
    "version": "2.0.8"
  },
  {
    "modId": "59EAA89975180DF",
    "name": "Stun Grenade",
    "version": "1.0.17"
  }
],
 
Back
Top