-
Notifications
You must be signed in to change notification settings - Fork 0
Headless Client Init And Stat Loop
Source-verified 2026-06-21 against master 0139a346. Paths relative to Missions/[55-2hc]warfarev2_073v48co.chernarus/ unless noted (other roots: Server/, Common/, Client/, WASP/, Headless/). Arma 2 OA 1.64.
This page documents the boot pipeline of a headless client (HC): how the engine role is detected, what Init_HC.sqf sets up before it announces itself, the post-boot watchers it leaves running, and the HCSTAT telemetry loop. For what the HC does after boot (AI delegation, topology, failover) see the delegation pages in Continue Reading — this page owns only the init/identity layer.
HC identity is resolved once, early in the shared entrypoint, and the HC branch runs Init_HC.sqf at the end of the same file.
| Step | What happens | Source |
|---|---|---|
| Detect role |
isHeadLessClient = Call Compile preprocessFileLineNumbers "Headless\Functions\HC_IsHeadlessClient.sqf"
|
initJIPCompatible.sqf:57 |
| Identity test |
! (hasInterface || isDedicated) — true only on a process that is neither a player nor the dedicated server |
Headless/Functions/HC_IsHeadlessClient.sqf:5 |
| Force verbose logging | HC sets LOG_CONTENT_STATE = "ACTIVATED" (its RPT is its only observable channel) |
initJIPCompatible.sqf:60 |
| Skip server JIP handlers |
onPlayerConnected/onPlayerDisconnected are gated ... && !isHeadLessClient
|
initJIPCompatible.sqf:65 |
| Skip full client init | client init block gated `isHostedServer | |
| Launch HC boot | if (isHeadLessClient) then { execVM "Headless\Init\Init_HC.sqf" }; |
initJIPCompatible.sqf:275-277 |
Because Init_Client.sqf is skipped, two things a normal client would do are not done for the HC, and Init_HC.sqf has to compensate: parking the body in a deadspawn holding area, and player allowDamage false (see the body-protection row below).
Init_HC.sqf is ~147 lines. It compiles the delegation receivers, then performs a side-reseat, a deadspawn park, registers with the server, and launches two long-lived loops.
| Order | Action | Detail | Source |
|---|---|---|---|
| 1 | Compile delegation receivers |
WFBE_CL_FNC_CleanupDelegatedTownAI, WFBE_CL_FNC_DelegateTownAI, WFBE_CL_FNC_DelegateAIStaticDefence, WFBE_CL_FNC_HandlePVF
|
Init_HC.sqf:5-8 |
| 2 | Wait for player object (bounded ~20 s) | `waitUntil { uiSleep 0.5; (!isNull player) | |
| 3 | Wait for player object |
waitUntil {!isNull player} — never run the reseat guard before the unit exists |
Init_HC.sqf:28 |
| 4 | Preseat telemetry | sends ["RequestSpecial",["hc-preseat",[name player, str (side group player)]]] so the engine's raw auto-seat is server-visible before any reseat |
Init_HC.sqf:30 |
| 5 | Reseat to civilian | runs WFBE_HC_FNC_ReseatCivilian (bounded poll) unless already civilian |
Init_HC.sqf:97 |
| 6 | Reseat-result telemetry | sends hc-reseat-result with done/skipped/failed + current side |
Init_HC.sqf:99 |
| 7 | Park the body |
WFBE_HC_FNC_ParkDeadspawn — only fires while civilian |
Init_HC.sqf:101 |
| 8 | Persistent reseat watcher |
[] Spawn {...} 15s loop, re-reseats + re-parks + re-announces on a mission-restart re-grab |
Init_HC.sqf:112-126 |
| 9 | Register with server | ["RequestSpecial",["connected-hc", player]] |
Init_HC.sqf:129 |
| 10 | Launch stat loop | [] ExecVM "Headless\HC_StatLoop.sqf" |
Init_HC.sqf:132 |
| 11 | Launch HC-local group GC | [] ExecVM "Client\Functions\Client_GroupsGC.sqf" |
Init_HC.sqf:146 |
A2 OA auto-seats the -client into a random free playable slot, and an HC reliably lands on a synchronized WEST warfare slot (mission.sqm id=229, sync 255). That makes the HC a phantom WEST player: it inflates BLUFOR team balance + vote quorum and permanently resets the empty-server WEST supply-stagnation timer. forceHeadlessClient=1 is an A3-only attribute and is inert in A2 OA, so the fix is done in script — WFBE_HC_FNC_ReseatCivilian (Init_HC.sqf:35-60, invoked at :97); the rationale is documented in the comment block at Init_HC.sqf:16-27.
WFBE_HC_FNC_ReseatCivilian (Init_HC.sqf:45-70) is a bounded poll: while side group player != civilian and within the deadline, it createGroup civilian (raw, not the WFBE wrapper, so the infra group stays off the per-side group-cap/GC sweep — Init_HC.sqf:52), retries up to 5 times if the ~144 civilian group cap returns grpNull, then [player] joinSilent _g and waits 2s for the membership change to replicate before the connect notify. It returns "done"/"failed". Invariant: each HC must be the sole member (hence leader) of its own fresh group so owner(leader(group)) stays distinct per HC and delegation never collapses onto a single HC (Init_HC.sqf:23-26).
Supporting HC telemetry / runtime-pending (cmdcon31 supersession, 2026-07-01). The synchronized WEST slot id=229 is not a symmetric mirror of EAST's slot: it acts as a re-grab magnet. After the WEST HC (HC1) reseats to civilian, the slot can keep re-grabbing it, so the persistent watcher (below) re-reseats and re-announces
connected-hcrepeatedly. EAST's slot does not magnet, so HC2 stays stable on civilian after one reseat. PR #122 commit722f5d057still provides required HC registry support (groupSide=civilian,register=true, zeroconnect-skip), but the active WEST founding source candidate is now8de3c4a60/b4df22ede, the starved-infantry fallback inAI_Commander_Teams.sqf. Do not claim this fixed until exact-build RPTs show Takistan WESTAICOMGATE|WEST|infFallback,TEAM_FOUNDED,CMDRSTAT, autonomous progress and no SQF errors. See AI Commander Autonomy Audit.
WFBE_HC_FNC_ParkDeadspawn (Init_HC.sqf:76-92) guards on side group player == civilian (:77), sets player allowDamage false + player setCaptive true (unkillable + non-hostile — this replaces the Init_Client.sqf damage-off the HC never ran, Init_HC.sqf:83-84), and setPoses the body into GuerTempRespawnMarker — the centre deadspawn marker inside the H-barrier ring (Init_HC.sqf:85-88). It is keyed on player (not name=="HC") so HC1 and HC2 run it identically. Order invariant: reseat-to-civilian always runs first, so the park never runs against a WEST/EAST grouping.
A one-shot reseat exits permanently the moment the HC first reaches civilian, but an in-place mission restart (a 2nd MISSINIT on the same process) re-seats every still-connected client and the HC lands back on WEST id=229 — invisible to the one-shot loop. The watcher (Init_HC.sqf:113-136) runs for the whole session: every 15s, if side group player != civilian, it re-reseats (30s budget), emits hc-reseat-result tagged rewatch:, re-parks, and re-announces connected-hc (:132) so the server re-resolves group _hc onto the fresh civ group. A separate cold-start insurance spawn re-announces connected-hc up to 6 more times while civilian (Init_HC.sqf:143-153).
Supporting HC telemetry / runtime-pending (cmdcon31 supersession, 2026-07-01). On WEST this watcher can still churn
connected-hcif the slot id=229 re-grabs the HC, whereas HC2 on EAST may stay stable after one reseat. PR #122's server-side guard changes the registry invariant: non-civilian HC groups must not enterWFBE_HEADLESSCLIENTS_ID. The runtime gate remains explicit:-RequireHcRegistrymust pass with civilian registration and noconnect-skiplines, but the active AICOM founding proof now also requires the release fallback tokenAICOMGATE|WEST|infFallbackplusTEAM_FOUNDED,CMDRSTATand autonomous progress.
End-to-end boot + delegation registration + periodic stat emission for headless clients (HC1/HC2). Covers reseat, registration, stat loop, and server sinks. Delegation targets (town AI, statics) are handed off post-registration. See expanded detailed HC mermaid (new 20260715) in Client-UI-Systems-Atlas #6 + agents-catalog + Agent-Guide + Page-Index #key-loops.
flowchart TD
Boot["initJIPCompatible.sqf<br/>isHeadlessClient detected"] --> LaunchHC["execVM Headless/Init/Init_HC.sqf"]
LaunchHC --> CompileRx[Compile delegation receivers<br/>DelegateTownAI, DelegateAIStaticDefence, ...]
CompileRx --> WaitPlayer["waitUntil player exists<br/>(bounded)"]
WaitPlayer --> Preseat[Send hc-preseat via RequestSpecial]
Preseat --> Reseat["WFBE_HC_FNC_ReseatCivilian<br/>createGroup civilian + joinSilent"]
Reseat --> Park["Park body in GuerTempRespawnMarker<br/>allowDamage false + setCaptive"]
Park --> Register["Send connected-hc<br/>RequestSpecial"]
Register --> StatLoop["execVM Headless/HC_StatLoop.sqf"]
StatLoop --> GC["Client_GroupsGC on HC-local"]
StatLoop --> While["while true { sleep 60 }"]
While --> Collect["local units/groups counts<br/>netId-based HC id"]
Collect --> SendHC["SendToServer HCStat<br/>[HC-id, fps, units, groups]"]
SendHC --> ServerSink["Server/PVFunctions/HCStat.sqf<br/>emit HCSTAT|v1|... diag_log"]
Register --> ServerReg["Server_HandleSpecial connected-hc<br/>update WFBE_HEADLESSCLIENTS_ID registry"]
ServerReg --> Delegation["Town AI / static defence delegation<br/>via WFBE_CL_FNC_Delegate* to HC owners"]
subgraph "HC process"
LaunchHC
Reseat
StatLoop
While
end
subgraph "Server"
ServerSink
ServerReg
Delegation
end
HC_StatLoop.sqf (~24 lines) runs only on HCs (launched from Init_HC.sqf:132). It ships HC load to the server once per minute.
| Aspect | Value | Source |
|---|---|---|
| HC id |
format ["HC-%1", netId player] — netId is network-unique per HC slot; profileName is undefined on HCs and owner player returns 0 (both HCs would collapse to HC0) |
HC_StatLoop.sqf:16, :6-8
|
| Local unit count | {local _x} count allUnits |
HC_StatLoop.sqf:19 |
| Local group count |
{local (leader _x)} count allGroups — A2 local takes an OBJECT only; a group arg throws, so the leader is used as proxy |
HC_StatLoop.sqf:21 |
| Payload sent | ["HCStat", [_hcId, round diag_fps, _units, _groups]] Call WFBE_CO_FNC_SendToServer |
HC_StatLoop.sqf:22 |
| Interval | sleep 60 |
HC_StatLoop.sqf:23 |
| Exit | none — while {true} (runs for the whole session) |
HC_StatLoop.sqf:18 |
HCStat is a registered server-command public variable (Common/Init/Init_PublicVariables.sqf:27). The server handler validates the payload (typeName == "ARRAY", count >= 4, _name is a STRING — a malformed payload must never throw inside a PVF, Server/PVFunctions/HCStat.sqf:11-18) and emits one machine-parseable line:
HCSTAT|v1|<name>|fps=<n>|units=<n>|groups=<n>|t=<min> (Server/PVFunctions/HCStat.sqf:20).
A comment notes the server/generator relabels the HC-<netId> ids to HC1/HC2 by sort order (HC_StatLoop.sqf:15); the relabel itself lives in out-of-mission tooling, not in the mission scripts.
The three boot-time RequestSpecial payloads land in Server_HandleSpecial.sqf and emit HCSIDE diagnostic lines (so "did an HC land on WEST this boot, and did the script fix it" is directly observable on the server RPT — the diag_log emit lines are Server_HandleSpecial.sqf:397, :404, :413; the rationale comment is at :389-392).
| Payload | Server line emitted | Source |
|---|---|---|
hc-preseat |
HCSIDE|v1|preseat|name=..|engineSide=.. |
Server/Functions/Server_HandleSpecial.sqf:393-398 |
hc-reseat-result |
HCSIDE|v1|reseat|name=..|result=..|sideNow=.. |
Server/Functions/Server_HandleSpecial.sqf:399-405 |
connected-hc |
HCSIDE|v1|connect|uid=..|owner=..|side=.., then registry update (drop stale UID group, prune dead, append group _hc if owner != 0) |
Server/Functions/Server_HandleSpecial.sqf:406-434 (connect line :413; append :430-431) |
Init_HC.sqf:146 launches Client/Functions/Client_GroupsGC.sqf on the HC. Its start gate is broadened to run on a player client or a headless client via WFBE_GC_IsHC = isMultiplayer && {!isServer} && {!hasInterface} (Client_GroupsGC.sqf:24-25); the dedicated server is excluded (it has server_groupsGC.sqf). It reaps client-LOCAL empty, non-persistent, non-player, non-town-tracked groups once per 60s (Client_GroupsGC.sqf:38), tagging lines HC-<netId> to line up with HCSTAT (Client_GroupsGC.sqf:30-32). This closes an HC-local empty-group leak toward the 144/side cap: an HC owns ~12-16 delegated groups whose self-reap no-ops while dead-but-uncollected corpses still sit in units _team (Init_HC.sqf:134-145). Launched after the reseat so group player already resolves to the civilian infra group it must protect.
- Headless Client Scaling And Topology — delegation modes, the offload ceiling, running a 2nd HC.
- AI Runtime And HC Loop Map — the full server/HC runtime loop table and delegation map.
- Headless Delegation And Failover Playbook — payloads, callbacks, disconnect/orphan behaviour.
-
Mission Entrypoints And Lifecycle — the
initJIPCompatible.sqfrole split this boot path branches from. -
Networking And Public Variables — the
RequestSpecial/SendToServerPVF channel the HC telemetry rides on.
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