mirror of
https://github.com/FlightControl-Master/MOOSE_MISSIONS.git
synced 2026-08-16 05:32:49 +00:00
9 lines
393 B
Lua
9 lines
393 B
Lua
|
|
local FollowGroupSet = SET_GROUP:New():FilterCategories("plane"):FilterCoalitions("blue"):FilterPrefixes("Follow"):FilterStart()
|
|
FollowGroupSet:Flush()
|
|
local LeaderUnit = UNIT:FindByName( "Leader" )
|
|
local LargeFormation = AI_FORMATION:New( LeaderUnit, FollowGroupSet, "Left Line Formation", "Briefing" )
|
|
LargeFormation:FormationLeftLine( 0, 0, 250, 250 )
|
|
LargeFormation:__Start( 1 )
|
|
|