Skip to content

GUER Barrel Bomb Call In

grok-main-07162211-1 edited this page Jul 17, 2026 · 1 revision

GUER Barrel Bomb Call-In

Source pass: 2026-07-17 against rayswaynl/a2waspwarfare origin/master (Chernarus mission root). Kill-gated heli-delivered strike for playable GUER.

What It Is

A resistance player support call-in: designate a map point, pay cash, and a helicopter delivers a single barrel bomb (not a barrage). Unlock is kill-tier gated (default 60 cumulative GUER kills). Client designation mirrors the GUER mortar-strike pattern (onMapSingleClick); the server re-validates and flies the asset via Support_GuerHeliDrop.sqf.

Flags And Dials

Constant Default (master) Meaning
WFBE_C_GUER_HELIBOMB_ENABLE 1 Master on/off; 0 = byte-identical off
WFBE_C_GUER_KILLTIER_HELIBOMB 60 Cumulative GUER kills to unlock
WFBE_C_GUER_HELIBOMB_COST 3000 Cash debit per successful call
WFBE_C_GUER_HELIBOMB_COOLDOWN 900 Seconds between calls (per player)
WFBE_C_GUER_HELIBOMB_RANGE 1600 Max designation range from caller (m)
WFBE_C_GUER_HELIBOMB_SHELLS 1 Ordnance drops per call (single bomb)
WFBE_C_GUER_HELIBOMB_SPREAD 15 ±2D impact offset (m)
WFBE_C_GUER_HELIBOMB_RADIUS 60 Kill-credit / lethal snapshot radius (m)

Also requires playable GUER posture (WFBE_C_GUER_PLAYERSIDE) for the scroll action attachment path.

Unlock text in support/stipend surfaces: "Barrel Bomb unlocked — heli-delivered call-in strike" at the helibomb kill tier (see Support_GuerHeliDrop.sqf kill-tier table and stipend unlocks).

Player Flow

  1. Action added to the player's Man body (Common/Init/Init_Unit.sqf / respawn handler) when GUER playable and conditions allow.
  2. Scroll action condition re-checks enable flag, kill tier (WFBE_GUER_PLAYER_KILLS family), and town-center proximity helper WFBE_CL_FNC_CanUseTownCenterBarrelBomb (friendly/neutral town center).
  3. Client/Action/Action_GuerHeliBombCall.sqf:
    • per-player cooldown (wfbe_helibomb_last);
    • open map + one-shot onMapSingleClick designation;
    • range check against WFBE_C_GUER_HELIBOMB_RANGE;
    • local orange designation marker for the caller;
    • sends RequestSpecial for server case guer-heli-bomb (via existing specials router).
  4. Server (Server_HandleSpecial + Server/Support/Support_GuerHeliDrop.sqf): re-validates kill tier and funds, debits, spawns heli group, creates a short global warning marker at release time (mil_destroy family, name wfbe_guerhelibomb_<tick>), then delivers ordnance.

Cooldown stamps on successful designation, not on opening the action — aborting map click does not burn the cooldown.

Markers

Marker Scope When
Caller designation local On valid map click
Incoming / destroy global Near release in Support_GuerHeliDrop.sqf (~line 113+) — short warning; not multi-minute spoiler at call time

Fresh-eyes note: confirm global marker deletion path in the same support file or GC before assuming no marker leak under spam.

Not Director Volume

This is a player-funded special, not GUER Director V2 autonomous volume. It does not replace garrison conservation rules.

Continue Reading

Edit summary (task wasp-wiki-pages-wave-20260717)

New page. Confidence: high on defaults and client designation shape; medium on full server HandleSpecial case line numbers (routed by token name).

Sidebar

Clone this wiki locally