MapTunnelNetwork
Map tunnel network
Usage: Used in 8 task(s)
Lua Implementation
-- Map Tunnel Network
function execute(params)
local currentLoc = this:getLocation3D()
-- Add current location to tunnel map
local tunnelMap = this:getStateProperty("TunnelMap") or {}
table.insert(tunnelMap, {
location = currentLoc,
timestamp = vrf.getSimulationTime(),
connections = params.connections or {}
})
this:setStateProperty("TunnelMap", tunnelMap)
return true
end
Tasks Using This Action (8)
Chokepoint Denial (Bridges, Tunnels)
Deep Strike/Interdiction (AIR DOMAIN)
Tunnel Entrance Detection
Subterranean/Tunnel Operations (LAND DOMAIN)
Underground Network Mapping
Subterranean/Tunnel Operations (LAND DOMAIN)
Entry and Clearance Operations
Subterranean/Tunnel Operations (LAND DOMAIN)
Booby Trap Detection and Neutralization
Subterranean/Tunnel Operations (LAND DOMAIN)
Tunnel Denial (Flooding, Demolition)
Subterranean/Tunnel Operations (LAND DOMAIN)
Hostage Rescue Operations
Subterranean/Tunnel Operations (LAND DOMAIN)
Underground Command Post Targeting
Subterranean/Tunnel Operations (LAND DOMAIN)