How To Install Mods On Your Arma Reforger Server
Adding mods to Arma Reforger is a great way to mix-up the gameplay and try new things, whether it’s a simple quality-of-life mod or a total overhaul, there’ll likely be something that’s perfect for you.
This guide will cover where to find and how to install mods on your Arma Reforger server.
Downloading And Locating Arma Reforger Mods
Arma Reforger mods are downloaded through the in-game Workshop menu, after you’ve downloaded your desired mods and if required their listed dependencies, follow the steps below to retrieve the necessary mod data to install them on your server
Locating Arma Reforger Mods
-
Press
Windows Key + R
on your keyboard. -
Copy and paste this:
%USERPROFILE%\Documents\My Games\ArmaReforger\addons -
Here you will find your mods, open the folder of a mod you wish to install.
-
Open
ServerData.json
. -
Copy the following data,
version
,id
, andname
.
Here’s a template that you can copy your mods version, id, and name into, this will be useful for the next steps of installing this mod on your server.
{ "modId": "59674C21AA886D57", "name": "BetterMuzzleFlashes 2.0", "version": "2.0.8" }
Installing Mods On Your Arma Reforger Server
-
Access the Game Host Bros Game Panel and
Stop
your Arma Reforger Server. -
Go to
Management > File Manager
. -
Open
config.json
and find themods
line.- Here is an example of what this will look like without any mods:
config.json "mods": [], -
Add your mod
version
,id
, andname
, following this example:config.json "mods": [{"modId": "59674C21AA886D57","name": "BetterMuzzleFlashes 2.0","version": "2.0.8"}],"name": "Hosted By Game Host Bros", -
Start your server.
Multiple Mod Template
"mods": [ { "modId": "59674C21AA886D57", "name": "BetterMuzzleFlashes 2.0", "version": "2.0.8" }, { "modId": "59651354B2904BA6", "name": "BetterHitsEffects 3.0 Alpha", "version": "3.0.1" }, { "modId": "59A30ACC02650E71", "name": "Night Vision System", "version": "1.1.26" } ], "name": "Hosted By Game Host Bros",