+
+
+
+
+
Module ATC_Ground
+
+
Functional -- The ATC_GROUND classes monitor airbase traffic and regulate speed while taxiing.
+
+
+
+
+
+
Contributions: Dutch Baron - Concept & Testing
+
Author: FlightControl - Framework Design & Programming
+
+
+
+
+
Global(s)
+
+
+ | ATC_GROUND |
+
+ Base class for ATC_GROUND implementations.
+ |
+
+
+ | ATC_GROUND_CAUCASUS |
+
+ATCGROUNDCAUCASUS, extends #ATC_GROUND
+
+
+
+The ATCGROUNDCAUCASUS class monitors the speed of the airplanes at the airbase during taxi.
+ |
+
+
+ | ATC_GROUND_NEVADA |
+
+ATCGROUNDNEVADA, extends #ATC_GROUND
+
+
+
+The ATCGROUNDNEVADA class monitors the speed of the airplanes at the airbase during taxi.
+ |
+
+
+ | ATC_GROUND_NORMANDY |
+
+ATCGROUNDNORMANDY, extends #ATC_GROUND
+
+
+
+The ATCGROUNDNORMANDY class monitors the speed of the airplanes at the airbase during taxi.
+ |
+
+
+ | SSB |
+
+
+ |
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Global(s)
+
+-
+
+ #ATC_GROUND
+
+ATC_GROUND
+
+
+-
+
+
Base class for ATC_GROUND implementations.
+
+
+
+
+-
+
+ #ATC_GROUND_CAUCASUS
+
+ATC_GROUND_CAUCASUS
+
+
+-
+
+
ATCGROUNDCAUCASUS, extends #ATC_GROUND
+
+
+
+The ATCGROUNDCAUCASUS class monitors the speed of the airplanes at the airbase during taxi.
+
+
+The pilots may not drive faster than the maximum speed for the airbase, or they will be despawned.
+
+The maximum speed for the airbases at Caucasus is 50 km/h.
+
+The pilot will receive 3 times a warning during speeding. After the 3rd warning, if the pilot is still driving
+faster than the maximum allowed speed, the pilot will be kicked.
+
+Different airbases have different maximum speeds, according safety regulations.
+
+Airbases monitored
+
+The following airbases are monitored at the Caucasus region.
+Use the AIRBASE.Caucasus enumeration to select the airbases to be monitored.
+
+
+ - ´AIRBASE.Caucasus.Anapa_Vityazevo´
+ - ´AIRBASE.Caucasus.Batumi´
+ - ´AIRBASE.Caucasus.Beslan´
+ - ´AIRBASE.Caucasus.Gelendzhik´
+ - ´AIRBASE.Caucasus.Gudauta´
+ - ´AIRBASE.Caucasus.Kobuleti´
+ - ´AIRBASE.Caucasus.Krasnodar_Center´
+ - ´AIRBASE.Caucasus.Krasnodar_Pashkovsky´
+ - ´AIRBASE.Caucasus.Krymsk´
+ - ´AIRBASE.Caucasus.Kutaisi´
+ - ´AIRBASE.Caucasus.Maykop_Khanskaya´
+ - ´AIRBASE.Caucasus.Mineralnye_Vody´
+ - ´AIRBASE.Caucasus.Mozdok´
+ - ´AIRBASE.Caucasus.Nalchik´
+ - ´AIRBASE.Caucasus.Novorossiysk´
+ - ´AIRBASE.Caucasus.Senaki_Kolkhi´
+ - ´AIRBASE.Caucasus.Sochi_Adler´
+ - ´AIRBASE.Caucasus.Soganlug´
+ - ´AIRBASE.Caucasus.Sukhumi_Babushara´
+ - ´AIRBASE.Caucasus.Tbilisi_Lochini´
+ - ´AIRBASE.Caucasus.Vaziani´
+
+
+
+Installation
+
+In Single Player Missions
+
+ATC_GROUND is fully functional in single player.
+
+In Multi Player Missions
+
+ATCGROUND is NOT functional in multi player, for client machines connecting to the server, running the mission.
+Due to a bug in DCS since release 1.5, the despawning of clients are not anymore working in multi player.
+To work around this problem, a much better solution has been made, using the slot blocker script designed
+by Ciribob. With the help of Ciribob, this script has been extended to also kick client players while in flight.
+ATCGROUND is communicating with this modified script to kick players!
+
+Install the file SimpleSlotBlockGameGUI.lua on the server, following the installation instructions described by Ciribob.
+
+Simple Slot Blocker from Ciribob & FlightControl
+
+Script it!
+
+1. ATCGROUNDCAUCASUS Constructor
+
+Creates a new ATCGROUNDCAUCASUS object that will monitor pilots taxiing behaviour.
+
+-- This creates a new ATC_GROUND_CAUCASUS object.
+
+-- Monitor all the airbases.
+AirbasePoliceCaucasus = ATC_GROUND_CAUCASUS:New()
+
+-- Monitor specific airbases only.
+
+ATC_Ground = ATC_GROUND_CAUCASUS:New(
+ { AIRBASE.Caucasus.Gelendzhik,
+ AIRBASE.Caucasus.Krymsk
+ }
+)
+
+
+
+
+
+
+-
+
+ #ATC_GROUND_NEVADA
+
+ATC_GROUND_NEVADA
+
+
+-
+
+
ATCGROUNDNEVADA, extends #ATC_GROUND
+
+
+
+The ATCGROUNDNEVADA class monitors the speed of the airplanes at the airbase during taxi.
+
+
+The pilots may not drive faster than the maximum speed for the airbase, or they will be despawned.
+
+The pilot will receive 3 times a warning during speeding. After the 3rd warning, if the pilot is still driving
+faster than the maximum allowed speed, the pilot will be kicked.
+
+Different airbases have different maximum speeds, according safety regulations.
+
+Airbases monitored
+
+The following airbases are monitored at the Nevada region.
+Use the AIRBASE.Nevada enumeration to select the airbases to be monitored.
+
+
+ AIRBASE.Nevada.Beatty_Airport
+ AIRBASE.Nevada.Boulder_City_Airport
+ AIRBASE.Nevada.Creech_AFB
+ AIRBASE.Nevada.Echo_Bay
+ AIRBASE.Nevada.Groom_Lake_AFB
+ AIRBASE.Nevada.Henderson_Executive_Airport
+ AIRBASE.Nevada.Jean_Airport
+ AIRBASE.Nevada.Laughlin_Airport
+ AIRBASE.Nevada.Lincoln_County
+ AIRBASE.Nevada.McCarran_International_Airport
+ AIRBASE.Nevada.Mellan_Airstrip
+ AIRBASE.Nevada.Mesquite
+ AIRBASE.Nevada.Mina_Airport_3Q0
+ AIRBASE.Nevada.Nellis_AFB
+ AIRBASE.Nevada.North_Las_Vegas
+ AIRBASE.Nevada.Pahute_Mesa_Airstrip
+ AIRBASE.Nevada.Tonopah_Airport
+ AIRBASE.Nevada.Tonopah_Test_Range_Airfield
+
+
+Installation
+
+In Single Player Missions
+
+ATC_GROUND is fully functional in single player.
+
+In Multi Player Missions
+
+ATCGROUND is NOT functional in multi player, for client machines connecting to the server, running the mission.
+Due to a bug in DCS since release 1.5, the despawning of clients are not anymore working in multi player.
+To work around this problem, a much better solution has been made, using the slot blocker script designed
+by Ciribob. With the help of Ciribob, this script has been extended to also kick client players while in flight.
+ATCGROUND is communicating with this modified script to kick players!
+
+Install the file SimpleSlotBlockGameGUI.lua on the server, following the installation instructions described by Ciribob.
+
+Simple Slot Blocker from Ciribob & FlightControl
+
+Script it!
+
+1. ATCGROUNDNEVADA Constructor
+
+Creates a new ATCGROUNDNEVADA object that will monitor pilots taxiing behaviour.
+
+-- This creates a new ATC_GROUND_NEVADA object.
+
+-- Monitor all the airbases.
+AirbasePoliceCaucasus = ATC_GROUND_NEVADA:New()
+
+
+-- Monitor specific airbases.
+ATC_Ground = ATC_GROUND_NEVADA:New(
+ { AIRBASE.Nevada.Laughlin_Airport,
+ AIRBASE.Nevada.Mellan_Airstrip,
+ AIRBASE.Nevada.Lincoln_County,
+ AIRBASE.Nevada.North_Las_Vegas,
+ AIRBASE.Nevada.McCarran_International_Airport
+ }
+)
+
+
+
+
+
+
+-
+
+ #ATC_GROUND_NORMANDY
+
+ATC_GROUND_NORMANDY
+
+
+-
+
+
ATCGROUNDNORMANDY, extends #ATC_GROUND
+
+
+
+The ATCGROUNDNORMANDY class monitors the speed of the airplanes at the airbase during taxi.
+
+
+The pilots may not drive faster than the maximum speed for the airbase, or they will be despawned.
+
+The pilot will receive 3 times a warning during speeding. After the 3rd warning, if the pilot is still driving
+faster than the maximum allowed speed, the pilot will be kicked.
+
+Different airbases have different maximum speeds, according safety regulations.
+
+Airbases monitored
+
+The following airbases are monitored at the Normandy region.
+Use the AIRBASE.Normandy enumeration to select the airbases to be monitored.
+
+
+ - ´AIRBASE.Normandy.Azeville´
+ - ´AIRBASE.Normandy.Bazenville´
+ - ´AIRBASE.Normandy.BenysurMer´
+ - ´AIRBASE.Normandy.Beuzeville´
+ - ´AIRBASE.Normandy.Biniville´
+ - ´AIRBASE.Normandy.Brucheville´
+ - ´AIRBASE.Normandy.Cardonville´
+ - ´AIRBASE.Normandy.Carpiquet´
+ - ´AIRBASE.Normandy.Chailey´
+ - ´AIRBASE.Normandy.Chippelle´
+ - ´AIRBASE.Normandy.Cretteville´
+ - ´AIRBASE.Normandy.CricquevilleenBessin´
+ - ´AIRBASE.Normandy.Deux_Jumeaux´
+ - ´AIRBASE.Normandy.Evreux´
+ - ´AIRBASE.Normandy.Ford´
+ - ´AIRBASE.Normandy.Funtington´
+ - ´AIRBASE.Normandy.Lantheuil´
+ - ´AIRBASE.Normandy.Le_Molay´
+ - ´AIRBASE.Normandy.Lessay´
+ - ´AIRBASE.Normandy.Lignerolles´
+ - ´AIRBASE.Normandy.LonguessurMer´
+ - ´AIRBASE.Normandy.Maupertus´
+ - ´AIRBASE.Normandy.Meautis´
+ - ´AIRBASE.Normandy.NeedsOarPoint´
+ - ´AIRBASE.Normandy.Picauville´
+ - ´AIRBASE.Normandy.Rucqueville´
+ - ´AIRBASE.Normandy.SaintPierredu_Mont´
+ - ´AIRBASE.Normandy.SainteCroixsur_Mer´
+ - ´AIRBASE.Normandy.SainteLaurentsur_Mer´
+ - ´AIRBASE.Normandy.Sommervieu´
+ - ´AIRBASE.Normandy.Tangmere´
+
+
+Installation
+
+In Single Player Missions
+
+ATC_GROUND is fully functional in single player.
+
+In Multi Player Missions
+
+ATCGROUND is NOT functional in multi player, for client machines connecting to the server, running the mission.
+Due to a bug in DCS since release 1.5, the despawning of clients are not anymore working in multi player.
+To work around this problem, a much better solution has been made, using the slot blocker script designed
+by Ciribob. With the help of Ciribob, this script has been extended to also kick client players while in flight.
+ATCGROUND is communicating with this modified script to kick players!
+
+Install the file SimpleSlotBlockGameGUI.lua on the server, following the installation instructions described by Ciribob.
+
+Simple Slot Blocker from Ciribob & FlightControl
+
+Script it!
+
+1. ATCGROUNDNORMANDY Constructor
+
+Creates a new ATCGROUNDNORMANDY object that will monitor pilots taxiing behaviour.
+
+-- This creates a new ATC_GROUND_NORMANDY object.
+
+-- Monitor for these clients the airbases.
+AirbasePoliceCaucasus = ATC_GROUND_NORMANDY:New()
+
+ATC_Ground = ATC_GROUND_NORMANDY:New(
+ { AIRBASE.Normandy.Chippelle,
+ AIRBASE.Normandy.Beuzeville
+ }
+)
+
+
+
+
+
+
+
+-
+
+
+
+SSB
+
+
+-
+
+
+
+
+
This is simple slot blocker is used on the server.
+
+
+
+
+
+
+
Field(s)
+
+-
+
+
+
+ATC_GROUND.AirbaseList
+
+
+-
+
+
+
+
+
+
+-
+
+
+
+ATC_GROUND.AirbaseMonitor
+
+
+-
+
+
+
+
+
+
+-
+
+
+
+ATC_GROUND.Airbases
+
+
+-
+
+
+
+
+
+
+-
+
+
+
+ATC_GROUND.KickSpeed
+
+
+-
+
+
+
+
+
+
+-
+
+
+ATC_GROUND:New(Airbases, AirbaseList)
+
+
+-
+
+
Creates a new ATC_GROUND object.
+
+ Parameters
+
+ Return value
+
+#ATC_GROUND:
+self
+
+
+
+
+-
+
+ Core.Set#SET_CLIENT
+
+ATC_GROUND.SetClient
+
+
+-
+
+
+
+
+
+
+-
+
+
+ATC_GROUND:SetKickSpeedKmph(KickSpeed)
+
+
+-
+
+
Set the maximum speed in Kmph until the player gets kicked.
+
+ Parameter
+
+ Return value
+
+#ATC_GROUND:
+self
+
+
+
+
+-
+
+
+ATC_GROUND:SetKickSpeedMiph(KickSpeedMiph)
+
+
+-
+
+
Set the maximum speed in Miph until the player gets kicked.
+
+ Parameter
+
+ Return value
+
+#ATC_GROUND:
+self
+
+
+
+
+-
+
+
+ATC_GROUND:SmokeRunways(SmokeColor)
+
+
+-
+
+
Smoke the airbases runways.
+
+ Parameter
+
+ Return value
+
+#ATC_GROUND:
+self
+
+
+
+
+-
+
+
+ATC_GROUND:_AirbaseMonitor()
+
+
+-
+
+
+
+
+
+
+
+
+
+
Field(s)
+
+-
+
+
+ATC_GROUND_CAUCASUS:New(AirbaseNames)
+
+
+-
+
+
Creates a new ATCGROUNDCAUCASUS object.
+
+ Parameter
+
+ Return value
+
+#ATCGROUNDCAUCASUS:
+self
+
+
+
+
+
+
Field(s)
+
+-
+
+
+ATC_GROUND_NEVADA:New(AirbaseNames)
+
+
+-
+
+
Creates a new ATCGROUNDNEVADA object.
+
+ Parameter
+
+ Return value
+
+#ATCGROUNDNEVADA:
+self
+
+
+
+
+
+
Field(s)
+
+-
+
+
+ATC_GROUND_NORMANDY:New(AirbaseNames)
+
+
+-
+
+
Creates a new ATCGROUNDNORMANDY object.
+
+ Parameter
+
+ Return value
+
+#ATCGROUNDNORMANDY:
+self
+
+
+
+
+
+
+
+
+
diff --git a/docs/Documentation/Account.html b/docs/Documentation/Account.html
index 3edae38f1..9f3fd9603 100644
--- a/docs/Documentation/Account.html
+++ b/docs/Documentation/Account.html
@@ -28,9 +28,9 @@
AI_Cas
AI_Formation
AI_Patrol
+
ATC_Ground
Account
Airbase
-
AirbasePolice
Assign
Base
Cargo
diff --git a/docs/Documentation/Airbase.html b/docs/Documentation/Airbase.html
index c80bfd735..58c016c31 100644
--- a/docs/Documentation/Airbase.html
+++ b/docs/Documentation/Airbase.html
@@ -28,9 +28,9 @@
AI_Cas
AI_Formation
AI_Patrol
+
ATC_Ground
Account
Airbase
-
AirbasePolice
Assign
Base
Cargo
diff --git a/docs/Documentation/Assign.html b/docs/Documentation/Assign.html
index a3e44f47d..7e288992b 100644
--- a/docs/Documentation/Assign.html
+++ b/docs/Documentation/Assign.html
@@ -28,9 +28,9 @@
AI_Cas
AI_Formation
AI_Patrol
+
ATC_Ground
Account
Airbase
-
AirbasePolice
Assign
Base
Cargo
diff --git a/docs/Documentation/Base.html b/docs/Documentation/Base.html
index 2d446b98b..40149e468 100644
--- a/docs/Documentation/Base.html
+++ b/docs/Documentation/Base.html
@@ -28,9 +28,9 @@
AI_Cas
AI_Formation
AI_Patrol
+
ATC_Ground
Account
Airbase
-
AirbasePolice
Assign
Base
Cargo
diff --git a/docs/Documentation/Cargo.html b/docs/Documentation/Cargo.html
index ea6e33cb9..3f1622ad1 100644
--- a/docs/Documentation/Cargo.html
+++ b/docs/Documentation/Cargo.html
@@ -28,9 +28,9 @@
AI_Cas
AI_Formation
AI_Patrol
+
ATC_Ground
Account
Airbase
-
AirbasePolice
Assign
Base
Cargo
@@ -3804,7 +3804,6 @@ The range till cargo will board.
-
- #number
CARGO_UNIT.RunCount
diff --git a/docs/Documentation/CleanUp.html b/docs/Documentation/CleanUp.html
index d71241c29..b1b2ac62a 100644
--- a/docs/Documentation/CleanUp.html
+++ b/docs/Documentation/CleanUp.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
diff --git a/docs/Documentation/Client.html b/docs/Documentation/Client.html
index 31983dfb8..aab1424b1 100644
--- a/docs/Documentation/Client.html
+++ b/docs/Documentation/Client.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
diff --git a/docs/Documentation/CommandCenter.html b/docs/Documentation/CommandCenter.html
index a99621a6c..1644bb348 100644
--- a/docs/Documentation/CommandCenter.html
+++ b/docs/Documentation/CommandCenter.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
diff --git a/docs/Documentation/Controllable.html b/docs/Documentation/Controllable.html
index 1a81d568f..d73c8c8ed 100644
--- a/docs/Documentation/Controllable.html
+++ b/docs/Documentation/Controllable.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
diff --git a/docs/Documentation/DCSAirbase.html b/docs/Documentation/DCSAirbase.html
index b7bb4bb46..5ed931154 100644
--- a/docs/Documentation/DCSAirbase.html
+++ b/docs/Documentation/DCSAirbase.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
diff --git a/docs/Documentation/DCSCoalitionObject.html b/docs/Documentation/DCSCoalitionObject.html
index cf4dfd653..1cc18d3ca 100644
--- a/docs/Documentation/DCSCoalitionObject.html
+++ b/docs/Documentation/DCSCoalitionObject.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
diff --git a/docs/Documentation/DCSCommand.html b/docs/Documentation/DCSCommand.html
index be18b704d..56fbc15b4 100644
--- a/docs/Documentation/DCSCommand.html
+++ b/docs/Documentation/DCSCommand.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
diff --git a/docs/Documentation/DCSController.html b/docs/Documentation/DCSController.html
index ffe035b06..4b0c7a8f8 100644
--- a/docs/Documentation/DCSController.html
+++ b/docs/Documentation/DCSController.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
diff --git a/docs/Documentation/DCSGroup.html b/docs/Documentation/DCSGroup.html
index 9af43a594..8ba1a322a 100644
--- a/docs/Documentation/DCSGroup.html
+++ b/docs/Documentation/DCSGroup.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
diff --git a/docs/Documentation/DCSObject.html b/docs/Documentation/DCSObject.html
index 471315d7d..6b8cc219c 100644
--- a/docs/Documentation/DCSObject.html
+++ b/docs/Documentation/DCSObject.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
diff --git a/docs/Documentation/DCSTask.html b/docs/Documentation/DCSTask.html
index 9a37b51bd..d28f90330 100644
--- a/docs/Documentation/DCSTask.html
+++ b/docs/Documentation/DCSTask.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
diff --git a/docs/Documentation/DCSTypes.html b/docs/Documentation/DCSTypes.html
index 1c2cadc66..4aceb5449 100644
--- a/docs/Documentation/DCSTypes.html
+++ b/docs/Documentation/DCSTypes.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
diff --git a/docs/Documentation/DCSUnit.html b/docs/Documentation/DCSUnit.html
index b286a5a8e..97cd036e3 100644
--- a/docs/Documentation/DCSUnit.html
+++ b/docs/Documentation/DCSUnit.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
diff --git a/docs/Documentation/DCSVec3.html b/docs/Documentation/DCSVec3.html
index b5aebb5a2..23b90c24e 100644
--- a/docs/Documentation/DCSVec3.html
+++ b/docs/Documentation/DCSVec3.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
diff --git a/docs/Documentation/DCSWorld.html b/docs/Documentation/DCSWorld.html
index aaa798b22..a5f7a1eff 100644
--- a/docs/Documentation/DCSWorld.html
+++ b/docs/Documentation/DCSWorld.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
diff --git a/docs/Documentation/DCSZone.html b/docs/Documentation/DCSZone.html
index 442ed36f2..7371708d9 100644
--- a/docs/Documentation/DCSZone.html
+++ b/docs/Documentation/DCSZone.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
diff --git a/docs/Documentation/DCScountry.html b/docs/Documentation/DCScountry.html
index 1bf08dc46..dbe9e2ec5 100644
--- a/docs/Documentation/DCScountry.html
+++ b/docs/Documentation/DCScountry.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
diff --git a/docs/Documentation/DCStimer.html b/docs/Documentation/DCStimer.html
index 8f91702af..10633000b 100644
--- a/docs/Documentation/DCStimer.html
+++ b/docs/Documentation/DCStimer.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
diff --git a/docs/Documentation/DCStrigger.html b/docs/Documentation/DCStrigger.html
index 2f5cb2fa5..bf4138cc4 100644
--- a/docs/Documentation/DCStrigger.html
+++ b/docs/Documentation/DCStrigger.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
diff --git a/docs/Documentation/Database.html b/docs/Documentation/Database.html
index 1e572dfd0..c38cf0965 100644
--- a/docs/Documentation/Database.html
+++ b/docs/Documentation/Database.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
diff --git a/docs/Documentation/Designate.html b/docs/Documentation/Designate.html
index 548df5b75..0e77566fe 100644
--- a/docs/Documentation/Designate.html
+++ b/docs/Documentation/Designate.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
@@ -1106,7 +1106,7 @@ function below will use the range 1-7 just in case
-
- #number
+
DESIGNATE.LaseDuration
diff --git a/docs/Documentation/Detection.html b/docs/Documentation/Detection.html
index 535e6d549..76f441953 100644
--- a/docs/Documentation/Detection.html
+++ b/docs/Documentation/Detection.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
@@ -2469,6 +2469,7 @@ The index of the DetectedItem.
-
+ #number
DETECTION_BASE.DetectedItemCount
@@ -2482,6 +2483,7 @@ The index of the DetectedItem.
-
+ #number
DETECTION_BASE.DetectedItemMax
@@ -4059,7 +4061,7 @@ Return false to cancel Transition.
-
-
+ #number
DETECTION_BASE.RefreshTimeInterval
diff --git a/docs/Documentation/DetectionManager.html b/docs/Documentation/DetectionManager.html
index d03d6d579..c6925b26f 100644
--- a/docs/Documentation/DetectionManager.html
+++ b/docs/Documentation/DetectionManager.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
diff --git a/docs/Documentation/Escort.html b/docs/Documentation/Escort.html
index 6b331253c..ed1e59e36 100644
--- a/docs/Documentation/Escort.html
+++ b/docs/Documentation/Escort.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
diff --git a/docs/Documentation/Event.html b/docs/Documentation/Event.html
index 78be7f4c5..5815c4b0b 100644
--- a/docs/Documentation/Event.html
+++ b/docs/Documentation/Event.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
diff --git a/docs/Documentation/Fsm.html b/docs/Documentation/Fsm.html
index 78de04a27..9580fc0e5 100644
--- a/docs/Documentation/Fsm.html
+++ b/docs/Documentation/Fsm.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
@@ -1608,7 +1608,7 @@ A string defining the start state.
-
- #string
+
FSM._StartState
@@ -1907,6 +1907,7 @@ A string defining the start state.
-
+
FSM.current
diff --git a/docs/Documentation/Goal.html b/docs/Documentation/Goal.html
index 3d4e32f4d..8abc4cea2 100644
--- a/docs/Documentation/Goal.html
+++ b/docs/Documentation/Goal.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
diff --git a/docs/Documentation/Group.html b/docs/Documentation/Group.html
index f3e51bd5e..e65161b18 100644
--- a/docs/Documentation/Group.html
+++ b/docs/Documentation/Group.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
diff --git a/docs/Documentation/Identifiable.html b/docs/Documentation/Identifiable.html
index 20b85c948..f8de45c2b 100644
--- a/docs/Documentation/Identifiable.html
+++ b/docs/Documentation/Identifiable.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
diff --git a/docs/Documentation/Menu.html b/docs/Documentation/Menu.html
index 72c7f2fe1..0959f549b 100644
--- a/docs/Documentation/Menu.html
+++ b/docs/Documentation/Menu.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
diff --git a/docs/Documentation/Message.html b/docs/Documentation/Message.html
index 556adb28c..8a1d2ed4a 100644
--- a/docs/Documentation/Message.html
+++ b/docs/Documentation/Message.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
diff --git a/docs/Documentation/MissileTrainer.html b/docs/Documentation/MissileTrainer.html
index b37a093e7..d11f1379b 100644
--- a/docs/Documentation/MissileTrainer.html
+++ b/docs/Documentation/MissileTrainer.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
diff --git a/docs/Documentation/Mission.html b/docs/Documentation/Mission.html
index 037069a01..68e86d20c 100644
--- a/docs/Documentation/Mission.html
+++ b/docs/Documentation/Mission.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
diff --git a/docs/Documentation/Movement.html b/docs/Documentation/Movement.html
index a14e4464c..0615a2d0a 100644
--- a/docs/Documentation/Movement.html
+++ b/docs/Documentation/Movement.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
diff --git a/docs/Documentation/Object.html b/docs/Documentation/Object.html
index 458382e42..921140d94 100644
--- a/docs/Documentation/Object.html
+++ b/docs/Documentation/Object.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
diff --git a/docs/Documentation/Point.html b/docs/Documentation/Point.html
index fbdfecd9e..c3e994063 100644
--- a/docs/Documentation/Point.html
+++ b/docs/Documentation/Point.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
diff --git a/docs/Documentation/Positionable.html b/docs/Documentation/Positionable.html
index b0a3587af..7605224ac 100644
--- a/docs/Documentation/Positionable.html
+++ b/docs/Documentation/Positionable.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
@@ -2017,7 +2017,6 @@ The height in meters to add to the altitude of the positionable.
-
- Core.Spot#SPOT
POSITIONABLE.Spot
diff --git a/docs/Documentation/Process_JTAC.html b/docs/Documentation/Process_JTAC.html
index cf84a9508..ebbff4b32 100644
--- a/docs/Documentation/Process_JTAC.html
+++ b/docs/Documentation/Process_JTAC.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
diff --git a/docs/Documentation/Process_Pickup.html b/docs/Documentation/Process_Pickup.html
index 8e98c8715..bba9b0bef 100644
--- a/docs/Documentation/Process_Pickup.html
+++ b/docs/Documentation/Process_Pickup.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
diff --git a/docs/Documentation/Protect.html b/docs/Documentation/Protect.html
index 753a1bda6..f18d5d4bf 100644
--- a/docs/Documentation/Protect.html
+++ b/docs/Documentation/Protect.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
diff --git a/docs/Documentation/Radio.html b/docs/Documentation/Radio.html
index 186d75cf5..f25c70d73 100644
--- a/docs/Documentation/Radio.html
+++ b/docs/Documentation/Radio.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
diff --git a/docs/Documentation/Rat.html b/docs/Documentation/Rat.html
index 17df9e9b1..ab1e58bea 100644
--- a/docs/Documentation/Rat.html
+++ b/docs/Documentation/Rat.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
diff --git a/docs/Documentation/Route.html b/docs/Documentation/Route.html
index 634031bae..4a4440321 100644
--- a/docs/Documentation/Route.html
+++ b/docs/Documentation/Route.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
diff --git a/docs/Documentation/Scenery.html b/docs/Documentation/Scenery.html
index ae65cd9d9..3de1d6356 100644
--- a/docs/Documentation/Scenery.html
+++ b/docs/Documentation/Scenery.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
diff --git a/docs/Documentation/ScheduleDispatcher.html b/docs/Documentation/ScheduleDispatcher.html
index a029bd0da..3c62edaa1 100644
--- a/docs/Documentation/ScheduleDispatcher.html
+++ b/docs/Documentation/ScheduleDispatcher.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
diff --git a/docs/Documentation/Scheduler.html b/docs/Documentation/Scheduler.html
index f4b48332f..3dc9d07ac 100644
--- a/docs/Documentation/Scheduler.html
+++ b/docs/Documentation/Scheduler.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
diff --git a/docs/Documentation/Scoring.html b/docs/Documentation/Scoring.html
index 2420002c3..c7811523c 100644
--- a/docs/Documentation/Scoring.html
+++ b/docs/Documentation/Scoring.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
diff --git a/docs/Documentation/Sead.html b/docs/Documentation/Sead.html
index 92ef00631..ef84bbfa3 100644
--- a/docs/Documentation/Sead.html
+++ b/docs/Documentation/Sead.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
diff --git a/docs/Documentation/Set.html b/docs/Documentation/Set.html
index 0b8836cf1..b981a7e2e 100644
--- a/docs/Documentation/Set.html
+++ b/docs/Documentation/Set.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
diff --git a/docs/Documentation/Settings.html b/docs/Documentation/Settings.html
index 200c0b2e4..9b4a8bcab 100644
--- a/docs/Documentation/Settings.html
+++ b/docs/Documentation/Settings.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
@@ -1250,7 +1250,7 @@ true if metric.
-
- #boolean
+
SETTINGS.Metric
diff --git a/docs/Documentation/Smoke.html b/docs/Documentation/Smoke.html
index 11171008f..c7a449531 100644
--- a/docs/Documentation/Smoke.html
+++ b/docs/Documentation/Smoke.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
diff --git a/docs/Documentation/Spawn.html b/docs/Documentation/Spawn.html
index 443134287..b8ac96005 100644
--- a/docs/Documentation/Spawn.html
+++ b/docs/Documentation/Spawn.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
@@ -848,12 +848,6 @@ and any spaces before and after the resulting name are removed.
SPAWN:_TranslateRotate(SpawnIndex, SpawnRootX, SpawnRootY, SpawnX, SpawnY, SpawnAngle) |
- |
-
-
- | SPAWN.uncontrolled |
-
-
|
@@ -2888,6 +2882,9 @@ when nothing was spawned.
+
+ Overwrite unit names by default with group name.
+
@@ -3889,20 +3886,6 @@ True = Continue Scheduler
-
-
-
--
-
-
-
-SPAWN.uncontrolled
-
-
--
-
-
-
diff --git a/docs/Documentation/SpawnStatic.html b/docs/Documentation/SpawnStatic.html
index cc0683d6e..8da9a331b 100644
--- a/docs/Documentation/SpawnStatic.html
+++ b/docs/Documentation/SpawnStatic.html
@@ -28,9 +28,9 @@
AI_Cas
AI_Formation
AI_Patrol
+
ATC_Ground
Account
Airbase
-
AirbasePolice
Assign
Base
Cargo
diff --git a/docs/Documentation/Spot.html b/docs/Documentation/Spot.html
index 703c5a3c9..d6706e2ed 100644
--- a/docs/Documentation/Spot.html
+++ b/docs/Documentation/Spot.html
@@ -28,9 +28,9 @@
AI_Cas
AI_Formation
AI_Patrol
+
ATC_Ground
Account
Airbase
-
AirbasePolice
Assign
Base
Cargo
diff --git a/docs/Documentation/Static.html b/docs/Documentation/Static.html
index d55c5547c..6733819fe 100644
--- a/docs/Documentation/Static.html
+++ b/docs/Documentation/Static.html
@@ -28,9 +28,9 @@
AI_Cas
AI_Formation
AI_Patrol
+
ATC_Ground
Account
Airbase
-
AirbasePolice
Assign
Base
Cargo
diff --git a/docs/Documentation/StaticObject.html b/docs/Documentation/StaticObject.html
index edaaceef9..dd89260c6 100644
--- a/docs/Documentation/StaticObject.html
+++ b/docs/Documentation/StaticObject.html
@@ -28,9 +28,9 @@
AI_Cas
AI_Formation
AI_Patrol
+
ATC_Ground
Account
Airbase
-
AirbasePolice
Assign
Base
Cargo
diff --git a/docs/Documentation/Task.html b/docs/Documentation/Task.html
index ad89915ac..be5fb519f 100644
--- a/docs/Documentation/Task.html
+++ b/docs/Documentation/Task.html
@@ -28,9 +28,9 @@
AI_Cas
AI_Formation
AI_Patrol
+
ATC_Ground
Account
Airbase
-
AirbasePolice
Assign
Base
Cargo
diff --git a/docs/Documentation/TaskZoneCapture.html b/docs/Documentation/TaskZoneCapture.html
index 07610d9ca..5a943653d 100644
--- a/docs/Documentation/TaskZoneCapture.html
+++ b/docs/Documentation/TaskZoneCapture.html
@@ -28,9 +28,9 @@
AI_Cas
AI_Formation
AI_Patrol
+
ATC_Ground
Account
Airbase
-
AirbasePolice
Assign
Base
Cargo
diff --git a/docs/Documentation/Task_A2A.html b/docs/Documentation/Task_A2A.html
index e1ede0801..b8bcc3021 100644
--- a/docs/Documentation/Task_A2A.html
+++ b/docs/Documentation/Task_A2A.html
@@ -28,9 +28,9 @@
AI_Cas
AI_Formation
AI_Patrol
+
ATC_Ground
Account
Airbase
-
AirbasePolice
Assign
Base
Cargo
diff --git a/docs/Documentation/Task_A2A_Dispatcher.html b/docs/Documentation/Task_A2A_Dispatcher.html
index bcaa0f453..bbad09e91 100644
--- a/docs/Documentation/Task_A2A_Dispatcher.html
+++ b/docs/Documentation/Task_A2A_Dispatcher.html
@@ -28,9 +28,9 @@
AI_Cas
AI_Formation
AI_Patrol
+
ATC_Ground
Account
Airbase
-
AirbasePolice
Assign
Base
Cargo
diff --git a/docs/Documentation/Task_A2G.html b/docs/Documentation/Task_A2G.html
index 1f22797fb..81b43acb3 100644
--- a/docs/Documentation/Task_A2G.html
+++ b/docs/Documentation/Task_A2G.html
@@ -28,9 +28,9 @@
AI_Cas
AI_Formation
AI_Patrol
+
ATC_Ground
Account
Airbase
-
AirbasePolice
Assign
Base
Cargo
diff --git a/docs/Documentation/Task_A2G_Dispatcher.html b/docs/Documentation/Task_A2G_Dispatcher.html
index fcf0e0d6d..a2ae397af 100644
--- a/docs/Documentation/Task_A2G_Dispatcher.html
+++ b/docs/Documentation/Task_A2G_Dispatcher.html
@@ -28,9 +28,9 @@
AI_Cas
AI_Formation
AI_Patrol
+
ATC_Ground
Account
Airbase
-
AirbasePolice
Assign
Base
Cargo
diff --git a/docs/Documentation/Task_Cargo.html b/docs/Documentation/Task_Cargo.html
index 875597e26..119956c02 100644
--- a/docs/Documentation/Task_Cargo.html
+++ b/docs/Documentation/Task_Cargo.html
@@ -28,9 +28,9 @@
AI_Cas
AI_Formation
AI_Patrol
+
ATC_Ground
Account
Airbase
-
AirbasePolice
Assign
Base
Cargo
@@ -562,7 +562,7 @@ based on the tasking capabilities defined in
Task#TA
-
- Core.Cargo#CARGO_GROUP
+ Core.Cargo#CARGO
FSM_PROCESS.Cargo
@@ -576,7 +576,6 @@ based on the tasking capabilities defined in Task#TA
-
-
FSM_PROCESS.DeployZone
diff --git a/docs/Documentation/Task_PICKUP.html b/docs/Documentation/Task_PICKUP.html
index 481dedc9f..d6ce50a3b 100644
--- a/docs/Documentation/Task_PICKUP.html
+++ b/docs/Documentation/Task_PICKUP.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
diff --git a/docs/Documentation/Unit.html b/docs/Documentation/Unit.html
index c3e4be0f3..6031c833a 100644
--- a/docs/Documentation/Unit.html
+++ b/docs/Documentation/Unit.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
diff --git a/docs/Documentation/UserFlag.html b/docs/Documentation/UserFlag.html
index f6d9f1f3f..33ea8d416 100644
--- a/docs/Documentation/UserFlag.html
+++ b/docs/Documentation/UserFlag.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
diff --git a/docs/Documentation/UserSound.html b/docs/Documentation/UserSound.html
index 9d2cfbecd..7127d4dfd 100644
--- a/docs/Documentation/UserSound.html
+++ b/docs/Documentation/UserSound.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
diff --git a/docs/Documentation/Utils.html b/docs/Documentation/Utils.html
index cf6b13576..38658f543 100644
--- a/docs/Documentation/Utils.html
+++ b/docs/Documentation/Utils.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
diff --git a/docs/Documentation/Zone.html b/docs/Documentation/Zone.html
index f20ad9e52..324151cf4 100644
--- a/docs/Documentation/Zone.html
+++ b/docs/Documentation/Zone.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
diff --git a/docs/Documentation/ZoneCaptureCoalition.html b/docs/Documentation/ZoneCaptureCoalition.html
index e41e17814..ff10c49c7 100644
--- a/docs/Documentation/ZoneCaptureCoalition.html
+++ b/docs/Documentation/ZoneCaptureCoalition.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
diff --git a/docs/Documentation/ZoneGoal.html b/docs/Documentation/ZoneGoal.html
index 854e07ffe..cd85537f6 100644
--- a/docs/Documentation/ZoneGoal.html
+++ b/docs/Documentation/ZoneGoal.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
diff --git a/docs/Documentation/ZoneGoalCargo.html b/docs/Documentation/ZoneGoalCargo.html
index 99a89cda2..c60675d00 100644
--- a/docs/Documentation/ZoneGoalCargo.html
+++ b/docs/Documentation/ZoneGoalCargo.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
diff --git a/docs/Documentation/ZoneGoalCoalition.html b/docs/Documentation/ZoneGoalCoalition.html
index 84a90c12d..3a47d5c0c 100644
--- a/docs/Documentation/ZoneGoalCoalition.html
+++ b/docs/Documentation/ZoneGoalCoalition.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
diff --git a/docs/Documentation/env.html b/docs/Documentation/env.html
index a8e2e77c2..5a4a14bd0 100644
--- a/docs/Documentation/env.html
+++ b/docs/Documentation/env.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
diff --git a/docs/Documentation/index.html b/docs/Documentation/index.html
index 45db4212d..e726ff628 100644
--- a/docs/Documentation/index.html
+++ b/docs/Documentation/index.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
@@ -259,6 +259,12 @@ even when there are hardly any players in the mission.
AI PATROL classes makes AI Controllables execute an Patrol.
+
+
+
+ | ATC_Ground |
+
+ Functional -- The ATC_GROUND classes monitor airbase traffic and regulate speed while taxiing.
|
@@ -271,12 +277,6 @@ even when there are hardly any players in the mission.
| Airbase |
Wrapper -- AIRBASE is a wrapper class to handle the DCS Airbase objects.
- |
-
-
- | AirbasePolice |
-
- Functional -- The ATC_GROUND classes monitor airbase traffic and regulate speed while taxiing.
|
diff --git a/docs/Documentation/land.html b/docs/Documentation/land.html
index edb13ac44..5e3f0b3e0 100644
--- a/docs/Documentation/land.html
+++ b/docs/Documentation/land.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo
diff --git a/docs/Documentation/routines.html b/docs/Documentation/routines.html
index 22f0e9cea..b84a5803a 100644
--- a/docs/Documentation/routines.html
+++ b/docs/Documentation/routines.html
@@ -28,9 +28,9 @@
- AI_Cas
- AI_Formation
- AI_Patrol
+ - ATC_Ground
- Account
- Airbase
- - AirbasePolice
- Assign
- Base
- Cargo