diff --git a/MTS - Mantis/MTS-110 - Mantis Link to A2A-Dispatcher/MTS-110 - Mantis Link to A2A-Dispatcher.lua b/MTS - Mantis/MTS-110 - Mantis Link to A2A-Dispatcher/MTS-110 - Mantis Link to A2A-Dispatcher.lua deleted file mode 100644 index 055f0cd500..0000000000 --- a/MTS - Mantis/MTS-110 - Mantis Link to A2A-Dispatcher/MTS-110 - Mantis Link to A2A-Dispatcher.lua +++ /dev/null @@ -1,38 +0,0 @@ -------------------------------------------------------------------------- --- MTS-110 - Mantis Link to A2A-Dispatcher -------------------------------------------------------------------------- --- Documentation --- --- MANTIS: https://flightcontrol-master.github.io/MOOSE_DOCS/Documentation/Functional.Mantis.html --- --- Note: As of Dec/20, MANTIS is WIP. Needs a recent build of Moose.lua > 16 Dec 20 --- for CONTROLLABLE:RelocateGroundRandomInRadius() to be available --- https://flightcontrol-master.github.io/MOOSE_DOCS/Documentation/CONTROLLABLE.RelocateGroundRandomInRadius.html -------------------------------------------------------------------------- --- Observe a set of SAM sites being attacked by F18 SEAD, A10 and Helicopters. --- HQ and EWR will randomly relocate between 30 and 60 mins --- SU-27 GCICAP Flights will start from Pashkovsky to help the SAMs -------------------------------------------------------------------------- --- Date: 17 Dec 2020 -------------------------------------------------------------------------- - -myredmantis = MANTIS:New("myredmantis","Red SAM","Red EWR","Red HQ","red",false) ---myredmantis:SetAutoRelocate(true, true) -- make HQ and EWR relocatable, if they are actually mobile in DCS! -myredmantis:Debug(false) ---myredmantis.verbose = false -myredmantis:Start() - --- link in AI_A2A_Dispatcher - -Red_GCI = AI_A2A_DISPATCHER:New(myredmantis.Detection) -- use existing detection object - -Red_GCI:SetTacticalDisplay(true) -Red_GCI:SetDefaultLandingAtRunway() -Red_GCI:SetDefaultTakeoffInAir() -Red_GCI:SetDisengageRadius(125000) -Red_GCI:SetDefaultOverhead(0.4) -Red_GCI:SetDefaultGrouping(2) -Red_GCI:SetGciRadius(125000) -Red_GCI:SetSquadron("Russian Tigers Sq1",AIRBASE.Caucasus.Krasnodar_Pashkovsky,"Red Interceptor",10) -Red_GCI:SetSquadronGci("Russian Tigers Sq1",900,1800) -Red_GCI:Start() -- never forget to use Start()!! diff --git a/MTS - Mantis/MTS-110 - Mantis Link to A2A-Dispatcher/MTS-110 - Mantis Link to A2A-Dispatcher.miz b/MTS - Mantis/MTS-110 - Mantis Link to A2A-Dispatcher/MTS-110 - Mantis Link to A2A-Dispatcher.miz deleted file mode 100644 index 8815c2e50c..0000000000 Binary files a/MTS - Mantis/MTS-110 - Mantis Link to A2A-Dispatcher/MTS-110 - Mantis Link to A2A-Dispatcher.miz and /dev/null differ diff --git a/MTS - Mantis/MTS-110 - Mantis Link to A2A-Dispatcher/pack.ps1 b/MTS - Mantis/MTS-110 - Mantis Link to A2A-Dispatcher/pack.ps1 deleted file mode 100644 index caa79efcaf..0000000000 --- a/MTS - Mantis/MTS-110 - Mantis Link to A2A-Dispatcher/pack.ps1 +++ /dev/null @@ -1,6 +0,0 @@ -$dir = split-path -parent $MyInvocation.MyCommand.Definition -cd $dir -$file = Split-Path $dir -leaf -cd "_unpacked" -. 7z a -r -y -tzip "..\$file.miz" * -cd .. diff --git a/MTS - Mantis/MTS-110 - Mantis Link to A2A-Dispatcher/unpack.ps1 b/MTS - Mantis/MTS-110 - Mantis Link to A2A-Dispatcher/unpack.ps1 deleted file mode 100644 index 0206e08131..0000000000 --- a/MTS - Mantis/MTS-110 - Mantis Link to A2A-Dispatcher/unpack.ps1 +++ /dev/null @@ -1,7 +0,0 @@ -$dir = split-path -parent $MyInvocation.MyCommand.Definition -cd $dir -$file = Split-Path $dir -leaf -Remove-Item .\_unpacked -Force -Recurse -md "_unpacked" -cd "_unpacked" -. 7z x -r -y "..\$file.miz" *