-
Notifications
You must be signed in to change notification settings - Fork 0
Server Group GC Cap Warning And Zombie Reaper
Source-verified 2026-06-21 against master 0139a346. Paths relative to Missions/[55-2hc]warfarev2_073v48co.chernarus/ unless noted. Arma 2 OA 1.64.
Arma 2 OA enforces a hard engine ceiling of roughly 144 groups per side, and the engine does not automatically reclaim a group once its last unit dies or is deleted. Empty groups therefore accumulate as a slow leak: once a side reaches 144, createGroup returns grpNull and every downstream AI spawn fails silently with no error in the RPT. Server\FSM\server_groupsGC.sqf is the always-on server loop that keeps that ceiling unreachable in normal play. On a 60-second cadence it runs four jobs in one pass: an empty-group garbage-collection sweep, an orphaned-team "zombie" reaper, a debounced per-side cap-warning, and a telemetry suite (GCSTAT, GUERCAP, plus a throttled per-source audit). It also publishes a per-side group-count cache that other loops read instead of re-scanning allGroups themselves.
This page documents the GC loop itself. It is distinct from the AI-Headless delegation prose, from the marker/garbage/empty-vehicle collectors (Marker-Cleanup-Restoration-Systems-Atlas), and from the dormant debug-only groupsMonitor.sqf noted in the dead-code register.
The script is launched once, late in server init, after the garbage collector and empty-vehicle collector are defined.
| Aspect | Detail | Source |
|---|---|---|
| Server guard |
if (!isServer) exitWith {}; — runs server-only |
Server/FSM/server_groupsGC.sqf:9 |
| Loop condition |
while {!WFBE_GameOver} do { sleep 60; ... } — exits when the game ends |
Server/FSM/server_groupsGC.sqf:16-17 |
| Warn debounce |
_warnInterval = 300; — 5 minutes between repeated warnings, same side and threshold |
Server/FSM/server_groupsGC.sqf:13 |
| Audit window counter |
_auditN = 0; — counts elapsed 5-min windows; the expensive audit fires only every WFBE_C_GROUPAUDIT_EVERY-th window |
Server/FSM/server_groupsGC.sqf:14 |
The order within each 60s cycle is: empty-group sweep, zombie reaper, per-side count + cache publish, GCSTAT/GUERCAP, cap warnings, then the throttled source-attribution audit.
The first job iterates allGroups, finds every group with zero units, and deletes the non-persistent ones. Two counters are reset each pass: _gcEmptyFound counts all zero-unit groups seen (including persistent ones that are kept), and _gcReaped counts the non-persistent empties actually deleted.
| Step | Detail | Source |
|---|---|---|
| Empty test | if (!isNull _grp && {(count (units _grp)) == 0}) then {...} |
Server/FSM/server_groupsGC.sqf:25 |
| Persistence read |
_isPers = _grp getVariable "wfbe_persistent"; then if (isNil "_isPers") then {_isPers = false};
|
Server/FSM/server_groupsGC.sqf:29-30 |
| Reap | if (!_isPers) then { deleteGroup _grp; _gcReaped = _gcReaped + 1; }; |
Server/FSM/server_groupsGC.sqf:31-34 |
A group flagged wfbe_persistent is never reaped even when empty — this is the contract static-defense manning relies on so a temporarily-empty garrison slot is not collected (Static-Defense-Manning-Reference). The A2-OA trap is called out in the source itself: the two-argument [name, default] form of getVariable is unreliable on GROUP objects in this engine (it can yield nil instead of the supplied default), so the sweep uses the single-argument form plus an explicit isNil guard (server_groupsGC.sqf:27-30).
The second job reclaims AI teams whose human player disconnected under JIP-preserve but never returned. When WFBE_C_AI_TEAMS_JIP_PRESERVE == 1, a disconnecting player's AI subordinates are kept alive and the team is stamped with the disconnect time. If the player never reconnects within the timeout, those units become orphaned "zombies" that consume a group slot and units forever; this reaper cleans them up.
| Aspect | Detail | Source |
|---|---|---|
| Timeout param |
_zombieTimeout = missionNamespace getVariable ["WFBE_C_DISCONNECT_ZOMBIE_TIMEOUT", 600]; — default 600s; set 0 to disable the whole block |
Server/FSM/server_groupsGC.sqf:42-43 |
| Orphan stamp read |
_orphanedAt = _grp getVariable "wfbe_orphaned_at"; then if (isNil "_orphanedAt") then {_orphanedAt = -1};
|
Server/FSM/server_groupsGC.sqf:50-51 |
| Age gate | if (_orphanedAt >= 0 && {(time - _orphanedAt) >= _zombieTimeout}) then {...} |
Server/FSM/server_groupsGC.sqf:52 |
| Unclaimed check |
_uidVal = _grp getVariable "wfbe_uid"; if (isNil "_uidVal") then {...} — only reaps if no player has re-claimed the team |
Server/FSM/server_groupsGC.sqf:54-55 |
| HQ exclusion |
_zombieHQ = (side _grp) Call WFBE_CO_FNC_GetSideHQ; then subtracted from the kill list |
Server/FSM/server_groupsGC.sqf:58-61 |
| Vehicle gather | _zombieVehicles = [_grp, false] Call GetTeamVehicles; |
Server/FSM/server_groupsGC.sqf:60 |
| Kill loop | { if (!isPlayer _x && !(_x in playableUnits)) then { deleteVehicle _x; ... } } forEach _zombieUnits; |
Server/FSM/server_groupsGC.sqf:63-68 |
| Clear stamp |
_grp setVariable ["wfbe_orphaned_at", nil]; — prevents re-reaping the now-empty husk |
Server/FSM/server_groupsGC.sqf:69 |
| Log |
INFORMATION ... reaped %1 zombie unit(s) from orphaned team %2 (disconnected %3s ago) via WFBE_CO_FNC_AICOMLog
|
Server/FSM/server_groupsGC.sqf:70 |
The reaper mirrors the preserve==0 deletion pattern from the disconnect handler (the same isPlayer/playableUnits guard and HQ exclusion, so a teammate crewing the MHQ is never deleted). After the units are removed, the now-empty group is left for the empty-group sweep above to delete on a later pass.
The reaper is fed by the player-disconnect handler, and the unclaimed test relies on wfbe_uid being cleared.
| Event | Action | Source |
|---|---|---|
| Connect |
_team setVariable ["wfbe_uid", _uid]; — team is claimed |
Server/Functions/Server_OnPlayerConnected.sqf:65 |
| Disconnect, preserve==1 |
_team setVariable ["wfbe_orphaned_at", time]; — stamps the orphan clock |
Server/Functions/Server_OnPlayerDisconnected.sqf:110-113 |
| Disconnect, preserve==0 | Deletes the units immediately (same guard pattern) instead of stamping | Server/Functions/Server_OnPlayerDisconnected.sqf:105-109 |
| Disconnect, both paths |
_team setVariable ["wfbe_uid", nil]; — marks the team unclaimed |
Server/Functions/Server_OnPlayerDisconnected.sqf:132 |
Because wfbe_uid is cleared on disconnect and re-set on connect, a player who reconnects before the timeout re-claims the team (wfbe_uid is non-nil), and the reaper's isNil "_uidVal" check at server_groupsGC.sqf:55 skips it. Player-Join-Disconnect-And-AntiStack-Lifecycle documents the disconnect feeder; this loop is the GC consumer of the wfbe_orphaned_at stamp.
After the reaper, the loop does one allGroups pass to count groups per side and to count untagged groups (those with no wfbe_group_src, i.e. created outside the WFBE_CO_FNC_CreateGroup wrapper). The per-side counts are published to missionNamespace so other loops do not re-scan allGroups.
| Variable | Meaning | Source |
|---|---|---|
wfbe_grpcnt_west / _east / _guer
|
Per-side group count from this sweep | Server/FSM/server_groupsGC.sqf:96-98 |
wfbe_grpcnt_t |
time of the last publish (cache freshness) |
Server/FSM/server_groupsGC.sqf:99 |
_untW / _untE / _untG
|
Untagged-group count per side (wrapper-bypass leak signal) | Server/FSM/server_groupsGC.sqf:86-91 |
server_town_ai.sqf reads wfbe_grpcnt_guer from this cache, falling back to a live allGroups scan only until the first GC sweep warms it (server_town_ai.sqf:62). The B7 efficiency note in the source explains this is precisely why the cache exists (server_groupsGC.sqf:94-95).
Each pass, for WEST, EAST, and RESISTANCE, the loop emits a debounced RPT WARNING when the side's count crosses two thresholds: >= 130 (approaching) and >= 144 (at cap). Each threshold per side has its own debounce key in missionNamespace so a sustained high count does not spam the RPT more than once per _warnInterval (300s).
| Threshold | Debounce key | Message | Source |
|---|---|---|---|
| WEST >= 130 | wfbe_groupcap_warn_west130 |
...approaching cap (>= 130); AI spawns will fail silently at 144. |
server_groupsGC.sqf:126-132 |
| WEST >= 144 | wfbe_groupcap_warn_west144 |
...AT CAP; createGroup will return grpNull and AI spawns will silently fail. |
server_groupsGC.sqf:134-140 |
| EAST >= 130 / 144 |
wfbe_groupcap_warn_east130 / _east144
|
same approach / at-cap text | server_groupsGC.sqf:142-157 |
| RESISTANCE >= 130 / 144 |
wfbe_groupcap_warn_guer130 / _guer144
|
same approach / at-cap text | server_groupsGC.sqf:159-174 |
All six warnings route through WFBE_CO_FNC_AICOMLog at level WARNING. The debounce default sentinel is -9999 so the first crossing always fires (server_groupsGC.sqf:127).
For RESISTANCE the 144 engine cap is rarely the real limit. The mission imposes a soft cap, WFBE_C_GUER_GROUPS_MAX (default 80), and town AI defers new resistance garrisons once it is reached — so GUER town defense degrades long before the 130/144 engine warning would ever fire. The GC loop emits a GUERCAP telemetry line every pass tracking the soft cap.
| Aspect | Detail | Source |
|---|---|---|
| Soft cap read |
_guerMax = missionNamespace getVariable ["WFBE_C_GUER_GROUPS_MAX", 80]; (clamped to >= 1) |
server_groupsGC.sqf:115-116 |
| Percent | _guerPct = round ((_cntGuer / _guerMax) * 100); |
server_groupsGC.sqf:117 |
| 90% threshold | _guerSoftThreshold = round (_guerMax * 0.9); |
server_groupsGC.sqf:118 |
| GUERCAP line | `GUERCAP | v1 |
| Enforcement (consumer) | if (_side == resistance && _guerGroupCount >= _guerGroupsMax) then {...defer garrison...} |
server_town_ai.sqf:168-173 |
The cap is re-read each pass so a live lobby-param change is honoured. AI-Commander-Tunable-Constants-Reference lists the constant; this loop and server_town_ai.sqf are where it is observed and enforced.
The GC loop emits a structured set of diag_log lines. Two are cheap and fire every 60s pass; the rest live inside the 5-minute source-attribution audit, which is additionally throttled by WFBE_C_GROUPAUDIT_EVERY.
| Tag | Cadence | Payload | Source |
|---|---|---|---|
| `GCSTAT | v1` | every 60s |
reaped, emptyFound, per-side west/east/guer, untagged untW/untE/untG, t (round min) |
| `GUERCAP | v1` | every 60s |
count, max, pct, t
|
| `EMPTYGRP | v1` | audit window | empty-group counts west/east/guer plus persistent-empty persW/persE/persG
|
| `DELEGSTAT | v1` | audit window |
total, srvLocal, remote, remotePct (HC offload proof) |
| `TOWNSTAT | v1` | audit window | town ownership west/east/guer/total by sideID
|
| `ORBATSTAT | v1` | audit window | per-side crewed-vehicle order of battle (armor/car/heli/jet) + personnel |
server_groupsGC.sqf: group audit [side] N/144: ... |
audit window | per-(side, wfbe_group_src) breakdown + srvFps, activeTowns, units, auditMs
|
server_groupsGC.sqf:283-340 |
The expensive audit (full allGroups classification by wfbe_group_src, plus an allUnits pass and the per-side dump) is gated twice. First a 5-minute debounce on wfbe_groupaudit_last (server_groupsGC.sqf:178-181); then a modulo gate so the classification fires only on every WFBE_C_GROUPAUDIT_EVERY-th window (default 5, clamped to >= 1):
_every = missionNamespace getVariable ["WFBE_C_GROUPAUDIT_EVERY", 5];
if (_every < 1) then { _every = 1 };
if ((_auditN mod _every) == 0) then { ...expensive dump... };
(server_groupsGC.sqf:190-192). The source notes the dump costs ~2100ms on 276 groups, which is why it is throttled; critically, the husk-reap sweep, zombie reaper, and cap warnings all run earlier in the same 60s cycle, outside this branch, so the throttle never delays the actual GC work (server_groupsGC.sqf:183-188).
The audit classifies each group by its wfbe_group_src tag; untagged groups show as untagged. Editor-placed player-slot groups in mission.sqm are born by the engine with no createGroup call, so the wrapper never tags them. A one-shot init sweep tags every still-untagged WEST/EAST/RESISTANCE group as editor-player-slot (audit-only; they already carry wfbe_persistent=true, which the persistence-aware empty-group sweep honours, so the GC never reaps them):
| Step | Detail | Source |
|---|---|---|
| Guard |
if (isNil "WFBE_EDITOR_GROUPS_TAGGED") then {...} (one-shot) |
Server/Init/Init_Server.sqf:838-839 |
| Tag |
_x setVariable ["wfbe_group_src", "editor-player-slot", true]; for untagged WEST/EAST/RESISTANCE groups |
Server/Init/Init_Server.sqf:850 (sweep body :840-852) |
A rising untagged count in GCSTAT/the audit is therefore a wrapper-bypass leak signal rather than expected editor slots. Commander-HQ-Lifecycle-Atlas describes the wfbe_group_src tagging from the producer side.
The sweep must only TAG, never reap. The mission.sqm editor block has ~27 WEST + 27 EAST player-slot groups; of those, ~13/side are "overflow" slots whose placeholder unit self-deletes at load (init="... deleteVehicle this"), leaving an empty group that a human can still JIP into. Empty does not mean dead.
PR#122 (the qol-polish-pack) briefly turned this audit-only sweep into a REAPER: it called deleteGroup on the empty WEST/EAST/RESISTANCE editor groups to reclaim group-cap headroom, with count (units _x) == 0 as its only discriminator. That deleted a JIP-selectable overflow slot's group. The failure chain on the live server:
- a player JIP-joins that overflow slot -> the engine drops them into an already-
deleteGroup'd group that carries nowfbe_side; - the enrollment self-heal in
Server/Functions/Server_OnPlayerConnected.sqf(the B746 resolver, "re-arming enrollment ... attempt N/3", keyed onWFBE_CONNECT_RETRY_<uid>,Server_OnPlayerConnected.sqf:120-143) never resolves a side, bails, re-arms 3x, and exhausts; - the player is left in DEADSPAWN — no team, no HUD, no markers. JIP / mid-match specific.
cmdcon30 (2026-06-30) REMOVED the reaper, reverting to the pre-PR122 audit-only tagging (the cmdcon30 note lives in-source at Server/Init/Init_Server.sqf:844-849). The empty overflow slots ran the entire pre-PR122 history with no group-cap problem, and the only safe reap would skip them anyway since they carry wfbe_persistent — which the empty-group sweep above honours and the PR#122 reaper did not. Rule: never deleteGroup a JIP-selectable editor-slot group at boot. A re-join with the same UID was also permanently stuck because WFBE_CONNECT_RETRY_<uid> was only cleared on enrollment SUCCESS; cmdcon30 also clears it on disconnect (Server/Functions/Server_OnPlayerDisconnected.sqf) so a re-join gets fresh re-arms.
-
Static-Defense-Manning-Reference — the
wfbe_persistentflag that exempts empty garrison groups from this sweep. -
Player-Join-Disconnect-And-AntiStack-Lifecycle — the disconnect handler that stamps
wfbe_orphaned_atand feeds the zombie reaper. -
Commander-HQ-Lifecycle-Atlas —
wfbe_group_srctagging from the group-creation producer side. -
AI-Commander-Tunable-Constants-Reference —
WFBE_C_GUER_GROUPS_MAX,WFBE_C_DISCONNECT_ZOMBIE_TIMEOUT, andWFBE_C_GROUPAUDIT_EVERYconstants. - Marker-Cleanup-Restoration-Systems-Atlas — the sibling garbage, empty-vehicle, and map cleanup loops (distinct from group GC).
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 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