-
Notifications
You must be signed in to change notification settings - Fork 0
Structure Damage Reduction And Friendly Fire
Structure Damage Reduction and Friendly-Fire handleDamage Mechanic (the per-hit HP-loss rule for base structures)
Source-verified 2026-06-23 against master f8a76de3. Paths relative to Missions/[55-2hc]warfarev2_073v48co.chernarus/ unless noted. Arma 2 OA 1.64.
PR #66 / origin/claude/trello-debug-antitk@98440121c0468e13676c4de5fd2838edaab75167 is open draft branch-only evidence, not current stable behavior. GitHub reports mergeable=true / clean, but the PR base and local merge-base remain f8a76de349da6f8b871d079c828436c10afb221c; current master is origin/master@f39665d7950ddf14cb0bbfacb7ee1e40121e93b4, and local origin/master...origin/claude/trello-debug-antitk counts are 80 1. Base-relative payload is four maintained-root files / +10 / -0, clean under git diff --check f8a76de34..origin/claude/trello-debug-antitk, with no Modded_Missions, Tools or Extension payload.
In source Chernarus and maintained Vanilla, the branch adds if (WF_Debug) exitWith {}; inside WFBE_CL_FNC_OnFiredSatchel before the existing friendly-structure scan, deletion and StructureTK message path (Client_FNC_OnFired.sqf:12,16,35,41 on the branch). It also adds if (WF_Debug) exitWith {_dammages}; inside Server_BuildingHandleDamages.sqf before the own-side/sideEnemy nulling gate and enemy-hit HandleBuildingDamage call (Server_BuildingHandleDamages.sqf:4,9,11-17 on the branch). Current master keeps the same functions without the debug bypass (Client_FNC_OnFired.sqf:12,32,38; Server_BuildingHandleDamages.sqf:4,9-15), and WF_Debug defaults false in both maintained roots at initJIPCompatible.sqf:110, only becoming true under the existing debug condition at :112.
Before promotion, rebase or recheck the branch against post-B751b master and smoke both roots with WF_Debug=false and WF_Debug=true: normal mode should still delete same-side PipeBomb attempts near friendly structures, emit the existing StructureTK client message and null own-side base-structure damage; debug mode should bypass that client satchel guard and return the raw incoming damage from Server_BuildingHandleDamages without changing production defaults. Treat this as a debug/tester bypass only, not a general friendly-fire authority fix or a replacement for the WFBE_C_GAMEPLAY_HANDLE_FRIENDLYFIRE production semantics below.
Every constructed base structure (CoIn site, headquarters, deployed/mobile HQ) carries a server-side handleDamage event handler. Unlike a hit/killed EH, an Arma 2 handleDamage closure is a rule: its return value is the new damage state the engine applies for that hit-selection. WASP uses this to do two things at once:
-
Friendly-fire gate — if the shooter is on the same side as the building, or is
sideEnemy, the hit is nulled (false) and the structure takes no HP loss. -
Damage reduction — for a legitimate enemy hit, the incoming damage delta is divided by a reduction factor (default
6, or5for an unfolded HQ, or20for two specific cannon rounds), so bases soak far more fire than their raw armor would allow.
This is distinct from the BuildingDamaged "IsUnderAttack" notifier and the BuildingKilled scoring path, both of which are documented in Server Composition Spawner Function Reference — that page explicitly dead-ends at "Actual structure HP is governed by the handleDamage EH registered separately" (Server-Composition-Spawner-Function-Reference.md:296). This page is that separately-registered EH.
The closure receives the engine's standard 5-element array:
| Index | Element | Used by WASP closures |
|---|---|---|
select 0 |
unit (the structure) | yes — the building object |
select 1 |
selection (hit-point name) | no |
select 2 |
damage (incoming total for that selection) | yes — the new damage value |
select 3 |
source (the firer) | yes — for the side gate |
select 4 |
ammo (class string) | only the deployed-HQ closure passes it |
Param order confirmed in-repo at Common/Functions/Common_JetAADamage.sqf:12 (HandleDamage params: [unit, selection, damage, source, ammo]). The closure's return value is the damage the engine writes back.
Compiled to the global BuildingHandleDamages at Server/Init/Init_Server.sqf:25.
_building = _this select 0; // :3
_dammages = _this select 1; // :4
_origin = _this select 2; // :5
_ammo = _this select 3; // :6
_sideBuilding = _building getVariable "wfbe_side"; // :9
_side = side _origin; // :10
if (_side in [_sideBuilding, sideEnemy]) then { // :12
_dammages = false; // :13
} else {
_dammages = [_building, _dammages, _ammo] Call HandleBuildingDamage; // :15
};
_dammages // :18 — returned to the engineServer/Functions/Server_BuildingHandleDamages.sqf:1-18.
The structure's side is read from the object variable wfbe_side (:9). _origin is whichever element the wrapper closure put in _this select 2 (see the arg-mapping table below — in every real attachment this is the firer/source, not the engine's select 2).
The gate at line 12 nulls damage to false when _side in [_sideBuilding, sideEnemy]. Two cases pass:
_side of firer |
Result | Meaning |
|---|---|---|
equals _sideBuilding
|
_dammages = false |
own-side fire — base is invulnerable to friendlies |
sideEnemy |
_dammages = false |
the engine's neutral "renegade/no-side" placeholder (west/east/resistance/civilian are the four real sides; sideEnemy is the catch-all returned for objects with no resolved side) — these hits are also nulled |
Any other side (a genuine opposing faction) falls through to the else branch and goes to the divisor math. A nil/null _origin resolves side _origin to sideEnemy, so unattributed environmental damage is also nulled.
Note:
Server_BuildingHandleDamages.sqf:1declares'_side'twice in itsPrivatelist and never declares_ammo. Both are cosmetic (the duplicate is harmless;_ammoworks because it is assigned, not just read). No behavioral effect under A2.
Compiled to the global HandleBuildingDamage at Server/Init/Init_Server.sqf:35.
_building = _this select 0; // :2
_ammo = _this select 2; // :3
_redu = if (_building isKindOf "Warfare_HQ_base_unfolded")
then {5} // :6 — hardcoded HQ divisor
else {missionNamespace getVariable "WFBE_C_STRUCTURES_DAMAGES_REDUCTION"};
switch (_ammo) do { // :8
case "B_30mm_HE" :{_redu = 20}; // :9
case "B_23mm_AA" :{_redu = 20}; // :10
};
_difference = ((_this select 1) - (getDammage (_this select 0)))/(_redu); // :14
((getDammage (_this select 0))+_difference) // :15 — returnedServer/Functions/Server_HandleBuildingDamage.sqf:1-15.
Let dmg_in = _this select 1 (the proposed new damage from the wrapper) and dmg_now = getDammage building. The function returns:
new_damage = dmg_now + (dmg_in - dmg_now) / _redu
i.e. the structure only moves 1/_redu of the way toward the engine's proposed damage on each hit. With the default _redu = 6, a hit that would have brought the building to full destruction instead advances it 1/6 of the remaining gap — bases bleed HP roughly six times slower than their raw armor.
| Condition | _redu |
Source |
|---|---|---|
building isKindOf "Warfare_HQ_base_unfolded"
|
5 (hardcoded) |
Server_HandleBuildingDamage.sqf:6 |
_ammo == "B_30mm_HE" |
20 (override) |
Server_HandleBuildingDamage.sqf:9 |
_ammo == "B_23mm_AA" |
20 (override) |
Server_HandleBuildingDamage.sqf:10 |
| any other structure / ammo |
WFBE_C_STRUCTURES_DAMAGES_REDUCTION (= 6) |
Server_HandleBuildingDamage.sqf:6 |
The ammo switch runs after the HQ check, so a B_30mm_HE/B_23mm_AA round against an unfolded HQ overrides the 5 to 20. A higher _redu means more reduction (less damage applied), so the two cannon overrides actually make those rounds less effective against structures, not more — a deliberate balance choice for autocannon spam (the BMP-2's B_30mm_HE and the ZU-23 / Tunguska B_23mm_AA).
WFBE_C_GAMEPLAY_HANDLE_FRIENDLYFIRE (Common/Init/Init_CommonConstants.sqf:613, default 1) decides which closure the construction code attaches:
if ((missionNamespace getVariable "WFBE_C_GAMEPLAY_HANDLE_FRIENDLYFIRE") > 0) then {
_site addEventHandler ['handleDamage',{[_this select 0,_this select 2,_this select 3] Call BuildingHandleDamages}];
} else {
_site addEventHandler ['handleDamage',{[_this select 0, _this select 2] Call HandleBuildingDamage}];
};-
FF on (default): attaches the FF-aware wrapper that calls
BuildingHandleDamages(side gate → divisor). -
FF off (raw fallback): attaches a closure that calls
HandleBuildingDamagedirectly, bypassing the side gate entirely — every side (including friendlies) can damage the base, but the divisor reduction still applies.
The FF-on wrapper passes the engine's [unit, damage, source] as [select 0, select 2, select 3]. Inside Server_BuildingHandleDamages these become _building (select 0), _dammages (select 1), _origin (select 2) — so _origin correctly receives the source, and _ammo (select 3) receives whatever the wrapper put at index 3.
| Attachment site | Args passed to BuildingHandleDamages
|
_ammo inside the fn |
Per-ammo override reachable? |
|---|---|---|---|
Construction_SmallSite.sqf:143 |
[sel 0, sel 2, sel 3] (3 elements) |
nil (index 3 out of range) |
No |
Construction_MediumSite.sqf:183 |
[sel 0, sel 2, sel 3] |
nil |
No |
Construction_HQSite.sqf:106 (mobile HQ) |
[sel 0, sel 2, sel 3] |
nil |
No |
Construction_HQSite.sqf:38 (deployed HQ) |
[sel 0, sel 2, sel 3, sel 4] (4 elements) |
the real ammo string | Yes |
Server_HandleBuildingRepair.sqf:64 (re-attach) |
[sel 0, sel 2, sel 3] |
nil |
No |
Because four of the five attachments pass only three elements, the wrapper's _this select 3 (which becomes the function's _ammo) is out of range and resolves to nil. The B_30mm_HE / B_23mm_AA overrides in Server_HandleBuildingDamage.sqf:8-11 therefore only ever match for the deployed-HQ structure (Construction_HQSite.sqf:38, which alone forwards _this select 4). For CoIn sites and the mobile HQ, those rounds fall through to the default _redu. This is a latent inconsistency, not a crash — switch (nil) simply matches no case under A2.
| File:line | Structure | Toggle-gated? | Closure target |
|---|---|---|---|
Server/Construction/Construction_SmallSite.sqf:142-146 |
small CoIn site | yes (>0) |
BuildingHandleDamages / else HandleBuildingDamage
|
Server/Construction/Construction_MediumSite.sqf:182-186 |
medium CoIn site | yes |
BuildingHandleDamages / else HandleBuildingDamage
|
Server/Construction/Construction_HQSite.sqf:38 |
deployed HQ | no (unconditional) |
BuildingHandleDamages (4-arg, passes ammo) |
Server/Construction/Construction_HQSite.sqf:106 |
mobilized MHQ | no (unconditional) |
BuildingHandleDamages (3-arg) |
Server/Functions/Server_HandleBuildingRepair.sqf:63-65 |
rebuilt site (repair path) | yes |
BuildingHandleDamages / else inline raw closure |
Construction_HQSite.sqf:38 and :106 attach the FF-aware BuildingHandleDamages closure with no WFBE_C_GAMEPLAY_HANDLE_FRIENDLYFIRE guard — so the headquarters always uses the side gate regardless of the toggle. (A toggle-gated HQ variant exists but is commented out at Server/Init/Init_Server.sqf:568 and Server/Functions/Server_MHQRepair.sqf:42; neither runs.)
When a destroyed structure is rebuilt, Server_HandleBuildingRepair.sqf re-spawns the object and must re-register the EH (event handlers do not survive the object being replaced). Its FF-off fallback is a different raw closure than the construction sites use:
_site addEventHandler ['handleDamage',{getDammage (_this select 0)+((_this select 2)/(_redu))}]; // :66Server/Functions/Server_HandleBuildingRepair.sqf:66. This inline closure captures _redu from the enclosing repair scope, where it is declared in the function's Private list (:1) and set at :9 (5 for an unfolded HQ, else WFBE_C_STRUCTURES_DAMAGES_REDUCTION). So the FF-off repair path applies the divisor but has no per-ammo override and no side gate — it adds damage/_redu to current damage directly. The FF-on repair path (:64) is identical to the construction-site wrappers.
| Constant | Default | Meaning | Source |
|---|---|---|---|
WFBE_C_GAMEPLAY_HANDLE_FRIENDLYFIRE |
1 (on) |
>0 selects the FF-aware closure; 0 selects the raw fallback |
Common/Init/Init_CommonConstants.sqf:794 |
WFBE_C_STRUCTURES_DAMAGES_REDUCTION |
6 |
divisor for non-HQ structures (current damage given / x; 1 = normal) |
Common/Init/Init_CommonConstants.sqf:876 |
| HQ divisor | 5 |
hardcoded for Warfare_HQ_base_unfolded; not a tunable |
Server/Functions/Server_HandleBuildingDamage.sqf:6 |
B_30mm_HE / B_23mm_AA divisor |
20 |
hardcoded per-ammo override (deployed HQ only, see arg-mapping table) | Server/Functions/Server_HandleBuildingDamage.sqf:9-10 |
| EH | Fires on | Effect | Documented in |
|---|---|---|---|
handleDamage (this page) |
every damage selection | returns the actual new HP/damage value | here |
hit → BuildingDamaged
|
each registered hit | only raises the "IsUnderAttack" side alert (throttled by wfbe_structure_lasthit); applies no HP |
Server Composition Spawner Function Reference (:300) |
killed → BuildingKilled
|
structure destroyed | scoring / bounty / HeadHunter |
Server Composition Spawner Function Reference (:311 ff.) |
All three EHs are attached side-by-side in each construction site (e.g. Construction_SmallSite.sqf:141 hit, :142-146 handleDamage, :147 killed). The hit notifier reads a post-reduction damage delta but never writes it; the handleDamage rule on this page is the only one of the three that changes structure HP.
-
Server Composition Spawner Function Reference — the
BuildingDamaged"IsUnderAttack" notifier andBuildingKilledscoring; dead-ends at thehandleDamageEH documented here -
Commander HQ Lifecycle Atlas — HQ deploy/mobilize,
Warfare_HQ_base_unfolded, and the HQ-killed path that this damage rule feeds - Construction And CoIn Systems Atlas — how CoIn sites are constructed and where their EHs are wired
- Kill And Score Pipeline — the unit/vehicle damage and kill-credit chain that parallels this structure rule
-
Mission Tunable Constants Catalog —
WFBE_C_STRUCTURES_DAMAGES_REDUCTION,WFBE_C_GAMEPLAY_HANDLE_FRIENDLYFIRE, and the rest of the gameplay-tuning constants
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