mirror of
https://github.com/FlightControl-Master/MOOSE.git
synced 2025-10-29 16:58:06 +00:00
18 lines
540 B
Lua
18 lines
540 B
Lua
|
|
local Mission = MISSION:New( "SEAD Mission", "High", "SEAD Mission Briefing", coalition.side.RED )
|
|
local Scoring = SCORING:New( "SEAD Test" )
|
|
Mission:AddScoring( Scoring )
|
|
|
|
|
|
local FACGroup = GROUP:FindByName( "FAC" )
|
|
|
|
local FACDetection = DETECTION_UNITGROUPS:New( FACGroup, 1000, 250 )
|
|
|
|
local SEAD_Attack = SET_GROUP:New():FilterCoalitions( "red" ):FilterPrefixes( "SEAD Attack" ):FilterStart()
|
|
|
|
|
|
local CommandCenter = GROUP:FindByName( "HQ" )
|
|
|
|
local TaskAssign = TASK_DISPATCHER:New( Mission, CommandCenter, SEAD_Attack, FACDetection )
|
|
|