{"id":1966,"date":"2022-08-21T10:02:32","date_gmt":"2022-08-21T10:02:32","guid":{"rendered":"https:\/\/xgamingserver.com\/blog\/?p=1966"},"modified":"2026-06-15T19:24:34","modified_gmt":"2026-06-15T19:24:34","slug":"how-to-install-mods-on-arma-reforger-server","status":"publish","type":"post","link":"https:\/\/xgamingserver.com\/blog\/how-to-install-mods-on-arma-reforger-server\/","title":{"rendered":"How to Install Mods on Arma Reforger Server"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Adding Workshop mods to an Arma Reforger dedicated server is not a &#8220;drop files in a folder&#8221; job like older Arma titles. Everything runs through a single JSON array in your server config, and the server downloads each mod from the Workshop backend on startup. Get the format right and your server pulls every mod automatically; get one field wrong and the server either refuses to launch or quietly drops players from Xbox and PlayStation. This guide walks through the exact <code>mods<\/code> array structure, how to find a mod&#8217;s <code>modId<\/code>, how to pin versions, how load order actually behaves, and the console crossplay caveat that catches almost everyone. It is written against the current 1.7.0.41 &#8220;Partisan Update&#8221; (released May 28, 2026) and the official Bohemia Interactive server config specification.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Where mods live: the <code>mods<\/code> array in config.json<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Arma Reforger has no separate mod loader and no <code>-mod<\/code> launch parameter for dedicated servers. Mods are declared inside your <code>config.json<\/code> \u2014 the same JSON file you pass to the server with <code>-config<\/code> \u2014 under <code>game.mods<\/code>. When the server starts, it reads that array, contacts the Workshop backend, downloads any mod it does not already have cached, and loads them before the scenario.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The array sits inside the <code>game<\/code> block, alongside fields like <code>name<\/code>, <code>scenarioId<\/code> and <code>maxPlayers<\/code>. A vanilla config simply has <code>\"mods\": []<\/code>. Here is the minimal shape, trimmed down to the parts that matter for modding:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n  \"bindAddress\": \"\",\n  \"bindPort\": 2001,\n  \"publicAddress\": \"\",\n  \"publicPort\": 2001,\n  \"a2s\": { \"address\": \"\", \"port\": 17777 },\n  \"game\": {\n    \"name\": \"My Modded Server\",\n    \"scenarioId\": \"{ECC61978EDCC2B5A}Missions\/23_Campaign.conf\",\n    \"maxPlayers\": 64,\n    \"modsRequiredByDefault\": true,\n    \"mods\": [\n      { \"modId\": \"59672945D69497A0\", \"name\": \"Server Admin Tools\", \"version\": \"1.0.5\" },\n      { \"modId\": \"5972D43D44FCABDD\", \"name\": \"Example Optional Mod\", \"required\": false }\n    ]\n  }\n}<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">That is the whole mechanism. Every other modding detail \u2014 finding the GUID, pinning a version, controlling load order, handling consoles \u2014 is about filling out the objects inside that array correctly. For a full breakdown of every other field in the file (networking, RCON, view distance, BattlEye and so on), see our <a href=\"https:\/\/xgamingserver.com\/blog\/arma-reforger-server-configuration-guide\/\">Arma Reforger server configuration guide<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The four fields of a mod entry<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Each element in the <code>mods<\/code> array is a JSON object with up to four fields. Only one of them is strictly required.<\/p>\n\n\n\n<figure class=\"wp-block-table is-style-stripes\"><table><thead><tr><th>Field<\/th><th>Required?<\/th><th>Type \/ default<\/th><th>What it does<\/th><\/tr><\/thead><tbody>\n<tr><td><code>modId<\/code><\/td><td>Yes<\/td><td>string (GUID)<\/td><td>The mod&#8217;s unique identifier from the Workshop. This is the only field that actually selects the mod.<\/td><\/tr>\n<tr><td><code>name<\/code><\/td><td>No<\/td><td>string<\/td><td>Human-readable label. Purely a comment for your own reference \u2014 it has no functional effect on which mod loads.<\/td><\/tr>\n<tr><td><code>version<\/code><\/td><td>No<\/td><td>string<\/td><td>Pins a specific mod version. If omitted, the server uses the latest available version.<\/td><\/tr>\n<tr><td><code>required<\/code><\/td><td>No<\/td><td>bool, defaults to <code>modsRequiredByDefault<\/code> (true)<\/td><td>If <code>false<\/code>, the mod is auto-removed with a log warning when it can&#8217;t be downloaded, instead of blocking server start. Added in 1.2.1.<\/td><\/tr>\n<\/tbody><\/table><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">The single most common mistake is assuming <code>name<\/code> matters. It does not. You can type &#8220;Server Admin Tools&#8221; or &#8220;asdf&#8221; \u2014 the server resolves the mod entirely from <code>modId<\/code>. Keep <code>name<\/code> accurate purely so your config stays readable, especially once you have a dozen mods stacked up.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Finding a mod&#8217;s <code>modId<\/code> on the Workshop<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The <code>modId<\/code> is a GUID \u2014 a 16-character hexadecimal string like <code>59672945D69497A0<\/code>. It is not the mod&#8217;s display name and not a Steam Workshop numeric ID. Arma Reforger uses its own Workshop, and there are three reliable ways to get the GUID:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>From the Workshop webpage<\/strong> \u2014 open the mod&#8217;s page in the in-game Workshop or on the web Workshop; the GUID is shown on the listing and in the page URL.<\/li>\n<li><strong>From the in-game Mod Manager (easiest)<\/strong> \u2014 this is the method Bohemia&#8217;s own wiki recommends and it is by far the least error-prone.<\/li>\n<li><strong>From the mod&#8217;s <code>.gproj<\/code> file<\/strong> or from Workbench options while the mod is running, if you are developing locally.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">The Mod Manager JSON-copy trick<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Rather than hand-typing GUIDs (one wrong character and the mod silently fails to load), let the game build the array for you:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Launch the Arma Reforger client and open <strong>Workshop \u2192 Mod Manager<\/strong>.<\/li>\n<li>Enable every mod you want on your server and arrange them in the order you want them loaded.<\/li>\n<li>Switch to the <strong>JSON tab<\/strong> and click <strong>&#8220;Copy to clipboard.&#8221;<\/strong><\/li>\n<li>Paste the result straight into the <code>mods<\/code> array of your <code>config.json<\/code>.<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\">The clipboard output is already valid JSON with correct GUIDs, names and (optionally) versions filled in. This eliminates the most common cause of &#8220;my mods won&#8217;t load&#8221; \u2014 a mistyped <code>modId<\/code>. It also captures the order you set, which matters for load order (see below).<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Version pinning vs. always-latest<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The <code>version<\/code> field is optional, and that one fact has real operational consequences:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Omit <code>version<\/code><\/strong> and the server always pulls the latest published version of the mod. Convenient, but a mod author&#8217;s update can break your server or change behavior mid-season without warning.<\/li>\n<li><strong>Specify <code>version<\/code><\/strong> (e.g. <code>\"version\": \"1.0.5\"<\/code>) and the server stays pinned to exactly that release until you change the string yourself.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">For a stable community server, pinning versions is the safer default \u2014 you control exactly when updates land and can test them before exposing players to them. The trade-off is that you have to maintain those strings: every time a mod ships a fix you want, you bump the number. A practical middle ground is to pin the handful of large gameplay-overhaul mods that define your server, and leave small cosmetic or utility mods on latest.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">One important caveat tied to the engine, not the mod: the dedicated server must be on the <strong>same build as your clients<\/strong>. After a Bohemia patch you re-run <code>app_update 1874900 validate<\/code> in SteamCMD, and mods frequently need updating too \u2014 the 1.7.0.41 modding changes relocated or removed several APIs, which required many mods to be rebuilt. A pinned <code>version<\/code> that predates the engine update can fail to load on the new build, so after a major patch, expect to re-check your pins.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Load order: how the array sequence works<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Arma Reforger loads mods in the order they appear in the <code>mods<\/code> array, top to bottom. There is no separate priority field \u2014 the array position <em>is<\/em> the load order. When two mods modify the same asset or config, the one loaded later generally takes precedence, so dependencies and base frameworks should sit above the content that builds on them.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">This is exactly why the Mod Manager JSON-copy approach is so useful: you visually sort mods in the manager, dependencies first, and the exported JSON preserves that sequence. If you hand-edit, keep framework\/library mods near the top, faction or asset packs in the middle, and tweak\/override mods last. When a mod&#8217;s description lists dependencies, place those dependencies <em>before<\/em> it in the array.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Required vs. optional mods and <code>modsRequiredByDefault<\/code><\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">By default \u2014 controlled by <code>game.modsRequiredByDefault<\/code> (bool, default <code>true<\/code>, added in 1.2.1) \u2014 every mod is treated as <em>required<\/em>. A required mod that cannot be downloaded blocks the server from starting. That is usually what you want: if a core gameplay mod is missing, you do not want the server limping along without it.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Set a mod&#8217;s <code>required<\/code> to <code>false<\/code> and the behavior flips: if that mod fails to download, the server logs a warning and removes it from the load list rather than refusing to boot. This is handy for non-essential cosmetic or convenience mods where you would rather the server come up than sit dead because one optional add-on had a Workshop hiccup. You can flip the global default by setting <code>modsRequiredByDefault: false<\/code>, then mark only your critical mods as <code>\"required\": true<\/code> individually.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The console crossplay caveat (read this before adding any mod)<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">This is the part that surprises most server owners. The moment you add <em>any<\/em> mod, you change which platforms can join your server. Crossplay is governed by <code>game.supportedPlatforms<\/code>, an array using the tokens <code>PLATFORM_PC<\/code>, <code>PLATFORM_XBL<\/code> (Xbox) and <code>PLATFORM_PSN<\/code> (PlayStation). The <code>game.crossPlatform<\/code> boolean, when <code>true<\/code>, auto-adds the platforms it can. But mods and consoles interact in strict ways:<\/p>\n\n\n\n<figure class=\"wp-block-table is-style-stripes\"><table><thead><tr><th>Platform<\/th><th>Mod policy<\/th><th>Net effect on a modded server<\/th><\/tr><\/thead><tbody>\n<tr><td><strong>PC<\/strong> (<code>PLATFORM_PC<\/code>)<\/td><td>Any mods allowed<\/td><td>Always fine. No restrictions.<\/td><\/tr>\n<tr><td><strong>Xbox<\/strong> (<code>PLATFORM_XBL<\/code>)<\/td><td>Only Bohemia-certified console-compatible mods<\/td><td>Xbox players can join, but adding a single PC-only (non-console-compatible) mod drops Xbox.<\/td><\/tr>\n<tr><td><strong>PlayStation<\/strong> (<code>PLATFORM_PSN<\/code>)<\/td><td>No mods at all<\/td><td>Any mod present excludes PSN entirely. There is no per-mod exemption.<\/td><\/tr>\n<\/tbody><\/table><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">The practical rules that follow from this:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Mods and PlayStation are mutually exclusive.<\/strong> PS5 players cannot access modded servers \u2014 this is widely reported to stem from Sony&#8217;s certification policy on user-generated content. Treat it as absolute: if you want PSN players, run vanilla.<\/li>\n<li>Even with <code>crossPlatform: true<\/code>, the wiki notes that <strong>PSN is not added on modded servers<\/strong> \u2014 the engine silently leaves PlayStation out the moment a mod is in the list.<\/li>\n<li><strong>Xbox survives only with certified mods.<\/strong> Look for the console-compatible \/ &#8220;XBL&#8221; badge on a mod&#8217;s Workshop listing. One PC-only mod in the array and Xbox players lose access.<\/li>\n<li>A fully cross-platform server (PC + Xbox + PS5) must therefore be <strong>vanilla \/ no mods<\/strong>. With mods you can reach at most <strong>PC + Xbox<\/strong> (and only with console-certified mods), never PlayStation.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">So decide your platform target <em>before<\/em> you build your mod list. If your community is console-heavy on PlayStation, your mod choices are effectively zero. If it is PC plus Xbox, restrict yourself to certified mods. If it is PC-only, go wild. There is a deeper walkthrough of the platform tokens and valid combinations in our <a href=\"https:\/\/xgamingserver.com\/blog\/how-to-make-arma-reforger-server-cross-platform\/\">guide to making your Arma Reforger server cross-platform<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Applying changes and restarting<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The <code>mods<\/code> array is only read at server startup. After editing <code>config.json<\/code> you must restart the server process for changes to take effect \u2014 the in-game <code>#restart<\/code> admin command restarts the <em>scenario<\/em> but does not re-read the mod list. On first boot after adding new mods, expect a longer startup while the server downloads them from the Workshop backend; subsequent boots use the cache and start quickly. You launch the server with a command like:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># Windows\nArmaReforgerServer.exe -config \".\\Configs\\config.json\" -maxFPS 60\n\n# Linux\n.\/ArmaReforgerServer -config \/home\/user\/.config\/ArmaReforgerServer\/config.json \\\n  -profile \/home\/user\/.config\/ArmaReforgerServer -maxFPS 60<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">If you are running self-hosted, watch the startup log: failed downloads, missing dependencies and dropped optional mods all show up there. On a managed XGamingServer plan you can paste the array straight into the control-panel config editor and the panel handles the restart and download for you \u2014 if you are not yet running a box, our <a href=\"https:\/\/xgamingserver.com\/arma-reforger-server-hosting\">Arma Reforger server plans<\/a> come pre-wired for Workshop mods. The full server-side reference for mod fields, scenario IDs and startup parameters lives in the <a href=\"https:\/\/xgamingserver.com\/docs\/arma-reforger\">XGamingServer Arma Reforger documentation<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Troubleshooting mods that won&#8217;t load<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Mistyped <code>modId<\/code><\/strong> \u2014 the number-one cause. GUIDs are 16 hex characters; one wrong character means the mod silently doesn&#8217;t load. Use the Mod Manager JSON copy instead of hand-typing.<\/li>\n<li><strong>Server build mismatch after a patch<\/strong> \u2014 re-run <code>app_update 1874900 validate<\/code> and update mods; the 1.7.0.41 API changes broke many older mods until they were rebuilt.<\/li>\n<li><strong>Console players missing<\/strong> \u2014 that is the crossplay caveat, not a bug. A mod dropped PSN, or a PC-only mod dropped Xbox.<\/li>\n<li><strong>Server won&#8217;t start at all<\/strong> \u2014 a <code>required<\/code> mod failed to download. Mark non-essential mods <code>\"required\": false<\/code> so a single failed download doesn&#8217;t block boot.<\/li>\n<li><strong>Invalid JSON<\/strong> \u2014 a trailing comma or missing brace will stop the whole config from parsing. Validate the file before launching.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Frequently asked questions<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">How do I find the modId for an Arma Reforger mod?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">The <code>modId<\/code> is a 16-character hexadecimal GUID, not the mod&#8217;s name or a Steam numeric ID. The most reliable way to get it is the in-game <strong>Workshop \u2192 Mod Manager \u2192 JSON tab \u2192 &#8220;Copy to clipboard&#8221;<\/strong>, which exports a ready-to-paste array with correct GUIDs. You can also read the GUID from the mod&#8217;s Workshop webpage\/URL, from its <code>.gproj<\/code> file, or from Workbench options while developing. Avoid hand-typing it \u2014 a single wrong character makes the mod silently fail to load.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Can Xbox or PlayStation players join a modded Arma Reforger server?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">PlayStation players <strong>cannot<\/strong> join any modded server \u2014 adding even one mod removes <code>PLATFORM_PSN<\/code> entirely, with no per-mod exemption, and <code>crossPlatform: true<\/code> won&#8217;t add PSN to a modded server. Xbox players <strong>can<\/strong> join, but only when every mod is Bohemia-certified for console (the &#8220;XBL&#8221;\/console-compatible badge); a single PC-only mod drops Xbox. PC players can use any mods. So a modded server reaches at most PC + Xbox, never PS5.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Do I need to pin a mod version, or will it always use the latest?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">The <code>version<\/code> field is optional. If you omit it, the server always downloads the latest published version of the mod. If you set it (e.g. <code>\"version\": \"1.0.5\"<\/code>), the server stays locked to that release until you change the string. Pinning is safer for stable community servers because mod-author updates won&#8217;t change your server&#8217;s behavior without warning \u2014 but you then have to bump the version manually to get fixes. After a major engine patch, re-check pins, since old versions may not load on the new build.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Where do I put the mods \u2014 is there a mod folder?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">There is no mod folder and no <code>-mod<\/code> launch parameter for dedicated servers. All mods are declared in the <code>game.mods<\/code> array inside your <code>config.json<\/code>, and the server downloads them automatically from the Workshop backend on startup. You do not manually copy mod files onto the server. After editing the array you must restart the server process (not just <code>#restart<\/code> the scenario) for the new list to load.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">How does load order work for Arma Reforger mods?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Mods load in the order they appear in the <code>mods<\/code> array, top to bottom \u2014 array position is the load order, and there is no separate priority field. When two mods touch the same asset, the one loaded later typically wins, so put framework\/dependency mods near the top and override\/tweak mods last. Sorting mods in the in-game Mod Manager before doing the JSON copy preserves the order you set.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Why does my server fail to start after I add a mod?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">By default <code>modsRequiredByDefault<\/code> is <code>true<\/code>, so every mod is treated as required and a required mod that can&#8217;t be downloaded blocks startup. Either fix the failing mod (check the <code>modId<\/code> and that it exists on the current build) or set that mod&#8217;s <code>\"required\": false<\/code> so the server logs a warning and removes it instead of refusing to boot. Also check for invalid JSON \u2014 a stray trailing comma will stop the whole config from parsing.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Next steps<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Mods are one piece of a well-run Arma Reforger server. Once your <code>mods<\/code> array is solid, the natural follow-ups are choosing the right scenario and AI settings \u2014 covered in our guide to <a href=\"https:\/\/xgamingserver.com\/blog\/how-to-disable-ai-and-make-your-arma-reforger-server-pvp\/\">disabling AI and running a PvP server<\/a> \u2014 and tuning who gets in, which we walk through in <a href=\"https:\/\/xgamingserver.com\/blog\/setting-up-server-queues-in-arma-reforger\/\">setting up server queues and reserved slots<\/a>. With the GUIDs sorted, the version pins set, and your platform target decided, your modded server should download everything on the next restart and be ready for players.<\/p>\n\n\n<!-- xg-tools-mesh -->\n\n<div class=\"wp-block-group xg-tools-box is-layout-flow wp-block-group-is-layout-flow\" style=\"border:1px solid rgba(255,255,255,.1);border-radius:12px;padding:18px 22px;margin-top:8px;background:rgba(76,175,80,.04);\">\n<h3 class=\"wp-block-heading\">Free Arma Reforger Tools<\/h3>\n<p class=\"wp-block-paragraph\">Speed up your server with our free Arma Reforger tools:<\/p>\n<ul class=\"wp-block-list\"><li><a href=\"https:\/\/xgamingserver.com\/tools\/arma-reforger\/map\">Interactive Map<\/a><\/li><\/ul>\n<\/div>\n\n","protected":false},"excerpt":{"rendered":"<p>Adding Workshop mods to an Arma Reforger dedicated server is not a &#8220;drop files in a folder&#8221; job like older Arma titles. Everything runs through a single JSON array in your server config, and the server downloads each mod from the Workshop backend on startup. Get the format right and your server pulls every mod [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":1967,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_gspb_post_css":"","_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":false,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[49],"tags":[],"class_list":["post-1966","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-arma-reforger"],"blocksy_meta":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v24.5 (Yoast SEO v26.7) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Install Mods on Arma Reforger Server - XGamingServer<\/title>\n<meta name=\"description\" content=\"Install mods on your Arma Reforger server easily with our guide. Get step-by-step instructions to boost your gaming with favorite mods today!\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/xgamingserver.com\/blog\/how-to-install-mods-on-arma-reforger-server\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install Mods on Arma Reforger Server\" \/>\n<meta property=\"og:description\" content=\"Install mods on your Arma Reforger server easily with our guide. Get step-by-step instructions to boost your gaming with favorite mods today!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/xgamingserver.com\/blog\/how-to-install-mods-on-arma-reforger-server\/\" \/>\n<meta property=\"og:site_name\" content=\"XGamingServer\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/web.facebook.com\/xgamingserver69\/\" \/>\n<meta property=\"article:published_time\" content=\"2022-08-21T10:02:32+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-06-15T19:24:34+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2022\/08\/capsule_616x353.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"616\" \/>\n\t<meta property=\"og:image:height\" content=\"353\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Xray\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@rainerstudios\" \/>\n<meta name=\"twitter:site\" content=\"@xgamingserver\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Xray\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-install-mods-on-arma-reforger-server\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-install-mods-on-arma-reforger-server\/\"},\"author\":{\"name\":\"Xray\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/9fe94eb5b0ad6508acec5eef457da608\"},\"headline\":\"How to Install Mods on Arma Reforger Server\",\"datePublished\":\"2022-08-21T10:02:32+00:00\",\"dateModified\":\"2026-06-15T19:24:34+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-install-mods-on-arma-reforger-server\/\"},\"wordCount\":2343,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-install-mods-on-arma-reforger-server\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2022\/08\/capsule_616x353.jpg\",\"articleSection\":[\"Arma Reforger\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/xgamingserver.com\/blog\/how-to-install-mods-on-arma-reforger-server\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-install-mods-on-arma-reforger-server\/\",\"url\":\"https:\/\/xgamingserver.com\/blog\/how-to-install-mods-on-arma-reforger-server\/\",\"name\":\"How to Install Mods on Arma Reforger Server - XGamingServer\",\"isPartOf\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-install-mods-on-arma-reforger-server\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-install-mods-on-arma-reforger-server\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2022\/08\/capsule_616x353.jpg\",\"datePublished\":\"2022-08-21T10:02:32+00:00\",\"dateModified\":\"2026-06-15T19:24:34+00:00\",\"description\":\"Install mods on your Arma Reforger server easily with our guide. Get step-by-step instructions to boost your gaming with favorite mods today!\",\"breadcrumb\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-install-mods-on-arma-reforger-server\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/xgamingserver.com\/blog\/how-to-install-mods-on-arma-reforger-server\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-install-mods-on-arma-reforger-server\/#primaryimage\",\"url\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2022\/08\/capsule_616x353.jpg\",\"contentUrl\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2022\/08\/capsule_616x353.jpg\",\"width\":616,\"height\":353,\"caption\":\"Arma reforger\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-install-mods-on-arma-reforger-server\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/xgamingserver.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Arma Reforger\",\"item\":\"https:\/\/xgamingserver.com\/blog\/category\/arma-reforger\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"How to Install Mods on Arma Reforger Server\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/#website\",\"url\":\"https:\/\/xgamingserver.com\/blog\/\",\"name\":\"XGamingServer\",\"description\":\"Dedicated Game Server Hosting\",\"publisher\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/xgamingserver.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/#organization\",\"name\":\"XGamingServer\",\"url\":\"https:\/\/xgamingserver.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2020\/09\/logo.svg\",\"contentUrl\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2020\/09\/logo.svg\",\"width\":\"1024\",\"height\":\"1024\",\"caption\":\"XGamingServer\"},\"image\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/web.facebook.com\/xgamingserver69\/\",\"https:\/\/x.com\/xgamingserver\",\"https:\/\/www.instagram.com\/xgamingserver\/\",\"https:\/\/www.linkedin.com\/company\/xgamingserver\/\",\"https:\/\/www.pinterest.com\/xgamingserver\/\",\"https:\/\/www.youtube.com\/channel\/UCHnOtWxpzaL2r3jM9Jm40EQ\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/9fe94eb5b0ad6508acec5eef457da608\",\"name\":\"Xray\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/f5e048c648806821e7dfebe32ad45489165185fe75979165fb4044e2967386d8?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/f5e048c648806821e7dfebe32ad45489165185fe75979165fb4044e2967386d8?s=96&d=mm&r=g\",\"caption\":\"Xray\"},\"description\":\"A Mathematician who knows a thing or two about Design.\",\"sameAs\":[\"https:\/\/xgamingserver.com\/blog\",\"https:\/\/www.instagram.com\/rainerstudios\/\",\"https:\/\/x.com\/@rainerstudios\"]}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to Install Mods on Arma Reforger Server - XGamingServer","description":"Install mods on your Arma Reforger server easily with our guide. Get step-by-step instructions to boost your gaming with favorite mods today!","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/xgamingserver.com\/blog\/how-to-install-mods-on-arma-reforger-server\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Mods on Arma Reforger Server","og_description":"Install mods on your Arma Reforger server easily with our guide. Get step-by-step instructions to boost your gaming with favorite mods today!","og_url":"https:\/\/xgamingserver.com\/blog\/how-to-install-mods-on-arma-reforger-server\/","og_site_name":"XGamingServer","article_publisher":"https:\/\/web.facebook.com\/xgamingserver69\/","article_published_time":"2022-08-21T10:02:32+00:00","article_modified_time":"2026-06-15T19:24:34+00:00","og_image":[{"width":616,"height":353,"url":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2022\/08\/capsule_616x353.jpg","type":"image\/jpeg"}],"author":"Xray","twitter_card":"summary_large_image","twitter_creator":"@rainerstudios","twitter_site":"@xgamingserver","twitter_misc":{"Written by":"Xray","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/xgamingserver.com\/blog\/how-to-install-mods-on-arma-reforger-server\/#article","isPartOf":{"@id":"https:\/\/xgamingserver.com\/blog\/how-to-install-mods-on-arma-reforger-server\/"},"author":{"name":"Xray","@id":"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/9fe94eb5b0ad6508acec5eef457da608"},"headline":"How to Install Mods on Arma Reforger Server","datePublished":"2022-08-21T10:02:32+00:00","dateModified":"2026-06-15T19:24:34+00:00","mainEntityOfPage":{"@id":"https:\/\/xgamingserver.com\/blog\/how-to-install-mods-on-arma-reforger-server\/"},"wordCount":2343,"commentCount":1,"publisher":{"@id":"https:\/\/xgamingserver.com\/blog\/#organization"},"image":{"@id":"https:\/\/xgamingserver.com\/blog\/how-to-install-mods-on-arma-reforger-server\/#primaryimage"},"thumbnailUrl":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2022\/08\/capsule_616x353.jpg","articleSection":["Arma Reforger"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/xgamingserver.com\/blog\/how-to-install-mods-on-arma-reforger-server\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/xgamingserver.com\/blog\/how-to-install-mods-on-arma-reforger-server\/","url":"https:\/\/xgamingserver.com\/blog\/how-to-install-mods-on-arma-reforger-server\/","name":"How to Install Mods on Arma Reforger Server - XGamingServer","isPartOf":{"@id":"https:\/\/xgamingserver.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/xgamingserver.com\/blog\/how-to-install-mods-on-arma-reforger-server\/#primaryimage"},"image":{"@id":"https:\/\/xgamingserver.com\/blog\/how-to-install-mods-on-arma-reforger-server\/#primaryimage"},"thumbnailUrl":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2022\/08\/capsule_616x353.jpg","datePublished":"2022-08-21T10:02:32+00:00","dateModified":"2026-06-15T19:24:34+00:00","description":"Install mods on your Arma Reforger server easily with our guide. Get step-by-step instructions to boost your gaming with favorite mods today!","breadcrumb":{"@id":"https:\/\/xgamingserver.com\/blog\/how-to-install-mods-on-arma-reforger-server\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/xgamingserver.com\/blog\/how-to-install-mods-on-arma-reforger-server\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/xgamingserver.com\/blog\/how-to-install-mods-on-arma-reforger-server\/#primaryimage","url":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2022\/08\/capsule_616x353.jpg","contentUrl":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2022\/08\/capsule_616x353.jpg","width":616,"height":353,"caption":"Arma reforger"},{"@type":"BreadcrumbList","@id":"https:\/\/xgamingserver.com\/blog\/how-to-install-mods-on-arma-reforger-server\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/xgamingserver.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Arma Reforger","item":"https:\/\/xgamingserver.com\/blog\/category\/arma-reforger\/"},{"@type":"ListItem","position":3,"name":"How to Install Mods on Arma Reforger Server"}]},{"@type":"WebSite","@id":"https:\/\/xgamingserver.com\/blog\/#website","url":"https:\/\/xgamingserver.com\/blog\/","name":"XGamingServer","description":"Dedicated Game Server Hosting","publisher":{"@id":"https:\/\/xgamingserver.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/xgamingserver.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/xgamingserver.com\/blog\/#organization","name":"XGamingServer","url":"https:\/\/xgamingserver.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/xgamingserver.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2020\/09\/logo.svg","contentUrl":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2020\/09\/logo.svg","width":"1024","height":"1024","caption":"XGamingServer"},"image":{"@id":"https:\/\/xgamingserver.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/web.facebook.com\/xgamingserver69\/","https:\/\/x.com\/xgamingserver","https:\/\/www.instagram.com\/xgamingserver\/","https:\/\/www.linkedin.com\/company\/xgamingserver\/","https:\/\/www.pinterest.com\/xgamingserver\/","https:\/\/www.youtube.com\/channel\/UCHnOtWxpzaL2r3jM9Jm40EQ"]},{"@type":"Person","@id":"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/9fe94eb5b0ad6508acec5eef457da608","name":"Xray","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/f5e048c648806821e7dfebe32ad45489165185fe75979165fb4044e2967386d8?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f5e048c648806821e7dfebe32ad45489165185fe75979165fb4044e2967386d8?s=96&d=mm&r=g","caption":"Xray"},"description":"A Mathematician who knows a thing or two about Design.","sameAs":["https:\/\/xgamingserver.com\/blog","https:\/\/www.instagram.com\/rainerstudios\/","https:\/\/x.com\/@rainerstudios"]}]}},"jetpack_publicize_connections":[],"jetpack_featured_media_url":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2022\/08\/capsule_616x353.jpg","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/posts\/1966","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/comments?post=1966"}],"version-history":[{"count":25,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/posts\/1966\/revisions"}],"predecessor-version":[{"id":22773,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/posts\/1966\/revisions\/22773"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/media\/1967"}],"wp:attachment":[{"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/media?parent=1966"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/categories?post=1966"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/tags?post=1966"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}