mirror of
https://github.com/FlightControl-Master/MOOSE_MISSIONS.git
synced 2026-08-30 22:17:54 +00:00
10 lines
386 B
Lua
10 lines
386 B
Lua
|
|
local FollowGroupSet = SET_GROUP:New():FilterCategories( { "plane", "ship" } ):FilterCoalitions( "red" ):FilterPrefixes( { "Escort", "Ship Defense" } ):FilterStart()
|
|
|
|
local LeaderUnit = UNIT:FindByName( "Leader" )
|
|
local Escort = AI_ESCORT:New( LeaderUnit, FollowGroupSet, "Escort Attack", "Briefing" )
|
|
Escort:FormationTrail( 750, 750 , 0 )
|
|
Escort:MenusAirplanes()
|
|
Escort:__Start( 1 )
|
|
|