{"id":20208,"date":"2024-05-24T10:52:11","date_gmt":"2024-05-24T10:52:11","guid":{"rendered":"https:\/\/xgamingserver.com\/blog\/?p=20208"},"modified":"2026-06-15T19:24:17","modified_gmt":"2026-06-15T19:24:17","slug":"how-to-create-a-custom-scenario-in-arma-reforger-a-guide","status":"publish","type":"post","link":"https:\/\/xgamingserver.com\/blog\/how-to-create-a-custom-scenario-in-arma-reforger-a-guide\/","title":{"rendered":"Creating a Custom Scenario in Arma Reforger: A Guide."},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Loading a custom scenario on an Arma Reforger server is one of those tasks that looks intimidating until you understand a single line of text: the <code>scenarioId<\/code>. Whether you want to switch from Conflict on Everon to a Game Master sandbox, run a Combat Ops co-op mission, or boot a fully modded campaign, every one of those choices comes down to setting the correct scenario string in your JSON server config. This guide explains the exact format, lists the official GUIDs you can paste in today, shows how to print every loadable scenario your server can see, and walks through running modded scenarios alongside the Game Master and Workbench World Editor tools that let you build your own.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Everything here targets the current stable 1.6.x build line (the &#8220;Operation Omega&#8221; branch). Bohemia ships hotfixes roughly weekly, so rather than pinning an exact build, treat this as accurate for the live 1.6 server and re-check GUIDs after any major content patch, since new scenarios can be added.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What &#8220;scenario&#8221; actually means in Arma Reforger<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">In Reforger, a scenario is a packaged mission definition: which world loads (Everon, Arland, or Kolguyev), which game mode runs (Conflict, Game Master, Combat Ops, Capture &#038; Hold, Tutorial), and the rules around it. Each scenario lives inside a resource \u2014 either the base game or a specific mod \u2014 and is identified by a <code>.conf<\/code> file. Your server picks exactly one scenario at launch through the <code>scenarioId<\/code> field inside the <code>game<\/code> block of the config.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Reforger uses a <strong>JSON<\/strong> server config file (commonly named <code>config.json<\/code> or <code>ServerConfig.json<\/code>), not a classic Arma <code>.cfg<\/code> file. Every key is case-sensitive, and IPv6 is not supported. If you want the full breakdown of every field \u2014 network ports, RCON, view distance, persistence \u2014 see our <a href=\"https:\/\/xgamingserver.com\/blog\/arma-reforger-server-configuration-guide\/\">complete server configuration walkthrough<\/a>. For this guide we focus on the scenario side of that file.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The scenarioId format, decoded<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The <code>scenarioId<\/code> always follows the same shape:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{16-HEX-GUID}Missions\/FileName.conf<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Three parts matter here:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>{16-HEX-GUID}<\/strong> \u2014 a 16-character hexadecimal GUID wrapped in curly braces. This identifies the <em>owning resource<\/em>: either the vanilla game or a specific mod that the scenario belongs to. The braces are part of the string and must stay.<\/li>\n<li><strong>Missions\/<\/strong> \u2014 the folder path inside that resource where mission files live.<\/li>\n<li><strong>FileName.conf<\/strong> \u2014 the actual scenario definition file, for example <code>23_Campaign.conf<\/code> for Conflict on Everon.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">Put together, the default Conflict on Everon scenario reads as <code>{ECC61978EDCC2B5A}Missions\/23_Campaign.conf<\/code>. Copy it exactly \u2014 a single wrong character (a missing brace, a lowercase letter, the wrong file name) means the server fails to load the scenario and either falls back or refuses to start.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Where scenarioId goes in the config<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The field sits inside the <code>game<\/code> block. Here is a realistic, minimal config skeleton with the scenario set to Conflict on Everon \u2014 this is the exact nested shape Reforger expects:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n  \"bindAddress\": \"\",\n  \"bindPort\": 2001,\n  \"publicAddress\": \"\",\n  \"publicPort\": 2001,\n  \"a2s\": {\n    \"address\": \"0.0.0.0\",\n    \"port\": 17777\n  },\n  \"rcon\": {\n    \"address\": \"127.0.0.1\",\n    \"port\": 19999,\n    \"password\": \"ChangeMe123\",\n    \"permission\": \"admin\",\n    \"maxClients\": 16,\n    \"blacklist\": [],\n    \"whitelist\": []\n  },\n  \"game\": {\n    \"name\": \"My Reforger Server\",\n    \"password\": \"\",\n    \"passwordAdmin\": \"SuperSecretAdminPass\",\n    \"admins\": [],\n    \"scenarioId\": \"{ECC61978EDCC2B5A}Missions\/23_Campaign.conf\",\n    \"maxPlayers\": 64,\n    \"visible\": true,\n    \"crossPlatform\": false,\n    \"supportedPlatforms\": [\"PLATFORM_PC\"],\n    \"gameProperties\": {\n      \"serverMaxViewDistance\": 1600,\n      \"serverMinGrassDistance\": 0,\n      \"networkViewDistance\": 1500,\n      \"fastValidation\": true,\n      \"battlEye\": true\n    },\n    \"mods\": []\n  },\n  \"operating\": {\n    \"lobbyPlayerSynchronise\": true,\n    \"playerSaveTime\": 120,\n    \"aiLimit\": -1,\n    \"slotReservationTimeout\": 60,\n    \"joinQueue\": { \"maxSize\": 0 }\n  }\n}<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Note the network defaults you&#8217;ll need to open in your firewall regardless of scenario: <strong>UDP 2001<\/strong> for the game socket, <strong>UDP 17777<\/strong> for the Steam\/A2S query so the server appears in the browser, and <strong>19999<\/strong> if you use RCON. <code>maxPlayers<\/code> defaults to 64 and can range from 1 to 128. Keep <code>fastValidation<\/code> and <code>battlEye<\/code> set to <code>true<\/code> on any public server \u2014 BattlEye in particular is mandatory if you want console players to join.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Official built-in scenario IDs<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">These GUIDs are pulled from the official Bohemia community wiki for the 1.6 build. There are roughly 31 official scenarios in total across the various maps and modes; the table below covers the canonical ones most admins actually run. Map roster as of 1.6 is Everon, Arland, and Kolguyev (the last added in 1.6).<\/p>\n\n\n\n<figure class=\"wp-block-table is-style-stripes\"><table><thead><tr><th>Scenario<\/th><th>scenarioId<\/th><\/tr><\/thead><tbody>\n<tr><td>Conflict \u2013 Everon<\/td><td><code>{ECC61978EDCC2B5A}Missions\/23_Campaign.conf<\/code><\/td><\/tr>\n<tr><td>Conflict \u2013 Arland<\/td><td><code>{C41618FD18E9D714}Missions\/23_Campaign_Arland.conf<\/code><\/td><\/tr>\n<tr><td>Conflict \u2013 Northern Everon<\/td><td><code>{C700DB41F0C546E1}Missions\/23_Campaign_NorthCentral.conf<\/code><\/td><\/tr>\n<tr><td>Conflict \u2013 Southern Everon<\/td><td><code>{28802845ADA64D52}Missions\/23_Campaign_SWCoast.conf<\/code><\/td><\/tr>\n<tr><td>Game Master \u2013 Everon<\/td><td><code>{59AD59368755F41A}Missions\/21_GM_Eden.conf<\/code><\/td><\/tr>\n<tr><td>Game Master \u2013 Arland<\/td><td><code>{2BBBE828037C6F4B}Missions\/22_GM_Arland.conf<\/code><\/td><\/tr>\n<tr><td>Game Master \u2013 Kolguyev<\/td><td><code>{F45C6C15D31252E6}Missions\/27_GM_Cain.conf<\/code><\/td><\/tr>\n<tr><td>Combat Ops \u2013 Arland<\/td><td><code>{DAA03C6E6099D50F}Missions\/24_CombatOps.conf<\/code><\/td><\/tr>\n<tr><td>Combat Ops \u2013 Everon<\/td><td><code>{DFAC5FABD11F2390}Missions\/26_CombatOpsEveron.conf<\/code><\/td><\/tr>\n<tr><td>Capture &#038; Hold \u2013 Briars<\/td><td><code>{3F2E005F43DBD2F8}Missions\/CAH_Briars_Coast.conf<\/code><\/td><\/tr>\n<tr><td>Tutorial<\/td><td><code>{002AF7323E0129AF}Missions\/Tutorial.conf<\/code><\/td><\/tr>\n<\/tbody><\/table><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">To switch your server&#8217;s scenario, you literally just swap the string. Want a Game Master sandbox on Kolguyev instead of Conflict on Everon? Change one line:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\"scenarioId\": \"{F45C6C15D31252E6}Missions\/27_GM_Cain.conf\",<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Save the config and restart the server. That&#8217;s the entire process for any of the official scenarios.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Printing every loadable scenario with -listScenarios<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Memorizing GUIDs is impractical, and modded scenarios won&#8217;t be in any table \u2014 so Reforger ships a launch parameter that prints every scenario the server can actually load, including ones from mods you&#8217;ve installed. Add <code>-listScenarios<\/code> to your startup command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>ArmaReforgerServer.exe -config \".\\Configs\\ServerConfig.json\" -listScenarios\n\n.\/ArmaReforgerServer -config \/path\/to\/config.json -listScenarios<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">On startup the server prints all loadable scenario IDs to the console and log. This is the single most reliable way to discover the exact <code>{GUID}Missions\/....conf<\/code> string for a mod you&#8217;ve added, because the GUID belongs to the mod&#8217;s resource, not the base game. Run it once, copy the ID you want out of the output, paste it into <code>scenarioId<\/code>, then remove <code>-listScenarios<\/code> for normal operation.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">A few other launch parameters pair well with scenario testing: <code>-maxFPS<\/code> (cap it around 60\u2013120 so the server doesn&#8217;t pin a CPU core running at thousands of FPS), <code>-logStats<\/code> (periodically logs server FPS and performance), and <code>-profile<\/code> (sets where logs and crash data are written). If you&#8217;d rather not touch a command line at all, our <a href=\"https:\/\/xgamingserver.com\/docs\/arma-reforger\">Arma Reforger panel documentation<\/a> shows how to set the scenario and these flags from a control panel.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Running a modded (custom) scenario<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">This is where &#8220;custom scenario&#8221; gets interesting. The mechanism is identical to the official scenarios \u2014 you set a <code>scenarioId<\/code> \u2014 but the GUID points at a mod&#8217;s resource instead of the base game, and that mod has to be loaded. Reforger mods come from the in-game <strong>Reforger Workshop<\/strong> (browsable at the official workshop site), <em>not<\/em> the Steam Workshop, and the server auto-downloads any mod listed in your config when it starts.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The two-step pattern:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Add the scenario&#8217;s mod to the <code>mods<\/code> array.<\/strong> Each entry is keyed by <code>modId<\/code> \u2014 a 16-character hexadecimal GUID \u2014 with an optional human-readable <code>name<\/code>, an optional <code>version<\/code> (omit it to always pull the latest), and an optional <code>required<\/code> flag.<\/li>\n<li><strong>Set <code>scenarioId<\/code> to that mod&#8217;s <code>{GUID}Missions\/....conf<\/code> string.<\/strong> Use <code>-listScenarios<\/code> to find the exact path the mod exposes.<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\">A worked example, adding a mission\/scenario mod and pointing the server at it:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\"scenarioId\": \"{591AF5BDA9F7CE8B}Missions\/CaptureAndHold.conf\",\n\"mods\": [\n  {\n    \"modId\": \"591AF5BDA9F7CE8B\",\n    \"name\": \"Capture & Hold\",\n    \"version\": \"1.0.3\",\n    \"required\": true\n  }\n]<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">(The GUID above is illustrative \u2014 always pull the real one from <code>-listScenarios<\/code> or the mod&#8217;s Workshop page URL, which contains the 16-char hex GUID. It also appears in the mod&#8217;s <code>ServerData.json<\/code>.)<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Dependencies and load order<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Modded scenarios usually depend on other mods, and those dependencies have dependencies of their own. All of them must be present in the <code>mods<\/code> array, and <strong>load order matters<\/strong>: frameworks and dependencies load first, content and add-ons after. For example, an ACE core mod must load before ACE extensions, and a base overhaul like Overthrow loads before its faction or map packs. Get the order wrong and the scenario may fail to initialize or behave unpredictably. Many host control panels and community tools auto-resolve the GUID plus its dependency tree for you, which removes most of the manual guesswork.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">The console-compatibility trap<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">If your server is cross-platform, the mods behind your custom scenario directly affect who can join. Since Update 1.4 (May 2025), PS5 players <em>can<\/em> join modded servers \u2014 but only mods that ship data and assets only. Mods containing script code are blocked on PSN by Sony policy, so a heavily scripted scenario or framework will silently exclude PlayStation players even if <code>PLATFORM_PSN<\/code> is in your <code>supportedPlatforms<\/code>. Xbox follows similar data-versus-script restrictions in spirit, with console compatibility declared per mod. If reaching console players matters, lean toward data-only scenarios. The full crossplay setup, including the <code>battlEye: true<\/code> requirement, is covered in our <a href=\"https:\/\/xgamingserver.com\/blog\/how-to-make-arma-reforger-server-cross-platform\/\">cross-platform server guide<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Game Master and the Workbench World Editor<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Setting an existing scenario is one thing; <em>creating<\/em> your own is where two distinct tools come in, and people often confuse them.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Game Master \u2014 live, in-game authoring<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Game Master (the &#8220;Eden&#8221; \/ Zeus-style mode) is the runtime tool. An admin in Game Master can control the world in real time: spawn AI, place objects and vehicles, trigger events, and run dynamic operations on the fly while players are connected. It&#8217;s the fastest way to improvise a custom session without building anything offline \u2014 load a Game Master scenario ID (like <code>{59AD59368755F41A}Missions\/21_GM_Eden.conf<\/code>), join as admin, and start composing. Game Master is also how you perform a manual, named save of a hosted session that you can reload later.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Workbench World Editor \u2014 offline scenario building<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">The Workbench World Editor is the offline, developer-grade tool (part of the Enfusion engine tools) used to build custom scenarios from scratch \u2014 laying out worlds, placing entities, and defining mission logic. Scenarios authored in Workbench are published to the Reforger Workshop, which assigns them a GUID, and from there any server can reference them through the standard <code>{GUID}Missions\/....conf<\/code> string. So the full custom-content pipeline looks like: build in Workbench \u2192 publish to the Workshop \u2192 add the resulting mod GUID to your server&#8217;s <code>mods<\/code> array \u2192 set <code>scenarioId<\/code> to its scenario path.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">For most server owners, the practical workflow is a blend: use Game Master for live, ad-hoc sessions and quick custom ops, and reserve the World Editor for polished, reusable scenarios you intend to share. If you&#8217;re standing up a brand-new machine to host any of this, our <a href=\"https:\/\/xgamingserver.com\/blog\/how-to-set-up-an-arma-reforger-server-xgamingserver-hosting-guide\/\">step-by-step server setup guide<\/a> covers SteamCMD install and first boot.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Quick reference: install and launch<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Because a custom scenario is useless without a server to run it on, here are the essentials. The dedicated server installs anonymously through SteamCMD \u2014 you do not need to own the game on the host machine \u2014 and there is a genuine native Linux binary, so no Proton or Wine is required.<\/p>\n\n\n\n<figure class=\"wp-block-table is-style-stripes\"><table><thead><tr><th>Item<\/th><th>Value<\/th><\/tr><\/thead><tbody>\n<tr><td>Dedicated server app ID (stable)<\/td><td><code>1874900<\/code><\/td><\/tr>\n<tr><td>Dedicated server app ID (experimental)<\/td><td><code>1890870<\/code><\/td><\/tr>\n<tr><td>Windows binary<\/td><td><code>ArmaReforgerServer.exe<\/code><\/td><\/tr>\n<tr><td>Linux binary<\/td><td><code>.\/ArmaReforgerServer<\/code><\/td><\/tr>\n<tr><td>Game port (UDP)<\/td><td>2001<\/td><\/tr>\n<tr><td>Steam\/A2S query port (UDP)<\/td><td>17777<\/td><\/tr>\n<tr><td>RCON port<\/td><td>19999<\/td><\/tr>\n<\/tbody><\/table><\/figure>\n\n\n\n<pre class=\"wp-block-code\"><code>steamcmd.exe +force_install_dir \"C:\\ArmaReforger\\Server\" +login anonymous +app_update 1874900 validate +quit<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Then launch with your config and the scenario already set inside it:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>ArmaReforgerServer.exe -config \".\\Configs\\ServerConfig.json\" -maxFPS 60 -profile \".\\profile\"<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">If you&#8217;d rather skip the SteamCMD and firewall work entirely, our <a href=\"https:\/\/xgamingserver.com\/arma-reforger-server-hosting\">managed Arma Reforger hosting<\/a> ships with one-click scenario switching, automatic mod resolution, and full crossplay support \u2014 you just paste the GUID or pick from a list.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Frequently asked questions<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">What is the scenarioId for Conflict Everon in Arma Reforger?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Conflict on Everon \u2014 the flagship large-scale Conflict mode \u2014 uses <code>{ECC61978EDCC2B5A}Missions\/23_Campaign.conf<\/code>. Paste it into the <code>scenarioId<\/code> field inside the <code>game<\/code> block of your JSON config exactly as shown, including the curly braces. Conflict on Arland is a different GUID, <code>{C41618FD18E9D714}Missions\/23_Campaign_Arland.conf<\/code>, and there are separate Northern and Southern Everon variants too.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">How do I find the GUID for a modded scenario?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">The most reliable method is to add the mod to your <code>mods<\/code> array, then start the server with the <code>-listScenarios<\/code> launch parameter. The server prints every loadable scenario ID \u2014 including the mod&#8217;s \u2014 to the console and log, and you copy the exact <code>{GUID}Missions\/....conf<\/code> string from there. You can also read the 16-character hex GUID directly from the mod&#8217;s Reforger Workshop page URL, or from its <code>ServerData.json<\/code> file.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Can I run a custom scenario with mods on a console-friendly server?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Partly. Since Update 1.4, PS5 players can join modded servers, but only if the mods are data-only \u2014 any mod containing script code is blocked on PlayStation by Sony policy and will silently exclude PS5 players even when <code>PLATFORM_PSN<\/code> is listed. Xbox applies similar data-versus-script restrictions, declared per mod. BattlEye (<code>battlEye: true<\/code>, the default) must stay enabled for console crossplay at all. If your custom scenario relies on heavily scripted frameworks, expect a PC-and-maybe-Xbox audience rather than full crossplay.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">What&#8217;s the difference between Game Master and the World Editor?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Game Master is the live, in-game mode where an admin spawns AI, objects, and events in real time during an active session \u2014 great for improvised custom ops and the way you perform manual saves. The Workbench World Editor is the offline Enfusion tool for building polished, reusable scenarios from scratch, which you then publish to the Workshop to receive a GUID. Use Game Master for on-the-fly sessions; use the World Editor for shareable custom content.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Why won&#8217;t my server load the scenario I set?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Almost always it&#8217;s the string. The <code>scenarioId<\/code> is case-sensitive and must include the curly braces, the exact 16-character GUID, the <code>Missions\/<\/code> path, and the precise <code>.conf<\/code> file name. For modded scenarios, the owning mod must also be present in the <code>mods<\/code> array with its dependencies in the correct load order \u2014 frameworks first, content after. Run <code>-listScenarios<\/code> to confirm the exact ID the server can actually see, and check your profile log for load errors.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Can I play a custom scenario solo or offline?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Yes. You can host a local server with any scenario ID and play in it yourself, including Game Master (load <code>{59AD59368755F41A}Missions\/21_GM_Eden.conf<\/code>) for a personal sandbox, or Combat Ops for randomized solo missions. The 1.6 update also added a proper offline single-player Campaign (Operation Omega on Kolguyev). For a fuller breakdown of playing alone, see our <a href=\"https:\/\/xgamingserver.com\/blog\/getting-started-with-arma-reforger-a-guide-for-solo-mode\/\">solo mode getting-started guide<\/a>.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Once you&#8217;re comfortable swapping scenario IDs, the natural next step is layering in a focused mod stack. Keep it deliberate \u2014 one content pack, one realism framework, a scenario tool, and a couple of QoL mods generally beats a sprawling list, and it keeps console compatibility predictable.<\/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>Loading a custom scenario on an Arma Reforger server is one of those tasks that looks intimidating until you understand a single line of text: the scenarioId. Whether you want to switch from Conflict on Everon to a Game Master sandbox, run a Combat Ops co-op mission, or boot a fully modded campaign, every one [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":20261,"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":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[49],"tags":[],"class_list":["post-20208","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>Creating a Custom Scenario in Arma Reforger: A Guide. - XGamingServer<\/title>\n<meta name=\"description\" content=\"Arma Reforger offers a robust Game Master mode, allowing players to create custom scenarios. This guide will describe such a scenario.\" \/>\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-create-a-custom-scenario-in-arma-reforger-a-guide\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Creating a Custom Scenario in Arma Reforger: A Guide.\" \/>\n<meta property=\"og:description\" content=\"Arma Reforger offers a robust Game Master mode, allowing players to create custom scenarios. This guide will describe such a scenario.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/xgamingserver.com\/blog\/how-to-create-a-custom-scenario-in-arma-reforger-a-guide\/\" \/>\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=\"2024-05-24T10:52:11+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-06-15T19:24:17+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2024\/05\/custom-scenarios.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"1080\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Hectar Carson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@xgamingserver\" \/>\n<meta name=\"twitter:site\" content=\"@xgamingserver\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Hectar Carson\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 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-create-a-custom-scenario-in-arma-reforger-a-guide\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-create-a-custom-scenario-in-arma-reforger-a-guide\/\"},\"author\":{\"name\":\"Hectar Carson\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/561042c617869348e75abfe16a269f8d\"},\"headline\":\"Creating a Custom Scenario in Arma Reforger: A Guide.\",\"datePublished\":\"2024-05-24T10:52:11+00:00\",\"dateModified\":\"2026-06-15T19:24:17+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-create-a-custom-scenario-in-arma-reforger-a-guide\/\"},\"wordCount\":2133,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-create-a-custom-scenario-in-arma-reforger-a-guide\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2024\/05\/custom-scenarios.png\",\"articleSection\":[\"Arma Reforger\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/xgamingserver.com\/blog\/how-to-create-a-custom-scenario-in-arma-reforger-a-guide\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-create-a-custom-scenario-in-arma-reforger-a-guide\/\",\"url\":\"https:\/\/xgamingserver.com\/blog\/how-to-create-a-custom-scenario-in-arma-reforger-a-guide\/\",\"name\":\"Creating a Custom Scenario in Arma Reforger: A Guide. - XGamingServer\",\"isPartOf\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-create-a-custom-scenario-in-arma-reforger-a-guide\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-create-a-custom-scenario-in-arma-reforger-a-guide\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2024\/05\/custom-scenarios.png\",\"datePublished\":\"2024-05-24T10:52:11+00:00\",\"dateModified\":\"2026-06-15T19:24:17+00:00\",\"description\":\"Arma Reforger offers a robust Game Master mode, allowing players to create custom scenarios. This guide will describe such a scenario.\",\"breadcrumb\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-create-a-custom-scenario-in-arma-reforger-a-guide\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/xgamingserver.com\/blog\/how-to-create-a-custom-scenario-in-arma-reforger-a-guide\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-create-a-custom-scenario-in-arma-reforger-a-guide\/#primaryimage\",\"url\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2024\/05\/custom-scenarios.png\",\"contentUrl\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2024\/05\/custom-scenarios.png\",\"width\":1920,\"height\":1080},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-create-a-custom-scenario-in-arma-reforger-a-guide\/#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\":\"Creating a Custom Scenario in Arma Reforger: A Guide.\"}]},{\"@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\/561042c617869348e75abfe16a269f8d\",\"name\":\"Hectar Carson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/1cbcd42dac6c5f21cb52dd64f03fd442250a15f7bb1ade04e23002eb5b384de5?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/1cbcd42dac6c5f21cb52dd64f03fd442250a15f7bb1ade04e23002eb5b384de5?s=96&d=mm&r=g\",\"caption\":\"Hectar Carson\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Creating a Custom Scenario in Arma Reforger: A Guide. - XGamingServer","description":"Arma Reforger offers a robust Game Master mode, allowing players to create custom scenarios. This guide will describe such a scenario.","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-create-a-custom-scenario-in-arma-reforger-a-guide\/","og_locale":"en_US","og_type":"article","og_title":"Creating a Custom Scenario in Arma Reforger: A Guide.","og_description":"Arma Reforger offers a robust Game Master mode, allowing players to create custom scenarios. This guide will describe such a scenario.","og_url":"https:\/\/xgamingserver.com\/blog\/how-to-create-a-custom-scenario-in-arma-reforger-a-guide\/","og_site_name":"XGamingServer","article_publisher":"https:\/\/web.facebook.com\/xgamingserver69\/","article_published_time":"2024-05-24T10:52:11+00:00","article_modified_time":"2026-06-15T19:24:17+00:00","og_image":[{"width":1920,"height":1080,"url":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2024\/05\/custom-scenarios.png","type":"image\/png"}],"author":"Hectar Carson","twitter_card":"summary_large_image","twitter_creator":"@xgamingserver","twitter_site":"@xgamingserver","twitter_misc":{"Written by":"Hectar Carson","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/xgamingserver.com\/blog\/how-to-create-a-custom-scenario-in-arma-reforger-a-guide\/#article","isPartOf":{"@id":"https:\/\/xgamingserver.com\/blog\/how-to-create-a-custom-scenario-in-arma-reforger-a-guide\/"},"author":{"name":"Hectar Carson","@id":"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/561042c617869348e75abfe16a269f8d"},"headline":"Creating a Custom Scenario in Arma Reforger: A Guide.","datePublished":"2024-05-24T10:52:11+00:00","dateModified":"2026-06-15T19:24:17+00:00","mainEntityOfPage":{"@id":"https:\/\/xgamingserver.com\/blog\/how-to-create-a-custom-scenario-in-arma-reforger-a-guide\/"},"wordCount":2133,"commentCount":0,"publisher":{"@id":"https:\/\/xgamingserver.com\/blog\/#organization"},"image":{"@id":"https:\/\/xgamingserver.com\/blog\/how-to-create-a-custom-scenario-in-arma-reforger-a-guide\/#primaryimage"},"thumbnailUrl":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2024\/05\/custom-scenarios.png","articleSection":["Arma Reforger"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/xgamingserver.com\/blog\/how-to-create-a-custom-scenario-in-arma-reforger-a-guide\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/xgamingserver.com\/blog\/how-to-create-a-custom-scenario-in-arma-reforger-a-guide\/","url":"https:\/\/xgamingserver.com\/blog\/how-to-create-a-custom-scenario-in-arma-reforger-a-guide\/","name":"Creating a Custom Scenario in Arma Reforger: A Guide. - XGamingServer","isPartOf":{"@id":"https:\/\/xgamingserver.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/xgamingserver.com\/blog\/how-to-create-a-custom-scenario-in-arma-reforger-a-guide\/#primaryimage"},"image":{"@id":"https:\/\/xgamingserver.com\/blog\/how-to-create-a-custom-scenario-in-arma-reforger-a-guide\/#primaryimage"},"thumbnailUrl":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2024\/05\/custom-scenarios.png","datePublished":"2024-05-24T10:52:11+00:00","dateModified":"2026-06-15T19:24:17+00:00","description":"Arma Reforger offers a robust Game Master mode, allowing players to create custom scenarios. This guide will describe such a scenario.","breadcrumb":{"@id":"https:\/\/xgamingserver.com\/blog\/how-to-create-a-custom-scenario-in-arma-reforger-a-guide\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/xgamingserver.com\/blog\/how-to-create-a-custom-scenario-in-arma-reforger-a-guide\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/xgamingserver.com\/blog\/how-to-create-a-custom-scenario-in-arma-reforger-a-guide\/#primaryimage","url":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2024\/05\/custom-scenarios.png","contentUrl":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2024\/05\/custom-scenarios.png","width":1920,"height":1080},{"@type":"BreadcrumbList","@id":"https:\/\/xgamingserver.com\/blog\/how-to-create-a-custom-scenario-in-arma-reforger-a-guide\/#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":"Creating a Custom Scenario in Arma Reforger: A Guide."}]},{"@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\/561042c617869348e75abfe16a269f8d","name":"Hectar Carson","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/1cbcd42dac6c5f21cb52dd64f03fd442250a15f7bb1ade04e23002eb5b384de5?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/1cbcd42dac6c5f21cb52dd64f03fd442250a15f7bb1ade04e23002eb5b384de5?s=96&d=mm&r=g","caption":"Hectar Carson"}}]}},"jetpack_publicize_connections":[],"jetpack_featured_media_url":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2024\/05\/custom-scenarios.png","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/posts\/20208","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\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/comments?post=20208"}],"version-history":[{"count":4,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/posts\/20208\/revisions"}],"predecessor-version":[{"id":22745,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/posts\/20208\/revisions\/22745"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/media\/20261"}],"wp:attachment":[{"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/media?parent=20208"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/categories?post=20208"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/tags?post=20208"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}