How to Add Workshop Mods to Your Arma Reforger Server
You can install mods on your Arma Reforger server by editing the serverconfig.json file through the Game Control Panel. Each mod requires its ID, name, and version.
If your mod introduces a custom scenario, see adding workshop scenarios after completing these steps.
Getting the Mod ID, Name, and Version
Method 1: Workshop Website
- Open the Arma Reforger Workshop.
- Find the mod you want to install.
- Copy the Name, ID, and Version values shown on the mod page.
Method 2: ServerData.json
- Install the mod from the in-game workshop on your PC.
- Navigate to
C:\Users\<Username>\Documents\my games\ArmaReforger\addons\. - Open the folder for the mod.
- Open
ServerData.json. - Copy the
id,name, andversionvalues from the top of the file:
"id": "591AF5BDA9F7CE8B",
"name": "Capture & Hold",
"revision": {
"version": "1.0.8",
Adding the Mod to the Server
- Log in to the Game Control Panel and navigate to your server.
- Stop your server.
- Click the Configuration Files icon.
- Click Config Editor for
serverconfig.json. - Navigate to the Mods option.
- Add an entry using this template:
{"modId":"id","name":"name","version":"version"}
Replaceid,name, andversionwith the values you copied. For example:{"modId":"591AF5BDA9F7CE8B","name":"Capture & Hold","version":"1.0.8"}Note: If you are adding multiple mods, separate each entry with a comma, except after the last one:
{"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"} - Click Save.