-
Notifications
You must be signed in to change notification settings - Fork 0
Flak Tower And WDDM Anchor Compositions
Source-verified 2026-07-06 against branch
claude/cmdcon44-wddm@ 1ac5a3f — the cmdcon44-c (Build 89) commit "thin-tower flak + WDDM-authored defense positions & fortifications". Paths relative to Missions/[55-2hc]warfarev2_073v48co.chernarus/ unless noted. Arma 2 OA 1.64.
This page documents the in-mission anchor-composition pipeline: how a commander buys a cheap "anchor ghost" from the build menu and the server expands it into a whole multi-object defensive position — walls, statics, and (the cmdcon44-c headline) the Flak Tower, an AA gun auto-manned on top of a lattice light tower. It covers the full chain: anchor ghost → RequestDefense (composition cap) → Server_ConstructPosition (per-child spawn + AUTOZ deck measure) → ConstructDefense → HandleDefense (HC-delegated manning), plus the .wddm.json authoring loop and the flak-tower flag set.
Disambiguation. "WDDM" names two related but distinct things. The browser tool (Warfare Dynamic Defense Manager, one of the Warfare web tools) is the editor Ray uses to author composition layouts. This page is about the mission-side runtime that consumes those layouts. The historical Commander positions branch audit audited the original feat/commander-positions branch this pipeline descends from; the cmdcon44 chain is the current landing of that feature (superseding the branch-audit state).
WDDM editor (browser) ──> docs/design/compositions/*.wddm.json (layout source of truth)
│ │
│ Tools/WddmToSqf/wddm_to_sqf.py
│ ▼
│ missionNamespace setVariable ['WFBE_NEURODEF_*', [[cls,[x,y,z],dir],...]]
│ (pasted into Server/Init/Init_Defenses.sqf)
▼
Build menu: commander buys an ANCHOR GHOST classname (e.g. Land_Ind_TankSmall)
▼
Client/Module/CoIn/coin_interface.sqf:753 ──"RequestDefense" PVF──> server
▼
Server/PVFunctions/RequestDefense.sqf — anchor? cap OK? ──Spawn──> Server_ConstructPosition
▼
Server/Functions/Server_ConstructPosition.sqf — per child: rotate offset, Call ConstructDefense
▼ (flak host: boundingBox AUTOZ deck measure)
Server/Construction/Construction_StationaryDefense.sqf — crewable child? ──Spawn──> HandleDefense
▼
Server/Functions/Server_HandleDefense.sqf — HC delegation + 45 s fallback + 420 s re-man
Anchors are not editor-placed objects — they are cheap placeholder classnames that exist only as build-menu entries and placement cursors. The registry:
| Surface | Content | Source |
|---|---|---|
WFBE_POSITION_ANCHOR_NAMES |
14 anchor classnames (Land_Ind_BoardsPack1, Land_CncBlock_Stripes, Land_Barrel_sand, Land_Ind_BoardsPack2, Land_WoodenRamp, RoadCone, Paleta1, Paleta2, Land_Ind_Timbers, Misc_cargo_cont_small, Land_Ind_TankSmall, Land_Misc_Cargo1B, Land_transport_crates_EP1, Land_Barrel_water) |
Server/Init/Init_Defenses.sqf:966 |
WFBE_POSITION_TEMPLATE_MAP |
rows of [anchorClassname, baseTemplateVar, factionSpecific?]; faction-specific rows get _WEST/_EAST appended at build time |
Server/Init/Init_Defenses.sqf:948-965 |
| Flak-tower row | ['Land_Ind_TankSmall','WFBE_NEURODEF_FLAKTOWER',true] |
Server/Init/Init_Defenses.sqf:960 |
A template variable holds the composition as [['classname',[xOffset,yOffset,zOffset],relativeDir], ...] — the same element shape Server_CreateDefenseTemplate.sqf consumes elsewhere (see Server composition spawner reference).
| Item | Detail |
|---|---|
| Location |
docs/design/compositions/*.wddm.json (mission repo root, not inside the mission folder) — 21 files as of cmdcon44-c (AA/artillery/mixed positions per faction, three fort_* fortifications, plus base-building layout studies) |
| Schema |
name (must start WFBE_NEURODEF_), parentW/parentD/parentDir, structureType, fortOnly, mode, notes, and objs: [{cls, x, y, z, dir, role}, ...]; only name + objs feed the converter — the rest is editor/review metadata |
| Converter |
Tools/WddmToSqf/wddm_to_sqf.py — reads every .wddm.json in the compositions dir and prints missionNamespace setVariable ['WFBE_NEURODEF_*', [...]]; blocks. CLI (script docstring): no args = all to stdout; --name <VAR> = one; --check = validate JSON + element shape (exit 1 on error); --emit-file OUT.sqf = standalone include |
| Landing | the emitted blocks are hand-pasted into Server/Init/Init_Defenses.sqf (fort compositions at :898-944, AA/arty/mixed at :668-887). The in-file comment is explicit: the .wddm.json is the SOURCE OF TRUTH; to change a layout, edit it in WDDM and re-run the converter (do not hand-edit these arrays) (Server/Init/Init_Defenses.sqf:651-653) |
Exception — the flak tower itself is hand-authored SQF, not WDDM-emitted. There is no flaktower*.wddm.json; the two-element template (host tower at ground, AA gun at deck height) is built inline at Server/Init/Init_Defenses.sqf:632-643, reading the flag constants below. The WDDM/converter loop owns the multi-object layout compositions; the flak tower's layout is trivial enough to live directly in the init.
| Item | Detail | Source |
|---|---|---|
| Menu entry |
Land_Ind_TankSmall registered with label 'Flak Tower — AA on light tower (1 AI)', price 1400, category Defense
|
Common/Config/Core/Core_CIV.sqf:225-229 |
| Side gating | each side's structure file appends the anchor to WFBE_%1DEFENSENAMES behind the WFBE_C_DEF_FLAKTOWER sub-flag — WEST Structures_CO_US.sqf:260-263, EAST Structures_CO_RU.sqf:249-251, GUER Structures_CO_GUE.sqf:184-186, TK-army Structures_OA_TKA.sqf:188-189 (all under Common/Config/Core_Structures/) |
see left |
| Placement UI | the CoIn "coin" placement interface — the commander's MCoin (after HQ deploy) or the repair-truck RCoin; category tabs are built from WFBE_%1DEFENSENAMES (Client/Init/Init_Coin.sqf:46,74) |
Client/Functions/Client_FNC_Special.sqf:72-74 |
| Request |
["RequestDefense", [sideJoined,_class,_pos,_dir,manningDefense,(_logic == RCoin),player]] Call WFBE_CO_FNC_SendToServer — the player object rides along so the server can refund on rejection |
Client/Module/CoIn/coin_interface.sqf:746-754 |
Server/PVFunctions/RequestDefense.sqf receives every defense placement. The anchor test is _isAnchor = (WFBE_POSITION_ANCHOR_NAMES find _defenseType) != -1 (RequestDefense.sqf:79), and the routing fork appears in three parallel branches (budget-gate-passed / outside-base-area / budget-gate-off — RequestDefense.sqf:284-289,295-299,306-310):
- anchor →
[_side,_defenseType,_pos,_dir,_manned] Spawn Server_ConstructPosition(aSpawn, so the PV handler returns immediately while children build asynchronously); - non-anchor → the normal single-object
ConstructDefenseCall.
Composition cap (inside a base area, budget gate on): WFBE_C_WDDM_COMP_CAP (default 3, Common/Init/Init_CommonConstants.sqf:1556) bounds how many compositions can live per base area (RequestDefense.sqf:143-168). Enforcement counts distinct placement IDs: every composition child is stamped WFBE_WDDMPositionAnchor = "<anchorType>_<counter>" at build time, so the cap logic collects live objects in WFBE_C_BASE_AREA_RANGE (default 250, Init_CommonConstants.sqf:1121) of the nearest base center and counts unique IDs. At/over the cap the request is rejected as WddmCompositionCapReached and the placing player is refunded via the LocalizeMessage channel (RequestDefense.sqf:259,272). The general defense-budget machinery around this (statics cap 25, threat gate) is documented in Defense category & budget.
Server/Functions/Server_ConstructPosition.sqf resolves the anchor via WFBE_POSITION_TEMPLATE_MAP (faction-specific templates get _WEST for west, else _EAST — there is no _GUER branch; a resistance build resolves the _EAST template, Server_ConstructPosition.sqf:42), then iterates the children (:58-111):
| Step | Behavior | Source |
|---|---|---|
| World placement | each child's [x,y] offset is rotated about the requested _pos by direct trigonometry (a prior modelToWorld helper-object approach was unreliable — could land compositions at the map corner) |
Server/Functions/Server_ConstructPosition.sqf:50-52,58-74 |
| Per-child routing |
[_cls, _side, _worldPos, _worldDir, _manned, false, WFBE_C_BASE_DEFENSE_MANNING_RANGE, false, true] Call ConstructDefense — the trailing true is the _wddmChild flag |
Server/Functions/Server_ConstructPosition.sqf:75 |
| Child stamps |
WFBE_WDDMPositionChild = true (in Construction_StationaryDefense.sqf:32-34) and WFBE_WDDMPositionAnchor = <placementID> (feeds the composition cap) |
Server/Functions/Server_ConstructPosition.sqf:54-56,78 |
Routing every child through the stock ConstructDefense is what buys auto-manning for free: ConstructDefense (alias for Server/Construction/Construction_StationaryDefense.sqf, registered Server/Init/Init_Server.sqf:35) spawns a HandleDefense manning loop for any child with emptyPositions "gunner" > 0 (Construction_StationaryDefense.sqf:97-149, Spawn HandleDefense at :148) — plus the usual killed/damaged EH wiring, scoring, and prop placement. Nothing is manning-special-cased for compositions.
AUTOZ deck measurement (the flak-tower mechanism). Server_ConstructPosition reads WFBE_C_DEF_FLAKTOWER_STRUCTURE and WFBE_C_DEF_FLAKTOWER_AUTOZ at :25-26. When a ground-level child (z <= 0.1) matching the host classname spawns, the builder measures the just-created object: _bb = boundingBox _one; _deckTop = (_bb select 1) select 2 — the model's max-z corner, which for a ground-sitting tower is the deck height (Server_ConstructPosition.sqf:83-89). Any elevated child (z > 0.1 in the template — the AA gun) is then lifted to _deckTop (AUTOZ on and measurement sane) or keeps the template's baked z (AUTOZ off / measurement failed), via setPosATL + setVectorDirAndUp (Server_ConstructPosition.sqf:90-107), logging an INFORMATION "elevated child mounted on deck" line. The mechanism is generic — any composition with a non-zero-z child gets the lift — but the flak tower is currently its only consumer (every other composition is flat).
Server/Functions/Server_HandleDefense.sqf (alias registered Server/Init/Init_Server.sqf:44) is the per-gun manning loop, shared by all base defenses:
| Mechanic | Behavior | Source |
|---|---|---|
| Duplicate-loop guard |
WFBE_DefenseManningLoopActive variable on the gun |
Server/Functions/Server_HandleDefense.sqf:7-12 |
| Instant mount |
_moveInGunner = true — owner call 2026-06-11: all base-defense crews teleport into the seat (no barracks walk, no pathfinding cost) |
Server/Functions/Server_HandleDefense.sqf:16 |
| HC delegation | with live headless clients, manning is delegated via WFBE_CO_FNC_DelegateAIStaticDefenceHeadless (crew class = the side's WFBE_%1SOLDIER: USMC_Soldier / RU_Soldier / GUE_Soldier_1) |
Server/Functions/Server_HandleDefense.sqf:51-62 |
| 45 s fallback | delegation is fire-and-forget to a random HC with no retry — a watcher thread waits deadline = time + 45; if no live gunner is seated by then, the server creates and seats one itself and logs a WARNING
|
Server/Functions/Server_HandleDefense.sqf:63-88 |
| No-HC path | zero live HCs → server seats the gunner directly, no grace window | Server/Functions/Server_HandleDefense.sqf:89-99 |
| Re-man cycle | the outer while {alive _defense && _sideStillValid} loop sleeps 420 s per pass and re-mans if the gunner is null/dead |
Server/Functions/Server_HandleDefense.sqf:21,104 |
| Ownership exit | if the base area changed hands (AI16), _sideStillValid goes false and the loop stops re-manning for the old owner |
Server/Functions/Server_HandleDefense.sqf:25-37 |
The manning loop only starts at all while the base area is under WFBE_C_BASE_DEFENSE_MAX_AI (default 40, Init_CommonConstants.sqf:1106) manning AI (Construction_StationaryDefense.sqf:97). Related: Static-defense manning covers the town-emplacement manning family; HC delegation target selection covers how the HC is picked.
All in Common/Init/Init_CommonConstants.sqf, all isNil-guarded:
| Constant | Default | Meaning | Source |
|---|---|---|---|
WFBE_C_DEF_FLAKTOWER |
1 |
menu sub-flag — gates the anchor's DEFENSENAMES entry per side (only honored while WFBE_C_DEFMENU_V2 = 1, :1742) |
Common/Init/Init_CommonConstants.sqf:1747 |
WFBE_C_DEF_FLAKTOWER_STRUCTURE |
"Land_Ind_IlluminantTower" |
host tower classname (the cmdcon44-c "thin tower" — A2 lattice illuminant tower) | Common/Init/Init_CommonConstants.sqf:1779 |
WFBE_C_DEF_FLAKTOWER_DECK_Z |
17.0 |
fallback deck height — a documented estimate (no empirical in-repo height existed), used only when AUTOZ is off or the boundingBox measure fails | Common/Init/Init_CommonConstants.sqf:1780 |
WFBE_C_DEF_FLAKTOWER_AUTOZ |
1 |
1 = measure the deck via boundingBox at build time; 0 = force DECK_Z
|
Common/Init/Init_CommonConstants.sqf:1781 |
The composition arrays (Server/Init/Init_Defenses.sqf:632-643): WEST = host + Stinger_Pod_US_EP1 at deck z (A2-OA has no US static bullet-AA, so the Stinger pod is the WEST mount); EAST = host + ZU23_TK_EP1 (the true ZU-23 auto-cannon). GUER note: the GUER structures file's comment reasons about ZU23_TK_GUE_EP1 being faction-authentic, but a GUER build resolves the shared _EAST template and therefore gets ZU23_TK_EP1 — a comment-vs-code mismatch worth knowing when reading the source (Common/Config/Core_Structures/Structures_CO_GUE.sqf:184-186 vs Server/Init/Init_Defenses.sqf:640-643).
One-flag fallback ladder (Init_CommonConstants.sqf:1772-1778, restated at Init_Defenses.sqf:625-630): if the thin-tower mount misbehaves on the box, Ray flips the host by editing the flag constants — there is no in-code selector; the ladder is documentation for a manual constant change:
| Rung | _STRUCTURE |
_DECK_Z |
_AUTOZ |
|---|---|---|---|
| Bunker MVP (rock-solid, short) | Land_fortified_nest_big_EP1 |
2.7 |
0 |
| Airfield control tower (tall, boxy) | Land_Mil_ControlTower |
12.5 |
(comment leaves AUTOZ unstated — default 1 unless also set) |
| Original watchtower | Land_Fort_Watchtower_EP1 |
5.4 |
0 |
| Constant | Default | Meaning | Source |
|---|---|---|---|
WFBE_C_DEFMENU_V2 |
1 |
master flag for the redone Defenses/Fortifications menu | Common/Init/Init_CommonConstants.sqf:1742 |
WFBE_C_DEFMENU_V2_POSITIONS |
1 |
gates the six reworked AA/artillery/mixed compositions and the three WDDM FORT_* fortification anchors |
Common/Init/Init_CommonConstants.sqf:1791 |
WFBE_C_WDDM_COMP_CAP |
3 |
max WDDM compositions per base area (size-independent) | Common/Init/Init_CommonConstants.sqf:1556 |
WFBE_C_DEFENSE_BUDGET |
1 |
master gate for the per-base-area defense caps | Common/Init/Init_CommonConstants.sqf:1553 |
WFBE_C_BASE_DEFENSE_STATICS_CAP |
25 |
max player-placed single statics per base area | Common/Init/Init_CommonConstants.sqf:1554 |
WFBE_C_DEFENSE_THREAT_MIN |
3 |
min enemy ground units in base range before the statics/mines threat gate fires | Common/Init/Init_CommonConstants.sqf:1555 |
WFBE_C_BASE_DEFENSE_MAX_AI |
40 |
max AI manning defenses per base area (manning-loop start gate) | Common/Init/Init_CommonConstants.sqf:1106 |
WFBE_C_BASE_DEFENSE_MANNING_RANGE |
250 |
manning distance passed through to ConstructDefense
|
Common/Init/Init_CommonConstants.sqf:1107 |
WFBE_C_BASE_AREA_RANGE |
250 |
base-area radius for the budget/cap logic | Common/Init/Init_CommonConstants.sqf:1121 |
Flagged as unproven-from-source in the repo itself:
-
Gun-on-lattice stability: whether the AA gun physically sits stable on the illuminant tower's deck at runtime — statics-on-structures are physics-fragile in A2 (settle/jitter). Explicit
NEEDS-BOX-VERIFYmarkers atServer/Init/Init_Defenses.sqf:616andInit_CommonConstants.sqf:1774-1775. The gunner itself is immune to the ladder problem (teleported in viamoveInGunner, stays always-active — no sim/distance gating, standing HARD rule). -
The
17.0DECK_Z estimate was never empirically confirmed; even the AUTOZ boundingBox read is a runtime-computed value not yet observed in a live RPT (Init_CommonConstants.sqf:1764-1766).
-
Server Composition Spawner Function Reference —
Server_ConstructPositioninternals alongsideCreateDefenseTemplate/BuildingDamaged/BuildingKilled -
Defense Category And Budget Reference — the budget categories and per-base caps
RequestDefenseenforces around this pipeline -
Static-Defense Manning Reference — the town-emplacement manning family (sibling of the base-defense
HandleDefenseloop) - Headless Client Delegation Target Selection — how the HC that mans the gun is chosen
-
Commander Positions Branch Audit — the historical
feat/commander-positionsbranch audit this pipeline landed from - Warfare Web Tools — the WDDM browser editor and the rest of the tool suite
- Construction And CoIn Systems Atlas — the wider commander-construction system the coin UI belongs to
- Defense Structures Catalog — the per-faction defense rosters the anchors extend
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