MOOSE/Test Missions/lua/MOOSE_Escort_Test_Follow.lua
FlightControl 6834a5f6ea Completed a first version of an escort follow function!!!
And made a test mission for it.
2016-03-29 09:37:32 +02:00

20 lines
502 B
Lua

Include.File( "Mission" )
Include.File( "Client" )
Include.File( "Escort" )
do
local EscortClient = CLIENT:New( "Lead Helicopter", "Fly around and observe the behaviour of the escort helicopter" )
local EscortGroup = GROUP:NewFromName( "Escort Helicopter" )
local Escort = ESCORT:New( EscortClient, EscortGroup, "Escort Test" )
end
-- MISSION SCHEDULER STARTUP
MISSIONSCHEDULER.Start()
MISSIONSCHEDULER.ReportMenu()
MISSIONSCHEDULER.ReportMissionsHide()
env.info( "Test Mission loaded" )