-
Notifications
You must be signed in to change notification settings - Fork 0
Upgrades And Research Atlas
Canonical map for the Warfare upgrade/research system. This page is source-backed from the Chernarus source mission and should be kept in sync with Server Authority Migration Map, Economy Authority First Cut, Feature Status Register, and AI Commander Autonomy Audit.
Upgrades are not a cosmetic tech tree. They gate factory tiers, gear templates, EASA, artillery behavior, supply rate, respawn range, support actions, airlift, aircraft missiles, paratroopers, fast travel, Coin ammo, town defender composition and several WASP-specific additions. A wrong assumption here can silently unlock equipment, skip resources, break AI commander progression, or make branch-only features appear more complete than they are.
The critical implementation truth is split:
- the server owns the replicated upgrade state and completion timer;
- the live player UI owns commander gating, affordability checks, dependency checks and immediate resource deduction;
- the public variable entrypoint does not currently revalidate a player upgrade request before starting the server worker;
- AI commander upgrades have a separate server-side affordability path, but the broader AI commander scheduler/owner path is still incomplete.
| Area | Files |
|---|---|
| Constants | Common/Init/Init_CommonConstants.sqf:36-58 |
| Side state init | Server/Init/Init_Server.sqf:344-369 |
| Side state getter | Common/Functions/Common_GetSideUpgrades.sqf:7-11 |
| Player menu class | Rsc/Dialogs.hpp:3-142 |
| Stale legacy menu class | Rsc/Dialogs.hpp:2424-2428 |
| Main menu route |
Client/GUI/GUI_Menu.sqf:21-26, Client/GUI/GUI_Menu.sqf:161-166
|
| Live player UI | Client/GUI/GUI_UpgradeMenu.sqf:1-215 |
| Server request PVF | Server/PVFunctions/RequestUpgrade.sqf:1-5 |
| Server worker | Server/Functions/Server_ProcessUpgrade.sqf:10-89 |
| Client upgrade notifications |
Client/PVFunctions/HandleSpecial.sqf, Client/Functions/Client_FNC_Special.sqf:111-124, Client/Functions/Client_FNC_Special.sqf:173-185
|
| Client timer sync |
Client/GUI/GUI_UpgradeMenu.sqf:167-172, Server/Functions/Server_HandleSpecial.sqf:67-74
|
| AI commander worker | Server/Functions/Server_AI_Com_Upgrade.sqf:7-53 |
| Config arrays |
Common/Config/Core_Upgrades/Upgrades_*.sqf, Common/Config/Core_Upgrades/Labels_Upgrades.sqf, Common/Config/Core_Upgrades/Check_Upgrades.sqf
|
Common/Init/Init_CommonConstants.sqf:36-58 defines the numeric indexes used by every side config and every consumer:
| ID | Constant | Meaning |
|---|---|---|
| 0 | WFBE_UP_BARRACKS |
Barracks / infantry tier |
| 1 | WFBE_UP_LIGHT |
Light factory tier |
| 2 | WFBE_UP_HEAVY |
Heavy factory tier |
| 3 | WFBE_UP_AIR |
Aircraft factory tier |
| 4 | WFBE_UP_PARATROOPERS |
Paratrooper support |
| 5 | WFBE_UP_UAV |
UAV |
| 6 | WFBE_UP_SUPPLYRATE |
Town/supply income rate |
| 7 | WFBE_UP_RESPAWNRANGE |
Ambulance/MASH respawn range |
| 8 | WFBE_UP_AIRLIFT |
Airlift |
| 9 | WFBE_UP_FLARESCM |
Custom flares/countermeasures |
| 10 | WFBE_UP_ARTYTIMEOUT |
Artillery timeout |
| 11 | WFBE_UP_ICBM |
ICBM |
| 12 | WFBE_UP_FASTTRAVEL |
Fast travel |
| 13 | WFBE_UP_GEAR |
Gear tier |
| 14 | WFBE_UP_AMMOCOIN |
Coin ammo category |
| 15 | WFBE_UP_EASA |
EASA loadout/service system |
| 16 | WFBE_UP_SUPPLYPARADROP |
Supply paradrop |
| 17 | WFBE_UP_ARTYAMMO |
Artillery ammunition unlock |
| 18 | WFBE_UP_IRSMOKE |
IR smoke |
| 19 | WFBE_UP_AIRAAM |
Aircraft AA missiles |
| 20 | WFBE_UP_AAR |
Anti-air radar |
| 21 | WFBE_UP_UNITCOST |
Unit cost modifier/filter hook |
Treat these as array indexes, not namespaced objects. Adding, removing or reordering one upgrade means auditing every WFBE_UP_* consumer.
The server initializes each side logic with:
-
wfbe_upgrades: the replicated array of current levels; -
wfbe_upgrading: a replicated boolean for "one upgrade currently running"; -
wfbe_upgrading_id: a replicated upgrade ID, added so clients can display the running upgrade name.
Source: Server/Init/Init_Server.sqf:344-369.
When debug upgrades are enabled, the initial upgrade state is copied from the configured max-level array, then Artillery Ammunition is forced back to 0 so its one-level unlock flow remains testable (Server/Init/Init_Server.sqf:348-353). In normal mode, the upgrade array is built as one zero per configured level entry (Server/Init/Init_Server.sqf:344-347).
Common_GetSideUpgrades.sqf returns the side logic variable for west/east/resistance and returns objNull for unknown sides. Because most consumers immediately index the returned value, invalid side data can cascade into script errors rather than a graceful rejection.
Each Common/Config/Core_Upgrades/Upgrades_*.sqf side file populates:
WFBE_C_UPGRADES_<side>_ENABLEDWFBE_C_UPGRADES_<side>_COSTSWFBE_C_UPGRADES_<side>_LEVELSWFBE_C_UPGRADES_<side>_LINKSWFBE_C_UPGRADES_<side>_TIMESWFBE_C_UPGRADES_<side>_AI_ORDER
Labels_Upgrades.sqf builds client-side display labels, descriptions and images. The live client init imports it with ExecVM "Common\Config\Core_Upgrades\Labels_Upgrades.sqf" (Client/Init/Init_Client.sqf:324-325).
Check_Upgrades.sqf is a helper that appends missing enabled upgrade levels into the AI commander order. It does not validate player requests and it does not normalize the live config arrays for length or dependency consistency.
The constants define 22 upgrade indexes through WFBE_UP_UNITCOST = 21, while the representative Upgrades_USMC.sqf arrays visible in Chernarus are not perfectly uniform: ENABLED and COSTS include Anti Air Radar, but the shown LEVELS, LINKS and TIMES arrays stop before WFBE_UP_AAR in that file (Upgrades_USMC.sqf:5-76, Upgrades_USMC.sqf:78-132). Other side configs may differ. Do not publish a new upgrade, price, level, or unit-cost feature until every Upgrades_*.sqf side file is checked for array length, index alignment and generated-mission propagation.
The main menu enables the upgrade button whenever the player is in command center range (Client/GUI/GUI_Menu.sqf:21-26) and opens WFBE_UpgradeMenu on menu action 7 (Client/GUI/GUI_Menu.sqf:161-166). The WFBE_UpgradeMenu class is the live dialog and executes Client\GUI\GUI_UpgradeMenu.sqf on load (Rsc/Dialogs.hpp:3-7).
Inside GUI_UpgradeMenu.sqf:
- The client reads upgrade config arrays and the replicated side upgrades (
lines 8-21). - The purchase button is disabled unless the local player's group is
commanderTeam(lines 39-41). - The UI shows current level, cost, supply, time and dependencies (
lines 85-126). - On purchase, the client checks no upgrade is running, the selected upgrade has levels remaining, funds/supply are enough, and dependency links are met (
lines 129-157). - The client immediately deducts funds and side supply (
lines 158-159). - The client sends
["RequestUpgrade", [WFBE_Client_SideJoined, _id, _upgrade_current, true]]to the server (line 161). - Non-server clients spawn a local timer and later send
RequestSpecial ["upgrade-sync", ...](lines 167-172) soServer_ProcessUpgrade.sqfcan release before the full server sleep if the sync flag arrives.
This is functional for normal honest commanders, but it is not server-authoritative.
RequestUpgrade.sqf is currently only:
_this Spawn WFBE_SE_FNC_ProcessUpgrade;Source: Server/PVFunctions/RequestUpgrade.sqf:1-5.
Server_ProcessUpgrade.sqf trusts the provided side, upgrade ID, target level and player/AI flag. It reads the upgrade time from WFBE_C_UPGRADES_<side>_TIMES, marks the side logic as upgrading, waits for client sync or the configured time, increments the side upgrade level, clears running state, refreshes existing artillery when Artillery Ammunition completes, then broadcasts upgrade-complete (Server_ProcessUpgrade.sqf:10-89).
What it does not do for player requests:
- prove the requester is the current commander;
- prove the request side matches the requester;
- recompute current level, max level, dependencies, funds or supply;
- debit resources server-side;
- reject invalid upgrade IDs or impossible target levels before indexing config arrays;
- reject duplicate concurrent requests except by trusting client-side
wfbe_upgradingchecks.
Server_AI_Com_Upgrade.sqf is more authoritative than the player PV path. It reads WFBE_C_UPGRADES_<side>_AI_ORDER, finds the first desired upgrade level not yet met, checks AI commander funds and side supply, calls WFBE_SE_FNC_ProcessUpgrade with _upgrade_isplayer = false, sets running state, and deducts resources (Server_AI_Com_Upgrade.sqf:7-53).
This means the upgrade worker is real, but the broader AI commander autonomy still needs care. See AI Commander Autonomy Audit: the repo has AI commander upgrade code and state, but the current docs should not imply a complete autonomous commander loop until the scheduler/owner path is proven.
High-impact consumers found in the source mission include:
- factory and buy menus:
Client/GUI/GUI_Menu_BuyUnits.sqf,Client/Functions/Client_UIFillListBuyUnits.sqf,Server/Functions/Server_BuyUnit.sqf; - gear templates and buy gear:
Client/Functions/Client_UI_Gear_FillList.sqf,Client/Functions/Client_UI_Gear_FillTemplates.sqf,Client/Functions/Client_UI_Gear_SaveTemplateProfile.sqf; - EASA/service:
Client/GUI/GUI_Menu_EASA.sqf,Client/GUI/GUI_Menu_Service.sqf; - respawn range:
Client/Functions/Client_GetRespawnAvailable.sqf,Server/AI/AI_AdvancedRespawn.sqf,Server/AI/AI_SquadRespawn.sqf; - tactical/supports:
Client/GUI/GUI_Menu_Tactical.sqf,Server/Support/Support_Paratroopers.sqf; - airlift/countermeasures:
Common/Init/Init_Unit.sqf,Common/Functions/Common_RearmVehicle.sqf,Common/Functions/Common_RearmVehicleOA.sqf; - artillery:
Client/Functions/Client_RequestFireMission.sqf,Common/Functions/Common_EquipArtillery.sqf,Common/Functions/Common_GetArtilleryAmmoOptions.sqf,Server/Functions/Server_ProcessUpgrade.sqf; - supply systems:
Server/FSM/server_town.sqf,Client/Module/supplyMission/supplyMissionStart.sqf; - UI/HUD:
Client/GUI/GUI_Menu_Command.sqf,Client/Client_UpdateRHUD.sqf; - towns and AI composition:
Server/Functions/Server_GetTownGroups.sqf; - PR #1/supply helicopter: upgrade gating and supply economy should be checked against this page before merging branch behavior.
Do not confuse the live WFBE_UpgradeMenu with RscMenu_Upgrade.
Rsc/Dialogs.hpp:2424-2428 still defines class RscMenu_Upgrade with onLoad = "_this ExecVM ""Client\GUI\GUI_Menu_Upgrade.sqf""", but the referenced script is absent. The live menu route creates WFBE_UpgradeMenu, not RscMenu_Upgrade. This is stale dialog archaeology, not the active upgrade system.
Related page: Abandoned Feature Revival Review.
| Status | Finding | Evidence | Development guidance |
|---|---|---|---|
| Patch-ready | Player upgrade request is client-authoritative for affordability, dependencies and commander permission. |
GUI_UpgradeMenu.sqf:129-161; RequestUpgrade.sqf:1-5; Server_ProcessUpgrade.sqf:12-18
|
Move validation/debit into a server authority wrapper before adding new upgrade mechanics or balancing expensive upgrades. |
| Patch-ready | Invalid side/upgrade/level payloads can index config arrays directly. |
Server_ProcessUpgrade.sqf:12-18; Common_GetSideUpgrades.sqf:7-11
|
Add side, ID, current-level and max-level guards before reading TIMES/COSTS/LINKS. |
| Research-needed | Config arrays may be length-misaligned around AAR/unit-cost. |
Init_CommonConstants.sqf:36-58; representative Upgrades_USMC.sqf excerpt |
Build a side-config validator before changing upgrade arrays or propagating generated missions. |
| Partial | AI commander upgrade worker exists, but full autonomous scheduling remains unproven. |
Server_AI_Com_Upgrade.sqf:7-53; AI Commander Autonomy Audit
|
Treat AI upgrade flow as a useful worker, not as proof of a complete AI commander. |
| Abandoned/stale |
RscMenu_Upgrade references missing GUI_Menu_Upgrade.sqf. |
Rsc/Dialogs.hpp:2424-2428 |
Keep it documented as stale unless intentionally deleting or reviving it. |
A safe future patch should add a server-side request wrapper before WFBE_SE_FNC_ProcessUpgrade:
- Resolve requester identity from the PVF context or include an authenticated player/team argument following the repo's existing PV patterns.
- Validate side is one of west/east/resistance and matches the requester's joined side.
- Validate requester is the current commander/team permitted to buy upgrades.
- Read current upgrades from side logic on the server.
- Validate upgrade ID is in range and enabled for that side.
- Validate requested level equals current level and is below configured max.
- Recompute cost, supply cost and dependencies from server config.
- Reject if another upgrade is running.
- Debit commander/client funds and side supply on the server.
- Start
WFBE_SE_FNC_ProcessUpgrade. - Send explicit success/failure feedback so the client can avoid irreversible local-only debits.
Until this exists, the client UI should be treated as an affordance layer, not as the authority boundary.
Home | Agent Guide | Current live state | Release 1.2.2 (B91) | Quickstart | Progress | Lifecycle wait-chain | Join/disconnect | Parameters/build | Assets/config | SQF atlas | PV index | Modules | Support/specials | Commander/HQ | Commander vote/reassign | Construction/CoIn | Construction cleanup | WDDM compositions | Factory/purchase | Upgrades/research | Towns/camps/capture | Victory/endgame | Markers/cleanup | Server runtime | AI runtime/HC | AI commander audit | HC delegation | Town AI safety | Commander reassignment | Resistance supply | Player UI workflow | UI atlas | Respawn/death | Gear template filter | Vehicle cargo loop | Service guards | UI IDD repair | UI design inspiration | WASP overlay | Feature status | Source propagation | release readiness | Tooling readiness | Integration trust | AntiStack DB | Owner decisions | Shelved registry | Abandoned feature revival | Hardening roadmap | PVF dispatch | Server authority | ICBM authority | Attack-wave authority | Telemetry families | AICOM V2 cutover | Consumer port map | Testing workflow | Server ops | Web tools | Ecosystem repos | Arma 2 OA refs | A2 traps | OA compatibility audit | Coverage ledger | Navigation inventory | Pruning ledger | Knowledge roadmap | Agent context | Collab protocol | Worklog | Audit archive 2026-07 | Briefing reference | Utes invasion concept
- Shelved AICOM concepts - revivable someday ideas (owner-shelved 2026-07-03)
Docs rule: source-backed claims only; Arma 2 OA scripting docs only; gameplay edits start in Missions/[55-2hc]warfarev2_073v48co.chernarus.
- Getting started
- Status and coordination
- Agent context
- Agent collaboration protocol
- Agent worklog
- Agent worklog archive
- Progress dashboard
- PR cleanup and integration lab
- Shelved PR #169: gear price double-count
- Shelved PR #194: Chernarus no-trees
- Coordination board
- Codebase coverage ledger
- Bottleneck removal queue
- Current source status
- Wiki mirror reconciliation
- Navigation inventory
- Registers
- Agent orchestration
- Architecture
- Architecture overview
- Mission entrypoints and lifecycle
- Lifecycle wait chain
- Player join/disconnect and AntiStack lifecycle
- Mission parameters/localization/build inputs
- Stringtable localization key-family catalog
- Source inventory
- Content structure and maps
- Assets/config/localization/parameters
- Mission start parameters index
- Code and networking
- Gameplay systems
- Core systems index
- Gameplay systems atlas
- Commander/HQ lifecycle atlas
- Economy, towns and supply
- Economy system reference
- Balance asymmetries
- Anti-stack skill-balance mechanic
- Empty-side supply income stagnation
- Towns, camps and capture atlas
- Victory and endgame atlas
- Victory conditions reference
- Territorial victory reference
- Marker cleanup and restoration
- Marker loop engine and registries
- Map marker families content catalog
- Marker subsystem function reference
- Client marker FSM updater map
- Support specials and tactical modules
- SCUD TEL tactical munitions
- Naval HVT objectives (carriers/SCUD)
- SCUD saturation strike mechanic
- Takistan airfield FPV drone design
- Construction and CoIn systems
- Structure damage reduction & friendly-fire
- Construction logic list cleanup
- Flak tower & WDDM anchor compositions
- Resistance supply scaffold
- GUER Insurgents faction overview
- GUER Insurgents branch audit
- GUER insurgent player economy
- GUER Commissar Panel
- GUER air-defense loop (Ka-137/Mi-24)
- Upgrades and research atlas
- Supply mission architecture
- Supply mission authority cleanup
- Current supply helicopters PR1
- Respawn and death-loop lifecycle
- Vehicle theft economy pitch
- GUER tunnel network pitch
- Content, reference and catalogs
- Faction unit/vehicle roster catalog
- Auxiliary/SF/civilian unit catalog
- Gear store loadout route catalog
- Upgrade research (cross-faction)
- Gear store price and upgrade catalog
- Gear store catalog (complete, per faction)
- Defense structures catalog
- Artillery reference per faction
- AI squad team templates catalog
- Town AI lifecycle reference
- Town AI group composition catalog
- Class-skill system reference
- Player skill abilities reference
- Default gear template content catalog
- Chernarus map content reference
- Takistan map content reference
- Takistan features
- Takistan parity reference
- Takistan oilfields objective reference
- IRS IR-smoke countermeasure
- Arty module special munitions
- Zeta cargo sling-load reference
- Spawn primitive function reference
- Kill and score pipeline
- Waypoint helper function reference
- Position and proximity function reference
- Side/team state function reference
- Player AI watchdog and recovery
- AICOM stuck-recovery v2
- LoadoutManager data-model contributor guide
- Discord status bot setup and reference
- GLOBALGAMESTATS extension reference
- New player quickstart (player guide)
- Optional client mods (player guide)
- Earning funds and score (player guide)
- Vehicle service and logistics (player guide)
- Commander's handbook (player guide)
- Tactical support menu
- Paradrop player experience
- Supply missions (player guide)
- In-game briefing & Diary field manual
- Playable maps catalog
- Faction root variables reference
- Faction base structures catalog
- Counter-battery radar system
- Bank, Reserve and Artillery Radar structures
- Map ruleset model and object config
- Countermeasures module reference
- Vehicle countermeasure (flares/spoofing)
- UAV terminal and spotter system
- Artillery firing function reference
- Service Point pricing model
- Medic redeployment truck (forward spawn)
- Side-patrol runtime and convoy mechanics
- Day/night cycle and weather system
- Config lookup helper reference
- CIPHER sort utilities reference
- Modded maps status and content
- BattlEye filter setup and OA taxonomy
- Player squad/group join protocol
- AutoFlip vehicle recovery
- Engine stealth fuel toggle
- Valhalla vehicle climbing-assist
- Missile and ordnance Fired-EH reference
- Vehicle equip and rearm reference
- Array and collection utilities
- Server composition spawner reference
- Upgrade queue server loop
- Map boundaries and off-map enforcement
- Namespace/profile/diagnostic utilities
- Group bool getVariable A2-OA trap
- Vehicle weapon balance init
- View distance auto-throttle
- Camp & respawn-camp getters
- Performance audit writer
- Site clearance (bulldozer)
- Factory queue cancel & refund
- AI commander tunable constants
- Experimental feature-flag constants
- Flag system quick reference
- Mission tunable constants catalog
- Gear parsing & cargo capacity
- Structure dressing function
- Paradrop delivery functions
- ICBM nuke client VFX & radiation
- Server HandleSpecial router
- LocalizeMessage chat router
- Gear buy-menu render & price functions
- Server broadcast & telemetry loops
- Per-unit client init pipeline
- Vehicle marking & texture pipeline
- Defense category & budget
- Legacy AI order primitives
- Commander-team driver
- AICOM command verbs
- AICOM behavior fix taxonomy
- AI commander wildcard deck reference
- AICOM aircraft and airfield system
- Static-defense manning
- End-of-game stats screen
- AI commander execution loop
- Deployable bipod / weapon resting
- Town-economy getters
- Server-init deadspawn & airfield probe
- GUER VBIED detonate action
- Resource income-tick engine
- AI commander treasury accessors
- PVF send-helper contracts
- AICOM logging & AICOMSTAT telemetry
- AICOMSTAT v2 event census
- WASPSCALE v2 telemetry
- WASPSCALE v2-ext coverage audit
- Telemetry families reference
- Group lifecycle & entity reaping
- Batch AI spawner orchestrator
- Client funds/income HUD readout
- Server group GC & cap warning
- Town runtime tuning constants
- Client input/hotkey handler
- WASP base-repair system
- WASP DropRPG launcher/ordnance
- CoIn construction-interface client engine
- Town-capture garrison & airfield rebuild
- Map-control & minimap templates
- Client FPS & state telemetry
- Client service-proximity getters
- Airfield-exclusive roster & unit hints
- Unit-camera spectator system
- Town-garrison patrol/defense worker
- RequestTeamUpdate squad-discipline
- Arma2Warfare GPT assistant
- LoadoutManager build configs & defines
- GLOBALGAMESTATS extension logging
- Discord bot instrumented logging
- Eden/Everon & Taviana map content
- Cruise missile strike asset
- AI / HC
- AI headless and performance
- AI mods and pathfinding reference
- Headless client scaling and topology
- AI runtime/HC loop map
- Headless client init and stat loop
- HC delegation target selection
- Player AI caps and role balance
- Old WarfareBE FPS comparison
- AI commander autonomy audit
- Upstream BE 2073 AICOM delta
- Parent 2.073 divergence audit
- AI commander capture & fun plan
- AI commander B69 improvement roadmap
- AI commander B69 implementation sketches
- AICOM V2 cutover status
- Headless delegation and failover
- Commander reassignment call shape
- GUER Director living-resistance pitch
- Quality and operations
- Foundation perf findings & Tier-3 dead-ends
- Dead/stale code register
- Commander vote/reassignment
- Attack-wave authority
- Server runtime and operations
- Server ops runbook
- JIP enrollment & client data delivery (b74.2 lessons)
- Server gameplay runtime atlas
- PerformanceAuditAnalyzer
- Performance opportunity sweep
- Documentation plan
- Knowledge platform roadmap
- Wiki quality audit
- Wiki pruning and relevance ledger
- Audit findings queue (2026-06-03)
- Deep review findings
- Client UI / server-loop perf findings
- Performance gain simulation
- Self-host testing field notes
- Cleanup and work lanes
- Hardening and authority
- UI / player workflows
- Client UI, HUD and menus
- UI HUD and dialogs
- Player UI workflow map
- Client UI systems atlas
- UI IDD collision repair
- UI control class library reference
- UI theme palette and style macros
- UI design inspiration 2026-07
- Available-actions client gate FSM
- Gear/loadout/EASA atlas
- Gear template profile filter
- Vehicle cargo equip loop bounds
- Factory and purchase systems atlas
- Service menu affordability guards
- WASP overlay
- Class-skill system reference
- Skin selector and class swap
- Earplugs audio toggle
- Mission audio catalog
- HQ radio knowledge-base catalog
- QoL trio player hints
- Player vehicle/travel actions
- Tooling / release / integrations
- Tools and build workflow
- Warfare web tools
- Ecosystem & companion repos
- Zargabad tooling parity
- July 2026 release readiness
- Operator monitor and CPU affinity tools
- Tooling release readiness audit
- Source fix propagation queue
- Agent release readiness ledger
- Release source intake map
- Testing/debugging/release workflow
- Current RPT release gate
- RPT telemetry consumer port map
- External integrations
- Integration trust boundary audit
- AntiStack database extension audit
- Community & Dev
- Community & Dev
- Miksuu upstream wiki import / archive index
- Upstream changelog feature leads
- Developer history and upstream lessons
- Upstream Miksuu commit intel
- Upstream mining ledger
- Archive script mining v2
- Upstream BE 2073 AICOM delta
- Parent 2.073 divergence audit
- PR8 and Drone upstream lesson match
- Development lessons learned
- External research reports
- Audit archive 2026-07
- Briefing reference
- Utes invasion concept
- Miksuu archive: Home
- Miksuu archive: Welcome
- Miksuu archive: Big announcements
- Miksuu archive: Changelog
- Miksuu archive: Development process
- Miksuu archive: Discord bot
- Miksuu archive: Gameplay videos
- Miksuu archive: LoadoutManager
- Miksuu archive: Chernarus script architecture
- Base-game visual catalogs
- Compatibility and references
- HC upstream history and lessons
- Player stats branch audit
- BuyMenu EASA QoL branch audit
- Perf quick wins branch audit
- Commander positions branch audit
- Zargabad branch audit
- Quad AI Commander concept
- Arma 2 OA external reference guide
- Base-game config & image reference
- Arma 2 OA compatibility audit
- Arma 2 OA agent traps reference
- Arma 2 OA command versions
- Wiki source consistency
- External Arma 2 OA reference index