-
Notifications
You must be signed in to change notification settings - Fork 0
Supply Mission Architecture
Page ownership: this page owns the supply-mission flow, cooldown/JIP pattern and state-owner map. Deep-review findings DR-18 owns the exact cooldown casing defect evidence; Supply mission authority cleanup owns the implementation-ready patch shape.
Supply missions are one of the most cross-cutting systems in the mission. They touch client actions, skill roles, town cooldown state, server tracking loops, side supply, commander/team funds on supply-heli/cash-run branches, player rewards, public variables and buy-menu affordances.
Authority summary: the live path is still client-authored at start and partly client-rewarded at completion. Client-side checks are affordance gates; the server tracks return-to-base and writes side supply, but today it accepts client-stamped SupplyFromTown / SupplyAmount state and the client completion message path handles personal cash/score reward presentation. The completion message channel is therefore gameplay-relevant, not cosmetic: supplyMissionCompleted.sqf:24-34 broadcasts amount/player data, and supplyMissionCompletedMessage.sqf:11-23 locally grants player funds and sends a score-change request when the payload player matches the local player.
Current-source scope: rechecked 2026-06-24 against repo docs branch HEAD@915f4441c1c9 (source unchanged from 15563691 for checked supply paths), current stable/B74.1 origin/master@f8a76de34, B74.2 origin/claude/b74.2-aicom@21b62b04, current B69 origin/claude/b69@8d465fce, adjacent B74 origin/claude/b74-aicom-spend@b23f557f, direct current Miksuu upstream b8389e748243, origin/perf/quick-wins@0076040f and historical release commits a96fdda2 / 7ff18c49. The checked docs branch supply-start files are unchanged from the older 4bd37b98 and 8a6695b8 anchors and remain truck-only with no SupplyByHeli hits. Current stable/B74.1, B74.2, B69 and adjacent B74 carry the supply-heli/cash-run shape in both maintained roots; current Miksuu and perf remain truck-only. Current origin exposes no live release/* or supply feature heads, so release evidence here is historical until a release ref returns or is rechecked.
Use this table before asking "is supply fixed?" The answer depends on branch, maintained root and whether the question is scan narrowing, cooldown casing, dead-twin cleanup, heli support or authority hardening.
| Scope | Command-center scan | Cooldown key | Dead twin supplyMissionActive.sqf
|
Heli/cash-run state | Development meaning |
|---|---|---|---|---|---|
Docs/source Chernarus HEAD@915f4441c1c9 (unchanged from 15563691) |
Truck-only scan is narrowed to nearestObjects [..., ["Base_WarfareBUAVterminal"], 80] in supplyMissionStarted.sqf:25-28; 8 m nearby-player scan remains broad by design at :44. |
Still split: Common/Init/Init_Town.sqf:35 seeds lowercase lastSupplyMissionRun, while isSupplyMissionActiveInTown.sqf:8 reads LastSupplyMissionRun. |
Still compiled as WFBE_SE_FNC_SupplyMissionActive in Init_Server.sqf:81; live path is supplyMissionStarted.sqf. |
No SupplyByHeli hits in the checked maintained roots. |
Truck scan sub-step is docs/source patched; authority, cooldown casing, dead-twin retirement, player-object rescan and smoke remain open. |
Maintained Vanilla Takistan HEAD@915f4441c1c9 (unchanged from 15563691) |
Same narrowed truck-only scan at supplyMissionStarted.sqf:25-28 and same broad nearby-player scan at :44. |
Same lowercase/uppercase split. | Same compiled dead twin. | No SupplyByHeli hits. |
Propagated for scan narrowing and player-list indexing only; not release-complete without Arma smoke. |
Current stable/B74.1 origin/master@f8a76de34; B74.2 origin/claude/b74.2-aicom@21b62b04; B69/B74 shaped refs |
Heli-aware narrowed scan in both maintained roots: heli flag at supplyMissionStarted.sqf:7, terminal guard at :55, typed truck/heli scan at :61, broad nearby-player scan at :83. B74.2 does not change these start-handler anchors. |
Fixed in maintained roots: Common/Init/Init_Town.sqf:35 seeds LastSupplyMissionRun; isSupplyMissionActiveInTown.sqf:8 reads with default 0. |
Removed/commented in Init_Server.sqf:105 on current source Chernarus and :99 on maintained Vanilla; supplyMissionActive.sqf and checkCCProximity.sqf are absent from both maintained roots. |
SupplyByHeli is set at supplyMissionStart.sqf:80, guarded Killed handler setup uses wfbe_supply_killed_eh_set at supplyMissionStarted.sqf:15-17, and B74.1 reads/clears heli state at supplyMissionCompleted.sqf:26,:47 in source Chernarus and :26,:44 in Vanilla. B74.2 source Chernarus line-drifts completion to :29,:50; Vanilla remains :26,:44. |
Current stable/B74-shaped refs carry the advanced branch shape in both maintained roots, but server-owned mission state, duplicate-start guard, cargo validation, friendly-CC checks and Arma truck/heli smoke remain pending. |
Historical release commits a96fdda2 / 7ff18c49
|
Both local release-line commits have the heli-aware typed scan in both maintained roots. a96fdda2 uses supplyMissionStarted.sqf:7,53,59,81; 7ff18c49 uses :7,52,58,80. |
a96fdda2 seeds LastSupplyMissionRun at Common/Init/Init_Town.sqf:35 and reads with default 0 at isSupplyMissionActiveInTown.sqf:8. |
a96fdda2 comments the dead compile at Init_Server.sqf:81; the dead twin files are absent. |
a96fdda2 sets SupplyByHeli at supplyMissionStart.sqf:80, reads it at supplyMissionCompleted.sqf:26, clears it at :44 and includes cash-run state at :29-33. |
Historical release evidence has maintained-root parity for the static supply scan/cooldown/dead-twin cleanup shape, but runtime smoke and broader authority cleanup remain pending; do not call it a current release head. |
Miksuu b8389e74 and origin/perf/quick-wins 0076040f
|
Broad 80 m command-center scan remains: nearestObjects [..., [], 80] at supplyMissionStarted.sqf:28 in Chernarus and Vanilla. |
Same lowercase/uppercase split as docs/source. | Compiled dead twin remains at Init_Server.sqf:81. |
No SupplyByHeli. |
Upstream/perf have not rescued the scan, cooldown or dead-twin cleanup; re-audit before porting any stable/release behavior back. |
- SpecOps receives the supply action in
Client/Module/Skill/Skill_Apply.sqfwhen role/module conditions are met. - The action runs
Client/Module/supplyMission/supplyMissionStart.sqf. - Client finds the closest friendly town with
GetClosestFriendlyLocation. - Client asks server whether that town is cooling down by sending
WFBE_Client_PV_IsSupplyMissionActiveInTown. - Server
isSupplyMissionActiveInTown.sqfchecksLastSupplyMissionRunagainstWFBE_CO_VAR_SupplyMissionRegenIntervaland broadcastsWFBE_Server_PV_IsSupplyMissionActiveInTown. - Client stores cooldown on the town as
supplyMissionCoolDownEnabled. - If allowed, client validates cursor target against hardcoded supply-truck classes and distance < 50m.
- Client writes object variables on the vehicle:
SupplyFromTownandSupplyAmount. The live amount isfloor((town supplyValue) * WFBE_C_ECONOMY_SUPPLY_MISSION_MULTIPLIER * supplyUpgradeModifier)(supplyMissionStart.sqf:61; multiplier20atInit_CommonConstants.sqf:724). - Client broadcasts
WFBE_Client_PV_SupplyMissionStarted. - Server
supplyMissionStarted.sqfstarts a loop against the vehicle object, checking for command center proximity within 80m with a narrowedBase_WarfareBUAVterminalobject scan. - On match, server broadcasts
WFBE_Server_PV_SupplyMissionCompleted. - Server
supplyMissionCompleted.sqfreads the vehicle object variables, callsChangeSideSupply, clears the vehicle vars and broadcasts completion message. - Client
supplyMissionCompletedMessage.sqfdisplays the message and requests score reward.
| State | Owner | Notes |
|---|---|---|
LastSupplyMissionRun |
town object/server | Cooldown anchor. |
supplyMissionCoolDownEnabled |
town object/client | Client-side affordance for map/action feedback. |
SupplyFromTown |
supply vehicle object | Source town object. |
SupplyAmount |
supply vehicle object | Payload amount. Cleared on completion. |
WFBE_SE_PLAYERLIST |
server | Used to resolve real player near/inside supply vehicle. Source Chernarus and maintained Vanilla Takistan now fix UID row replacement indexing, but disconnect pruning/stale object cleanup remains open. |
-
supplyMissionStart.sqfin the docs checkout uses duplicated hardcoded supply-truck classname arrays. - Start is client-authored: the server start handler should revalidate sender ownership, vehicle class, source town, cooldown and duplicate-start state before accepting future hardened starts.
- The client asks for cooldown and immediately reads local town state; timing/race behavior depends on the server response arriving quickly enough.
- Cooldown variable casing is branch-scoped: docs/source, Miksuu and perf still seed
lastSupplyMissionRunwhile the server reads/writesLastSupplyMissionRun; current stable/B74.1, B74.2, B69, adjacent B74 and historical release-line refs seedLastSupplyMissionRunand read it with default0. -
supplyMissionStarted.sqfloops until the vehicle dies; it should avoid creating duplicate tracking loops for the same loaded vehicle. - Completion trusts object variables on the supply vehicle, so any feature that reuses those vars must clear them reliably.
- Completion reward is split: the server mutates side supply, while the client completion message path grants personal funds locally and requests score reward. The personal cash award is
_reward(supplyMissionCompletedMessage.sqf:16-21): equal to_supplyAmountfor truck runs, orround(_supplyAmount * WFBE_C_SUPPLY_HELI_REWARD_MULT)(×1.25) for heli deliveries — not the staleSTR_Supplies_2stringtable claim of4 x actual value. Because the cash/score side effect happens in the client handler (supplyMissionCompletedMessage.sqf:11-23), hardening must treatWFBE_Server_PV_SupplyMissionCompletedMessageas an authority surface, not just a notification. - Supply request/response caches are mutable local state.
Client_ReceiveSupplyValue.sqf:1-8writesmissionNamespace["wfbe_supply_%side"],townSupplyStatus.sqf:1-8writessupplyMissionCoolDownEnabledon town objects, andCommon_GetSideSupply.sqf:13-18,26-31,39-44waits on those local values with no timeout. Keep local cache poisoning and unbounded waits in mind before adding more client-side economy gates on top of supply reads. - Player resolution depends on
WFBE_SE_PLAYERLISTand proximity/driver checks; stale rows can survive disconnects until the lifecycle cleanup lane is patched. A 2026-06-04 scout also found an in-loop persistence edge in the live handler:_playerObjectis initialized from the start payload atsupplyMissionStarted.sqf:3-6, can be reassigned from proximity/driver matches at:39-53, and then_match = !(isNull _playerObject)at:61without resetting_playerObjectat the top of each loop/row scan. A previous valid match can therefore remain meaningful after local proximity context changes unless the loop explicitly rescans fromobjNulleach iteration.
Claude DR-39 split the Perf/JIP status cleanly. The table below is current-docs/source oriented; use Current Branch Matrix for release/stable/upstream scope.
| Item | Status | Development note |
|---|---|---|
supplyMissionActive.sqf |
Dead twin in docs/source, Miksuu and perf; current stable/B74.1 f8a76de34 and B74.2 21b62b04 comment the removed compile at Init_Server.sqf:105 on source Chernarus and :99 on maintained Vanilla, while historical a96fdda2 comments it at :81. Current stable/B74-shaped refs and historical release remove supplyMissionActive.sqf / checkCCProximity.sqf in the maintained roots. It is compiled as WFBE_SE_FNC_SupplyMissionActive wherever it remains, but the live path is supplyMissionStarted.sqf, which self-registers the WFBE_Client_PV_SupplyMissionStarted handler. |
Remove the dead compile/function or keep it explicitly marked as retired; do not patch it as the live implementation. |
| Command-center detection loop | Docs/source and current stable are patched in the live handler, with different branch shapes: truck-only typed scan in docs/source and heli-aware typed scan in current stable. Current Miksuu and perf still broad-enumerate then post-filter. | Smoke delivery at command centers and no-completion near unrelated objects; authority cleanup remains separate. |
| Cooldown JIP behavior | Pull-based and useful, but casing/race-sensitive. Clients ask WFBE_Client_PV_IsSupplyMissionActiveInTown; server computes from LastSupplyMissionRun; clients store the answer locally. |
Keep the server accept/reject decision authoritative. The response is broadcast to all clients today, not targeted to the requester, and the starter reads a local cache immediately after requesting it. |
| Player-object list and object match | Partial source and maintained Vanilla Takistan patch. playerObjectsList.sqf had a broken loop-index counter (fixed in master): _i was previously initialised inside the forEach block and reset each iteration; it is now initialised outside the loop so _arrayPosMatch correctly captures the true array position of the matching UID. The server also does not prune rows on disconnect. In the live completion loop, _playerObject is not reset before each proximity/driver scan (supplyMissionStarted.sqf:3-6,39-53,61-65), so stale matched player state is an additional smoke target. |
Add disconnect cleanup, reset/rescan object matching per loop, and smoke same-UID reconnect plus supply completion lookup. |
The old PR #1 notes are now historical branch-review context. Current stable/B74.1 origin/master@f8a76de34, B74.2 origin/claude/b74.2-aicom@21b62b04, B69 and adjacent B74 carry the supply-heli/cash-run implementation in both maintained roots, including guarded wfbe_supply_killed_eh_set setup in the live start handler (supplyMissionStarted.sqf:15-17), SupplyByHeli set at supplyMissionStart.sqf:80, heli reward constant WFBE_C_SUPPLY_HELI_REWARD_MULT (B74.1 source Chernarus Init_CommonConstants.sqf:550, maintained Vanilla :352; B74.2 source Chernarus :563, maintained Vanilla :352), and cash-run completion state. B74.1 reads/clears heli state at source Chernarus supplyMissionCompleted.sqf:26,:47 and Vanilla :26,:44; B74.2 source Chernarus line-drifts to :29,:50 while Vanilla remains :26,:44. Historical release a96fdda2 remains release-line evidence. The trust model is still the same client-started, server-completed object-var flow.
| Area | Docs/Miksuu/perf truck-only shape | Stable/release supply-heli shape |
|---|---|---|
| Vehicle type | Truck-only hardcoded class checks. | Centralized WFBE_C_SUPPLY_TRUCK_TYPES, WFBE_C_SUPPLY_HELI_TYPES and WFBE_C_SUPPLY_VEHICLE_TYPES. |
| Start authority | Client chooses eligible vehicle, stamps SupplyFromTown / SupplyAmount, then notifies server. |
Same trust model, plus SupplyByHeli and heli class/upgrade gates. |
| Completion authority | Server loop verifies command-center proximity, then trusts the vehicle object vars. | Same server-completion pattern; reward path branches for truck, heli and cash run. |
| Reward | Side supply on completion; player message/score path follows completion broadcast. | Heli rewards add the air bonus; heli deliveries at Aircraft Factory upgrade 4 become cash runs that pay commander team funds when a commander exists. |
| State cleanup | Completion clears SupplyAmount and SupplyFromTown. |
Completion clears SupplyAmount, SupplyFromTown and SupplyByHeli (supplyMissionCompleted.sqf:42-44 on stable/release). |
| Cooldown | Docs/source, Miksuu and perf keep the lowercase/uppercase DR-18 split: towns seed lastSupplyMissionRun, while the server reads/writes LastSupplyMissionRun. |
Same ownership pattern, but current stable/B74-shaped refs and historical release-line evidence seed LastSupplyMissionRun and read it with default 0. |
| AI logistics | Broken/deferred UpdateSupplyTruck / missing supplytruck.fsm. |
Still deferred; PR covers player-run vehicles, not autonomous AI-flown supply helicopters. |
| Runtime risk | Truck flow still needs server-owned cargo/reward hardening and smoke. | Repeated load/deliver/destroy, truck/heli command-center delivery, no-completion near unrelated objects, cash-run semantics and JIP cooldown behavior still need Arma smoke on the target branch. |
- Keep supply-capable vehicle classes in one constant source of truth.
- Add an explicit loaded/unloaded state variable to prevent duplicate tracking loops; keep or deliberately extend the guarded
Killedhandler shape on supply-heli branches. - Split client affordance, server validation and reward calculation into documented helper functions.
- Keep the pull-based cooldown request/response pattern for JIP-visible state, but target responses where possible.
- Add terminal timeouts/fallback behavior to
Common_GetSideSupplyrequest waits so lost or blockedSUPPLY_VALUE_REQUESTEDresponses cannot hang every caller on that client. - Command-center scan narrowing is branch-split: docs/source uses the truck-only typed terminal scan, current stable uses the heli-aware typed scan, historical release commits preserve the release-line shape, and current Miksuu/perf still use the broad scan. Keep Arma smoke evidence on Supply mission scan narrowing and Testing workflow.
- Redesign autonomous AI logistics separately from the broken
UpdateSupplyTruckruntime path (Init_Server.sqf:36,383; filename/log labelAI_UpdateSupplyTruck.sqf) and missingsupplytruck.fsm.
Previous: Economy/towns/supply | Next: Supply mission authority cleanup
Main map: Home | Fast path: Quickstart | Agent file: agent-context.json
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