mirror of
https://github.com/iTracerFacer/DCS_MissionDev.git
synced 2025-12-03 04:14:46 +00:00
9 lines
391 B
Lua
9 lines
391 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 Wing Formation", "Briefing" )
|
|
LargeFormation:FormationLeftWing( 500, 50, 0, 250, 250 )
|
|
LargeFormation:__Start( 1 )
|
|
|