From 42e90fc163934f84d434f12f035368d0854b77b7 Mon Sep 17 00:00:00 2001
From: Applevangelist
Date: Sat, 11 Dec 2021 18:49:26 +0000
Subject: [PATCH] MOOSE generated documentation [skip ci]
---
Documentation/AI.AI_A2G_Dispatcher.html | 44 +++++
Documentation/AI.AI_AIR_Dispatcher.html | 44 -----
Documentation/AI.AI_Air.html | 44 +++++
Documentation/AI.AI_Air_Squadron.html | 22 ---
Documentation/AI.AI_Cargo.html | 20 +-
Documentation/AI.AI_Cargo_Airplane.html | 56 ++----
Documentation/AI.AI_Cargo_Helicopter.html | 40 +++-
Documentation/Cargo.CargoGroup.html | 34 +++-
Documentation/Core.Set.html | 88 ++++-----
Documentation/Core.Settings.html | 26 +--
Documentation/Core.Spawn.html | 186 +++++++++---------
Documentation/Functional.Designate.html | 55 ++++++
Documentation/Functional.Detection.html | 39 +++-
Documentation/Functional.Movement.html | 28 +++
Documentation/Functional.Rat.html | 12 ++
Documentation/Ops.Airboss.html | 19 +-
Documentation/Ops.CSAR.html | 30 +--
Documentation/Ops.CTLD.html | 24 +--
Documentation/Tasking.Task.html | 22 ---
.../Tasking.Task_A2G_Dispatcher.html | 20 +-
Documentation/Tasking.Task_Cargo.html | 2 +-
.../Tasking.Task_Cargo_Dispatcher.html | 52 +----
Documentation/Wrapper.Client.html | 14 +-
Documentation/Wrapper.Marker.html | 72 ++++++-
24 files changed, 568 insertions(+), 425 deletions(-)
diff --git a/Documentation/AI.AI_A2G_Dispatcher.html b/Documentation/AI.AI_A2G_Dispatcher.html
index 69be64507..6405458f6 100644
--- a/Documentation/AI.AI_A2G_Dispatcher.html
+++ b/Documentation/AI.AI_A2G_Dispatcher.html
@@ -4648,6 +4648,17 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
The Defender Default Settings over all Squadrons.
+
+
+
+
@@ -12990,6 +13001,17 @@ multiplied by the Overhead and rounded up to the smallest integer.
The Defender Default Settings over all Squadrons.
+
+
+
+ The Defender Default Settings over all Squadrons.
+
+
+
+ The Defender Default Settings over all Squadrons.
+
+
+
+ The Defender Default Settings over all Squadrons.
-
-
-
- The Defender Default Settings over all Squadrons.
-
-
-
- The Defender Default Settings over all Squadrons.
-
-
-
- The Defender Default Settings over all Squadrons.
-
-
-
-
- #SET_GROUP: Defines a collection of Wrapper.Groups filtered by filter criteria.
- - #SET_UNIT: Defines a colleciton of Wrapper.Units filtered by filter criteria.
+ - #SET_UNIT: Defines a collection of Wrapper.Units filtered by filter criteria.
- #SET_STATIC: Defines a collection of Wrapper.Statics filtered by filter criteria.
- - #SET_CLIENT: Defines a collection of Clients filterd by filter criteria.
+ - #SET_CLIENT: Defines a collection of Clients filtered by filter criteria.
- #SET_AIRBASE: Defines a collection of Wrapper.Airbases filtered by filter criteria.
- #SET_CARGO: Defines a collection of Cargo.Cargos filtered by filter criteria.
- #SET_ZONE: Defines a collection of Core.Zones filtered by filter criteria.
@@ -1645,7 +1645,7 @@ The following iterator methods are currently available within the SET_AIRBASE:
The Core.Set#SET_BASE class defines the core functions that define a collection of objects.
-A SET provides iterators to iterate the SET, but will temporarily yield the ForEach interator loop at defined "intervals" to the mail simulator loop.
+
A SET provides iterators to iterate the SET, but will temporarily yield the ForEach iterator loop at defined "intervals" to the mail simulator loop.
In this way, large loops can be done while not blocking the simulator main processing loop.
The default "yield interval" is after 10 objects processed.
The default "time interval" is after 0.001 seconds.
@@ -1656,7 +1656,7 @@ The default "time interval" is after 0.001 seconds.
Define the SET iterator "yield interval" and the "time interval"
-Modify the iterator intervals with the Core.Set#SET_BASE.SetInteratorIntervals method.
+
Modify the iterator intervals with the Core.Set#SET_BASE.SetIteratorIntervals method.
You can set the "yield interval", and the "time interval". (See above).
@@ -1933,7 +1933,7 @@ The following iterator methods are currently available within the SET_GROUP:
When a GROUP object crashes or is dead, the SET_GROUP will trigger a Dead event.
You can handle the event using the OnBefore and OnAfter event handlers.
-The event handlers need to have the paramters From, Event, To, GroupObject.
+The event handlers need to have the parameters From, Event, To, GroupObject.
The GroupObject is the GROUP object that is dead and within the SET_GROUP, and is passed as a parameter to the event handler.
See the following example:
@@ -1949,7 +1949,7 @@ See the following example:
While this is a good example, there is a catch.
-Imageine you want to execute the code above, the the self would need to be from the object declared outside (above) the OnAfterDead method.
+Imagine you want to execute the code above, the the self would need to be from the object declared outside (above) the OnAfterDead method.
So, the self would need to contain another object. Fortunately, this can be done, but you must use then the . notation for the method.
See the modified example:
@@ -2081,7 +2081,7 @@ The following iterator methods are currently available within the SET_OPSGROUP:<
When a GROUP object crashes or is dead, the SET_OPSGROUP will trigger a Dead event.
You can handle the event using the OnBefore and OnAfter event handlers.
-The event handlers need to have the paramters From, Event, To, GroupObject.
+The event handlers need to have the parameters From, Event, To, GroupObject.
The GroupObject is the GROUP object that is dead and within the SET_OPSGROUP, and is passed as a parameter to the event handler.
See the following example:
@@ -2380,7 +2380,7 @@ The following iterator methods are currently available within the SET_UNIT:
6.1) When a UNIT object crashes or is dead, the SET_UNIT will trigger a Dead event.
You can handle the event using the OnBefore and OnAfter event handlers.
-The event handlers need to have the paramters From, Event, To, GroupObject.
+The event handlers need to have the parameters From, Event, To, GroupObject.
The GroupObject is the UNIT object that is dead and within the SET_UNIT, and is passed as a parameter to the event handler.
See the following example:
@@ -2396,7 +2396,7 @@ See the following example:
While this is a good example, there is a catch.
-Imageine you want to execute the code above, the the self would need to be from the object declared outside (above) the OnAfterDead method.
+Imagine you want to execute the code above, the the self would need to be from the object declared outside (above) the OnAfterDead method.
So, the self would need to contain another object. Fortunately, this can be done, but you must use then the . notation for the method.
See the modified example:
@@ -2625,7 +2625,7 @@ The following iterator methods are currently available within the SET_ZONE_GOAL:
SET_AIRBASE:ForEachAirbase(IteratorFunction, ...) |
- Iterate the SET_AIRBASE and call an interator function for each AIRBASE, providing the AIRBASE and optional parameters.
+Iterate the SET_AIRBASE and call an iterator function for each AIRBASE, providing the AIRBASE and optional parameters.
|
@@ -2849,7 +2849,7 @@ The following iterator methods are currently available within the SET_ZONE_GOAL:
SET_AIRBASE.Index |
- Table of indicies.
+Table of indices.
|
@@ -3686,7 +3686,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
SET_BASE.Index |
- Table of indicies.
+Table of indices.
|
@@ -4458,7 +4458,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
SET_CARGO:ForEachCargo(IteratorFunction, ...) |
- (R2.1) Iterate the SET_CARGO and call an interator function for each CARGO, providing the CARGO and optional parameters.
+(R2.1) Iterate the SET_CARGO and call an iterator function for each CARGO, providing the CARGO and optional parameters.
|
@@ -4676,7 +4676,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
SET_CARGO.Index |
- Table of indicies.
+Table of indices.
|
@@ -5418,7 +5418,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
SET_CLIENT:ForEachClient(IteratorFunction, ...) |
- Iterate the SET_CLIENT and call an interator function for each alive CLIENT, providing the CLIENT and optional parameters.
+Iterate the SET_CLIENT and call an iterator function for each alive CLIENT, providing the CLIENT and optional parameters.
|
@@ -5636,7 +5636,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
SET_CLIENT.Index |
- Table of indicies.
+Table of indices.
|
@@ -6738,7 +6738,7 @@ mission designer to add a dedicated method
SET_GROUP.Index |
- Table of indicies.
+Table of indices.
|
@@ -7746,7 +7746,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
SET_OPSGROUP.Index |
- Table of indicies.
+Table of indices.
|
@@ -8476,7 +8476,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
SET_PLAYER:ForEachPlayer(IteratorFunction, ...) |
- Iterate the SET_PLAYER and call an interator function for each alive CLIENT, providing the CLIENT and optional parameters.
+Iterate the SET_PLAYER and call an iterator function for each alive CLIENT, providing the CLIENT and optional parameters.
|
@@ -8694,7 +8694,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
SET_PLAYER.Index |
- Table of indicies.
+Table of indices.
|
@@ -9442,7 +9442,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
SET_STATIC:ForEachStatic(IteratorFunction, ...) |
- Iterate the SET_STATIC and call an interator function for each alive STATIC, providing the STATIC and optional parameters.
+Iterate the SET_STATIC and call an iterator function for each alive STATIC, providing the STATIC and optional parameters.
|
@@ -9720,7 +9720,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
SET_STATIC.Index |
- Table of indicies.
+Table of indices.
|
@@ -10486,7 +10486,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
SET_UNIT:ForEachUnit(IteratorFunction, ...) |
- Iterate the SET_UNIT and call an interator function for each alive UNIT, providing the UNIT and optional parameters.
+Iterate the SET_UNIT and call an iterator function for each alive UNIT, providing the UNIT and optional parameters.
|
@@ -10504,7 +10504,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
SET_UNIT:ForEachUnitPerThreatLevel(FromThreatLevel, ToThreatLevel, IteratorFunction, ...) |
- Iterate the SET_UNIT sorted *per Threat Level and call an interator function for each alive UNIT, providing the UNIT and optional parameters.
+Iterate the SET_UNIT sorted *per Threat Level and call an iterator function for each alive UNIT, providing the UNIT and optional parameters.
|
@@ -10814,7 +10814,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
SET_UNIT.Index |
- Table of indicies.
+Table of indices.
|
@@ -11526,7 +11526,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
SET_ZONE:ForEachZone(IteratorFunction, ...) |
- Iterate the SET_ZONE and call an interator function for each ZONE, providing the ZONE and optional parameters.
+Iterate the SET_ZONE and call an iterator function for each ZONE, providing the ZONE and optional parameters.
|
@@ -11762,7 +11762,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
SET_ZONE.Index |
- Table of indicies.
+Table of indices.
|
@@ -12468,7 +12468,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
SET_ZONE_GOAL:ForEachZone(IteratorFunction, ...) |
- Iterate the SET_ZONE_GOAL and call an interator function for each ZONE, providing the ZONE and optional parameters.
+Iterate the SET_ZONE_GOAL and call an iterator function for each ZONE, providing the ZONE and optional parameters.
|
@@ -12704,7 +12704,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
SET_ZONE_GOAL.Index |
- Table of indicies.
+Table of indices.
|
@@ -13833,7 +13833,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
-Iterate the SET_AIRBASE and call an interator function for each AIRBASE, providing the AIRBASE and optional parameters.
+Iterate the SET_AIRBASE and call an iterator function for each AIRBASE, providing the AIRBASE and optional parameters.
@@ -19095,7 +19095,7 @@ BASE:TraceOnOff( false )
#table
SET_BASE.Index
-
Table of indicies.
+
Table of indices.
@@ -20902,7 +20902,7 @@ DBObject = SET_BASE:New()
#table
SET_BASE.Index
-
Table of indicies.
+
Table of indices.
@@ -24910,7 +24910,7 @@ BASE:TraceOnOff( false )
-(R2.1) Iterate the SET_CARGO and call an interator function for each CARGO, providing the CARGO and optional parameters.
+(R2.1) Iterate the SET_CARGO and call an iterator function for each CARGO, providing the CARGO and optional parameters.
@@ -30703,7 +30703,7 @@ ClientSet = SET_CLIENT:New():FilterActive( false ):FilterCoalition( "blue" ):Fil
-
Iterate the SET_CLIENT and call an interator function for each alive CLIENT, providing the CLIENT and optional parameters.
+
Iterate the SET_CLIENT and call an iterator function for each alive CLIENT, providing the CLIENT and optional parameters.
@@ -36201,7 +36201,7 @@ BASE:TraceOnOff( false )
@@ -36266,7 +36266,7 @@ end
@@ -36331,7 +36331,7 @@ end
@@ -36399,7 +36399,7 @@ end
@@ -49574,7 +49574,7 @@ BASE:TraceOnOff( false )
-Iterate the SET_PLAYER and call an interator function for each alive CLIENT, providing the CLIENT and optional parameters.
+Iterate the SET_PLAYER and call an iterator function for each alive CLIENT, providing the CLIENT and optional parameters.
@@ -55450,7 +55450,7 @@ BASE:TraceOnOff( false )
-
Iterate the SET_STATIC and call an interator function for each alive STATIC, providing the STATIC and optional parameters.
+
Iterate the SET_STATIC and call an iterator function for each alive STATIC, providing the STATIC and optional parameters.
@@ -61842,7 +61842,7 @@ UnitSet = SET_UNIT:New():FilterActive( false ):FilterCoalition( "blue" ):FilterO
-
Iterate the SET_UNIT and call an interator function for each alive UNIT, providing the UNIT and optional parameters.
+
Iterate the SET_UNIT and call an iterator function for each alive UNIT, providing the UNIT and optional parameters.
@@ -62030,7 +62030,7 @@ UnitSet = SET_UNIT:New():FilterActive( false ):FilterCoalition( "blue" ):FilterO
-
Iterate the SET_UNIT sorted *per Threat Level and call an interator function for each alive UNIT, providing the UNIT and optional parameters.
+
Iterate the SET_UNIT sorted *per Threat Level and call an iterator function for each alive UNIT, providing the UNIT and optional parameters.
@@ -68157,7 +68157,7 @@ BASE:TraceOnOff( false )
-
Iterate the SET_ZONE and call an interator function for each ZONE, providing the ZONE and optional parameters.
+
Iterate the SET_ZONE and call an iterator function for each ZONE, providing the ZONE and optional parameters.
@@ -73805,7 +73805,7 @@ BASE:TraceOnOff( false )
-
Iterate the SET_ZONE_GOAL and call an interator function for each ZONE, providing the ZONE and optional parameters.
+
Iterate the SET_ZONE_GOAL and call an iterator function for each ZONE, providing the ZONE and optional parameters.
diff --git a/Documentation/Core.Settings.html b/Documentation/Core.Settings.html
index feffcf180..7bc367ddc 100644
--- a/Documentation/Core.Settings.html
+++ b/Documentation/Core.Settings.html
@@ -2715,7 +2715,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
- #string
+
SETTINGS.A2ASystem
@@ -2775,17 +2775,6 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
-
-
-
-
@@ -4820,7 +4809,7 @@ It is advised to use this method at the start of the mission.
- #string
+
SETTINGS.A2ASystem
@@ -4880,17 +4869,6 @@ It is advised to use this method at the start of the mission.
-
-
-
-
diff --git a/Documentation/Core.Spawn.html b/Documentation/Core.Spawn.html
index 0062516d5..4d9df64b4 100644
--- a/Documentation/Core.Spawn.html
+++ b/Documentation/Core.Spawn.html
@@ -2748,6 +2748,18 @@ and any spaces before and after the resulting name are removed.
SPAWN.livery_id |
+ |
+
+
+ SPAWN.modulation |
+
+
+ |
+
+
+ SPAWN.skill |
+
+
|
@@ -3521,17 +3533,6 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
-
-
-
-
@@ -3565,17 +3566,6 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
-
-
-
-
@@ -3631,6 +3621,20 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
+
+
+
+
@@ -3642,16 +3646,8 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
-
-
-
-
-
@@ -3660,18 +3656,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
-
-
-
-
-
- #string
-
SPAWN.SpawnInitSkill
+
SPAWN.SpawnInitModex
@@ -3706,7 +3691,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
-
+ #number
SPAWN.SpawnMaxGroups
@@ -3720,7 +3705,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
-
+ #number
SPAWN.SpawnMaxUnitsAlive
@@ -3878,7 +3863,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
-
When the first Spawn executes, all the Groups need to be made visible before start.
+
Flag that indicates if all the Groups of the SpawnGroup need to be visible when Spawned.
@@ -3963,6 +3948,28 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
+
+
+
+
+
@@ -8923,17 +8930,6 @@ This is needed to ensure that Re-SPAWNing only is done for landed AIR Groups.
-
-
-
@@ -8967,17 +8963,6 @@ This is needed to ensure that Re-SPAWNing only is done for landed AIR Groups.
-
-
-
@@ -9033,6 +9018,20 @@ This is needed to ensure that Re-SPAWNing only is done for landed AIR Groups.
+
+
+
@@ -9044,16 +9043,8 @@ This is needed to ensure that Re-SPAWNing only is done for landed AIR Groups.
-
-
-
-
@@ -9062,18 +9053,7 @@ This is needed to ensure that Re-SPAWNing only is done for landed AIR Groups.
-
SPAWN.SpawnInitModu
-
-
-
-
-
-
-
-
-
- #string
-
SPAWN.SpawnInitSkill
+
SPAWN.SpawnInitModex
@@ -9108,7 +9088,7 @@ This is needed to ensure that Re-SPAWNing only is done for landed AIR Groups.
-
+ #number
SPAWN.SpawnMaxGroups
@@ -9122,7 +9102,7 @@ This is needed to ensure that Re-SPAWNing only is done for landed AIR Groups.
-
+ #number
SPAWN.SpawnMaxUnitsAlive
@@ -9280,7 +9260,7 @@ This is needed to ensure that Re-SPAWNing only is done for landed AIR Groups. When the first Spawn executes, all the Groups need to be made visible before start.
+
Flag that indicates if all the Groups of the SpawnGroup need to be visible when Spawned.
@@ -9365,6 +9345,28 @@ This is needed to ensure that Re-SPAWNing only is done for landed AIR Groups.
+
+
+
+
diff --git a/Documentation/Functional.Designate.html b/Documentation/Functional.Designate.html
index 4c32169c9..54e5e8236 100644
--- a/Documentation/Functional.Designate.html
+++ b/Documentation/Functional.Designate.html
@@ -3423,6 +3423,17 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
+
+
+
+
@@ -6591,6 +6602,17 @@ Designate:SetFlashStatusMenu( false )
+
+
+
+
@@ -7401,6 +7423,17 @@ Designate:SetFlashStatusMenu( false )
+
+
+
+
@@ -8181,6 +8214,17 @@ Designate:SetFlashStatusMenu( false )
+
+
+
+
@@ -9853,6 +9897,17 @@ Designate:SetFlashStatusMenu( false )
+
+
+
+
diff --git a/Documentation/Functional.Detection.html b/Documentation/Functional.Detection.html
index 9ea7a80dc..2e429dab5 100644
--- a/Documentation/Functional.Detection.html
+++ b/Documentation/Functional.Detection.html
@@ -18924,7 +18924,18 @@ BASE:TraceOnOff( false )
+
+
+
+
DETECTION_BASE.RefreshTimeInterval
@@ -23615,7 +23626,18 @@ zones that reflect cloudy areas where detected units may not be so easily visual
+
+
+
+
DETECTION_BASE.RefreshTimeInterval
@@ -25361,7 +25383,18 @@ zones that reflect cloudy areas where detected units may not be so easily visual
+
+
+
+
DETECTION_BASE.RefreshTimeInterval
diff --git a/Documentation/Functional.Movement.html b/Documentation/Functional.Movement.html
index 56af5c9f5..632f6c845 100644
--- a/Documentation/Functional.Movement.html
+++ b/Documentation/Functional.Movement.html
@@ -2148,6 +2148,20 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
Field(s)
+
+
+
+ #number
+
MOVEMENT.AliveUnits
+
+
+
+
+
Contains the counter how many units are currently alive
+
+
+
+
@@ -2378,6 +2392,20 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
Field(s)
+
+
+
+ #number
+
MOVEMENT.AliveUnits
+
+
+
+
+
Contains the counter how many units are currently alive
+
+
+
+
diff --git a/Documentation/Functional.Rat.html b/Documentation/Functional.Rat.html
index 910cdb473..0bf63275f 100644
--- a/Documentation/Functional.Rat.html
+++ b/Documentation/Functional.Rat.html
@@ -4342,6 +4342,18 @@ and any spaces before and after the resulting name are removed.
RAT.livery_id |
+ |
+
+
+ RAT.modulation |
+
+
+ |
+
+
+ RAT.skill |
+
+
|
diff --git a/Documentation/Ops.Airboss.html b/Documentation/Ops.Airboss.html
index 439db8bbf..8dfb4afae 100644
--- a/Documentation/Ops.Airboss.html
+++ b/Documentation/Ops.Airboss.html
@@ -38849,7 +38849,7 @@ BASE:TraceOnOff( false )
-
Set stack flag.
+
Decrease stack/flag. Human player needs to take care himself.
@@ -38862,6 +38862,17 @@ BASE:TraceOnOff( false )
Data table at each position in the groove. Elements are of type AIRBOSS.GrooveData.
+
+
+
+
@@ -38997,6 +39008,9 @@ BASE:TraceOnOff( false )
+
+
Set section lead of player flight.
+
@@ -39052,6 +39066,9 @@ BASE:TraceOnOff( false )
+
+
Set time stamp.
+
diff --git a/Documentation/Ops.CSAR.html b/Documentation/Ops.CSAR.html
index b043889e6..fd6750acd 100644
--- a/Documentation/Ops.CSAR.html
+++ b/Documentation/Ops.CSAR.html
@@ -3607,14 +3607,11 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
@@ -3834,14 +3831,11 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
@@ -8361,14 +8355,11 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
@@ -8588,14 +8579,11 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
@@ -10647,14 +10635,11 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
@@ -10874,14 +10859,11 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
diff --git a/Documentation/Ops.CTLD.html b/Documentation/Ops.CTLD.html
index 90de2572a..0d2134b38 100644
--- a/Documentation/Ops.CTLD.html
+++ b/Documentation/Ops.CTLD.html
@@ -5632,7 +5632,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
- #table
+
CTLD.CtldUnits
@@ -5718,7 +5718,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
-
+ #table
CTLD.FreeFMFrequencies
@@ -5729,7 +5729,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
-
+ #table
CTLD.FreeUHFFrequencies
@@ -5740,7 +5740,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
-
+ #table
CTLD.FreeVHFFrequencies
@@ -12756,7 +12756,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
- #table
+
CTLD.CtldUnits
@@ -12842,7 +12842,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
-
+ #table
CTLD.FreeFMFrequencies
@@ -12853,7 +12853,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
-
+ #table
CTLD.FreeUHFFrequencies
@@ -12864,7 +12864,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
-
+ #table
CTLD.FreeVHFFrequencies
@@ -15052,7 +15052,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
- #table
+
CTLD.CtldUnits
@@ -15138,7 +15138,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
-
+ #table
CTLD.FreeFMFrequencies
@@ -15149,7 +15149,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
-
+ #table
CTLD.FreeUHFFrequencies
@@ -15160,7 +15160,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
-
+ #table
CTLD.FreeVHFFrequencies
diff --git a/Documentation/Tasking.Task.html b/Documentation/Tasking.Task.html
index f60e7a0cf..56ee56fae 100644
--- a/Documentation/Tasking.Task.html
+++ b/Documentation/Tasking.Task.html
@@ -2820,17 +2820,6 @@ but can separately be modified later in your mission using the
-
-
-
-
@@ -7467,17 +7456,6 @@ If the Unit is part of the Task, true is returned.
-
-
-
-
diff --git a/Documentation/Tasking.Task_A2G_Dispatcher.html b/Documentation/Tasking.Task_A2G_Dispatcher.html
index b7058dfdc..3d1959305 100644
--- a/Documentation/Tasking.Task_A2G_Dispatcher.html
+++ b/Documentation/Tasking.Task_A2G_Dispatcher.html
@@ -3084,11 +3084,14 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
@@ -3661,11 +3664,14 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
@@ -4848,11 +4854,14 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
@@ -6341,11 +6350,14 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
diff --git a/Documentation/Tasking.Task_Cargo.html b/Documentation/Tasking.Task_Cargo.html
index 69e29e113..eb5225e67 100644
--- a/Documentation/Tasking.Task_Cargo.html
+++ b/Documentation/Tasking.Task_Cargo.html
@@ -3113,7 +3113,7 @@ based on the tasking capabilities defined in
-
+
Cargo.Cargo#CARGO
FSM_PROCESS.Cargo
diff --git a/Documentation/Tasking.Task_Cargo_Dispatcher.html b/Documentation/Tasking.Task_Cargo_Dispatcher.html
index 081e7b1dc..5d079bbac 100644
--- a/Documentation/Tasking.Task_Cargo_Dispatcher.html
+++ b/Documentation/Tasking.Task_Cargo_Dispatcher.html
@@ -3091,18 +3091,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
-
-
-
-
+ #table
TASK_CARGO_DISPATCHER.DefaultDeployZones
@@ -4170,18 +4159,7 @@ This method can only be used once!
-
-
-
-
+ #table
TASK_CARGO_DISPATCHER.DefaultDeployZones
@@ -5028,18 +5006,7 @@ This method can only be used once!
-
-
-
-
+ #table
TASK_CARGO_DISPATCHER.DefaultDeployZones
@@ -6521,18 +6488,7 @@ This method can only be used once!
-
-
-
-
+ #table
TASK_CARGO_DISPATCHER.DefaultDeployZones
diff --git a/Documentation/Wrapper.Client.html b/Documentation/Wrapper.Client.html
index d2798c870..61cfd68e8 100644
--- a/Documentation/Wrapper.Client.html
+++ b/Documentation/Wrapper.Client.html
@@ -4232,7 +4232,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
-
Alive2.
+
Alive.
@@ -5346,7 +5346,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
-
Alive2.
+
Alive.
@@ -7610,7 +7610,7 @@ If the Unit is alive but not active, false is returned.
-
Alive2.
+
Alive.
@@ -16171,7 +16171,7 @@ Note that when the WayPoint parameter is used, the new start mission waypoint of
-
Alive2.
+
Alive.
@@ -19828,7 +19828,7 @@ Coordinates are dependent on the position of the maps origin.
-
Alive2.
+
Alive.
@@ -20502,7 +20502,7 @@ If the Identifiable is alive, true is returned.
-
Alive2.
+
Alive.
@@ -20782,7 +20782,7 @@ If the Identifiable is alive, true is returned.
-
Alive2.
+
Alive.
diff --git a/Documentation/Wrapper.Marker.html b/Documentation/Wrapper.Marker.html
index d67bf3716..0f64f0629 100644
--- a/Documentation/Wrapper.Marker.html
+++ b/Documentation/Wrapper.Marker.html
@@ -2899,6 +2899,28 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
Coordinate of the mark.
+
+
+
+
+
@@ -2983,7 +3005,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
#boolean
-
MARKER.toall
+
MARKER.togroup
@@ -4983,6 +5005,28 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
Coordinate of the mark.
+
+
+
+
+
@@ -5067,7 +5111,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
#boolean
-
MARKER.toall
+
MARKER.togroup
@@ -6575,6 +6619,28 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
Coordinate of the mark.
+
+
+
+
+
@@ -6659,7 +6725,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau