diff --git a/Documentation/AI.AI_A2A_Dispatcher.html b/Documentation/AI.AI_A2A_Dispatcher.html
index abe745b2e..6234f6ff6 100644
--- a/Documentation/AI.AI_A2A_Dispatcher.html
+++ b/Documentation/AI.AI_A2A_Dispatcher.html
@@ -4873,14 +4873,11 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
@@ -11540,14 +11537,11 @@ They will lock the parking spot.
@@ -12805,14 +12799,11 @@ They will lock the parking spot.
@@ -14372,14 +14363,11 @@ They will lock the parking spot.
diff --git a/Documentation/AI.AI_A2G_Dispatcher.html b/Documentation/AI.AI_A2G_Dispatcher.html
index fca331a5a..32a10c3cf 100644
--- a/Documentation/AI.AI_A2G_Dispatcher.html
+++ b/Documentation/AI.AI_A2G_Dispatcher.html
@@ -4763,17 +4763,6 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
The Defender Default Settings over all Squadrons.
-
-
-
-
@@ -13296,17 +13285,6 @@ multiplied by the Overhead and rounded up to the smallest integer.
The Defender Default Settings over all Squadrons.
-
-
-
-
@@ -14635,17 +14613,6 @@ multiplied by the Overhead and rounded up to the smallest integer.
The Defender Default Settings over all Squadrons.
-
-
-
-
@@ -16276,17 +16243,6 @@ multiplied by the Overhead and rounded up to the smallest integer.
The Defender Default Settings over all Squadrons.
-
-
-
-
diff --git a/Documentation/AI.AI_Air.html b/Documentation/AI.AI_Air.html
index 344c14ab1..e316b7fe4 100644
--- a/Documentation/AI.AI_Air.html
+++ b/Documentation/AI.AI_Air.html
@@ -3075,6 +3075,17 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
+
+
+
+
@@ -5903,6 +5914,17 @@ A random value in this bracket is then applied in the waypoint routing generatio
+
+
+
+
@@ -6650,6 +6672,17 @@ A random value in this bracket is then applied in the waypoint routing generatio
+
+
+
+
@@ -8285,6 +8318,17 @@ A random value in this bracket is then applied in the waypoint routing generatio
+
+
+
+
diff --git a/Documentation/AI.AI_Air_Squadron.html b/Documentation/AI.AI_Air_Squadron.html
index fc6163c37..e8016c1a7 100644
--- a/Documentation/AI.AI_Air_Squadron.html
+++ b/Documentation/AI.AI_Air_Squadron.html
@@ -2560,6 +2560,17 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
+
+
+
+
@@ -3631,6 +3642,17 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
+
+
+
+
diff --git a/Documentation/AI.AI_Cargo_Airplane.html b/Documentation/AI.AI_Cargo_Airplane.html
index 126015364..86cb687bc 100644
--- a/Documentation/AI.AI_Cargo_Airplane.html
+++ b/Documentation/AI.AI_Cargo_Airplane.html
@@ -2815,9 +2815,6 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
-
- Aircraft is on a pickup mission.
-
@@ -4608,9 +4605,6 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
-
- Aircraft is on a pickup mission.
-
@@ -5243,9 +5237,6 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
-
- Aircraft is on a pickup mission.
-
@@ -6766,9 +6757,6 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
-
- Aircraft is on a pickup mission.
-
diff --git a/Documentation/Cargo.CargoGroup.html b/Documentation/Cargo.CargoGroup.html
index 5fc3b0cc4..5ac256b00 100644
--- a/Documentation/Cargo.CargoGroup.html
+++ b/Documentation/Cargo.CargoGroup.html
@@ -1935,10 +1935,27 @@ Therefore, this class is considered to be deprecated
+
+
+
@@ -1950,6 +1967,20 @@ Therefore, this class is considered to be deprecated
+
+
+
+
@@ -3239,10 +3270,27 @@ This works for ground only groups.
+
+
+
@@ -3254,6 +3302,20 @@ This works for ground only groups.
+
+
+
+
diff --git a/Documentation/Cargo.CargoUnit.html b/Documentation/Cargo.CargoUnit.html
index 28d4b800d..295662cc0 100644
--- a/Documentation/Cargo.CargoUnit.html
+++ b/Documentation/Cargo.CargoUnit.html
@@ -1813,6 +1813,17 @@ Therefore, this class is considered to be deprecated
+
+
+
+
+
+
CARGO_UNIT.CargoInAir
@@ -2517,6 +2528,17 @@ Therefore, this class is considered to be deprecated
+
+
+
+
+
+
CARGO_UNIT.CargoInAir
diff --git a/Documentation/Core.Set.html b/Documentation/Core.Set.html
index 1923096dd..9a780e4db 100644
--- a/Documentation/Core.Set.html
+++ b/Documentation/Core.Set.html
@@ -86316,21 +86316,32 @@ DatabaseSet = SET_ZONE:New()
Usage:
-
-- Create a new zone and start watching it every 5 secs for a certain GROUP entering or leaving
- local triggerzone = ZONE:New("ZonetoWatch"):Trigger(GROUP:FindByName("Aerial-1"))
-
- -- function to handle FSM event "EnteredZone"
- function triggerzone:OnAfterEnteredZone(From,Event,To,Group)
- MESSAGE:New("Group has entered zone!",15):ToAll()
- end
-
- -- function to handle FSM event "LeftZone"
- function triggerzone:OnAfterLeftZone(From,Event,To,Group)
- MESSAGE:New("Group has left zone!",15):ToAll()
- end
-
- -- Stop watching the zone
- triggerzone:TriggerStop()
+
-- Create a SET_GROUP and a SET_ZONE for this:
+
+ local groupset = SET_GROUP:New():FilterPrefixes("Aerial"):FilterStart()
+
+ -- Trigger will check each zone of the SET_ZONE every 5 secs for objects entering or leaving from the groupset
+ local zoneset = SET_ZONE:New():FilterPrefixes("Target Zone"):FilterOnce():Trigger(groupset)
+
+ -- Draw zones on map so we see what's going on
+ zoneset:ForEachZone(
+ function(zone)
+ zone:DrawZone(-1, {0,1,0}, Alpha, FillColor, FillAlpha, 4, ReadOnly)
+ end
+ )
+
+ -- This FSM function will be called for entering objects
+ function zoneset:OnAfterEnteredZone(From,Event,To,Controllable,Zone)
+ MESSAGE:New("Group "..Controllable:GetName() .. " entered zone "..Zone:GetName(),10,"Set Trigger"):ToAll()
+ end
+
+ -- This FSM function will be called for leaving objects
+ function zoneset:OnAfterLeftZone(From,Event,To,Controllable,Zone)
+ MESSAGE:New("Group "..Controllable:GetName() .. " left zone "..Zone:GetName(),10,"Set Trigger"):ToAll()
+ end
+
+ -- Stop watching after 1 hour
+ zoneset:__TriggerStop(3600)
diff --git a/Documentation/Core.Settings.html b/Documentation/Core.Settings.html
index de9990597..ad7ea7b43 100644
--- a/Documentation/Core.Settings.html
+++ b/Documentation/Core.Settings.html
@@ -2910,17 +2910,6 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
-
-
-
-
@@ -5078,17 +5067,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 5b276ceb0..728a96d2a 100644
--- a/Documentation/Core.Spawn.html
+++ b/Documentation/Core.Spawn.html
@@ -2937,6 +2937,36 @@ and any spaces before and after the resulting name are removed.
SPAWN:_TranslateRotate(SpawnIndex, SpawnRootX, SpawnRootY, SpawnX, SpawnY, SpawnAngle) |
+ |
+
+
+ SPAWN.frequency |
+
+
+ |
+
+
+ SPAWN.livery_id |
+
+
+ |
+
+
+ SPAWN.modulation |
+
+
+ |
+
+
+ SPAWN.skill |
+
+
+ |
+
+
+ SPAWN.uncontrolled |
+
+
|
@@ -3625,20 +3655,6 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
-
-
-
-
-
-
- #number
-
SPAWN.SpawnCount
-
-
-
-
-
The internal counter of the amount of spawning the has happened since SpawnStart.
-
@@ -3672,6 +3688,17 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
+
+
+
+
@@ -3708,6 +3735,17 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
+
+
+
+
@@ -3741,6 +3779,17 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
+
+
+
+
@@ -3803,26 +3852,64 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
+
+
+
+
+
@@ -3835,6 +3922,17 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
+
+
+
+
@@ -3866,7 +3964,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
- #number
+
SPAWN.SpawnMaxGroups
@@ -3880,7 +3978,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
- #number
+
SPAWN.SpawnMaxUnitsAlive
@@ -4026,17 +4124,6 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
-
-
-
-
@@ -4071,7 +4158,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
-
Flag that indicates if all the Groups of the SpawnGroup need to be visible when Spawned.
+
When the first Spawn executes, all the Groups need to be made visible before start.
@@ -4148,6 +4235,61 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
+
+
+
+
+
+
+
+
@@ -9403,20 +9545,6 @@ This is needed to ensure that Re-SPAWNing only is done for landed AIR Groups.
-
-
-
-
-
- #number
-
SPAWN.SpawnCount
-
-
-
-
-
The internal counter of the amount of spawning the has happened since SpawnStart.
-
@@ -9450,6 +9578,17 @@ This is needed to ensure that Re-SPAWNing only is done for landed AIR Groups.
+
+
+
@@ -9486,6 +9625,17 @@ This is needed to ensure that Re-SPAWNing only is done for landed AIR Groups.
+
+
+
@@ -9519,6 +9669,17 @@ This is needed to ensure that Re-SPAWNing only is done for landed AIR Groups.
+
+
+
@@ -9581,26 +9742,64 @@ This is needed to ensure that Re-SPAWNing only is done for landed AIR Groups.
#boolean
-SPAWN.SpawnInitKeepUnitNames
+SPAWN.SpawnInitLimit
-
- Overwrite unit names by default with group name.
-
+
+
+
+
+
@@ -9613,6 +9812,17 @@ This is needed to ensure that Re-SPAWNing only is done for landed AIR Groups.
+
+
+
@@ -9644,7 +9854,7 @@ This is needed to ensure that Re-SPAWNing only is done for landed AIR Groups.
- #number
+
SPAWN.SpawnMaxGroups
@@ -9658,7 +9868,7 @@ This is needed to ensure that Re-SPAWNing only is done for landed AIR Groups.
- #number
+
SPAWN.SpawnMaxUnitsAlive
@@ -9804,17 +10014,6 @@ This is needed to ensure that Re-SPAWNing only is done for landed AIR Groups.
-
-
-
@@ -9849,7 +10048,7 @@ This is needed to ensure that Re-SPAWNing only is done for landed AIR Groups. Flag that indicates if all the Groups of the SpawnGroup need to be visible when Spawned.
+
When the first Spawn executes, all the Groups need to be made visible before start.
@@ -9926,6 +10125,61 @@ This is needed to ensure that Re-SPAWNing only is done for landed AIR Groups.
+
+
+
+
+
+
+
diff --git a/Documentation/Core.SpawnStatic.html b/Documentation/Core.SpawnStatic.html
index b4aba2de2..6fff7c603 100644
--- a/Documentation/Core.SpawnStatic.html
+++ b/Documentation/Core.SpawnStatic.html
@@ -1993,6 +1993,24 @@ such as position and heading.
SPAWNSTATIC:_SpawnStatic(Template, CountryID) |
Spawns a new static using a given template.
+ |
+
+
+ SPAWNSTATIC.heliport_callsign_id |
+
+
+ |
+
+
+ SPAWNSTATIC.heliport_frequency |
+
+
+ |
+
+
+ SPAWNSTATIC.heliport_modulation |
+
+
|
@@ -2907,6 +2925,39 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
+
+
+
+
+
+
@@ -4260,6 +4311,39 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
+
+
+
+
+
+
diff --git a/Documentation/Core.Spot.html b/Documentation/Core.Spot.html
index aef152546..b784c6539 100644
--- a/Documentation/Core.Spot.html
+++ b/Documentation/Core.Spot.html
@@ -2812,6 +2812,39 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
+
+
+
+
+
+
@@ -4095,6 +4128,39 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
+
+
+
+
+
+
@@ -5617,6 +5683,39 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
+
+
+
+
+
+
diff --git a/Documentation/Core.Zone.html b/Documentation/Core.Zone.html
index ada15dfd3..c77729943 100644
--- a/Documentation/Core.Zone.html
+++ b/Documentation/Core.Zone.html
@@ -6496,15 +6496,15 @@ end
Usage:
- -- Create a new zone and start watching it every 5 secs for a certain GROUP entering or leaving
+ -- Create a new zone and start watching it every 5 secs for a defined GROUP entering or leaving
local triggerzone = ZONE:New("ZonetoWatch"):Trigger(GROUP:FindByName("Aerial-1"))
- -- function to handle FSM event "EnteredZone"
+ -- This FSM function will be called when the group enters the zone
function triggerzone:OnAfterEnteredZone(From,Event,To,Group)
MESSAGE:New("Group has entered zone!",15):ToAll()
end
- -- function to handle FSM event "LeftZone"
+ -- This FSM function will be called when the group leaves the zone
function triggerzone:OnAfterLeftZone(From,Event,To,Group)
MESSAGE:New("Group has left zone!",15):ToAll()
end
@@ -11900,17 +11900,6 @@ When moose is loading dynamically (for moose class development), tracing is swit
-
-
-
-
diff --git a/Documentation/Functional.ATC_Ground.html b/Documentation/Functional.ATC_Ground.html
index e04f82089..adeadc7fc 100644
--- a/Documentation/Functional.ATC_Ground.html
+++ b/Documentation/Functional.ATC_Ground.html
@@ -3865,7 +3865,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
-
+ #table
ATC_GROUND.Airbases
@@ -3881,6 +3881,9 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
+
+
Kickspeed
+
@@ -4447,7 +4450,7 @@ An airbase can be specified to set the maximum kick speed for.
-
+ #table
ATC_GROUND.Airbases
@@ -4463,6 +4466,9 @@ An airbase can be specified to set the maximum kick speed for.
+
+
Kickspeed
+
diff --git a/Documentation/Functional.Designate.html b/Documentation/Functional.Designate.html
index fc43e39c7..3d80c844a 100644
--- a/Documentation/Functional.Designate.html
+++ b/Documentation/Functional.Designate.html
@@ -3540,17 +3540,6 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
-
-
-
-
@@ -6726,17 +6715,6 @@ Using the menu system, the player can "forget" a designation, so that gradually
-
-
-
-
@@ -7547,17 +7525,6 @@ Using the menu system, the player can "forget" a designation, so that gradually
-
-
-
-
@@ -8338,17 +8305,6 @@ Using the menu system, the player can "forget" a designation, so that gradually
-
-
-
-
@@ -10017,17 +9973,6 @@ Using the menu system, the player can "forget" a designation, so that gradually
-
-
-
-
diff --git a/Documentation/Functional.Detection.html b/Documentation/Functional.Detection.html
index b9e873456..aa493365a 100644
--- a/Documentation/Functional.Detection.html
+++ b/Documentation/Functional.Detection.html
@@ -19134,6 +19134,17 @@ When moose is loading dynamically (for moose class development), tracing is swit
+
+
+
+
@@ -19288,6 +19299,17 @@ When moose is loading dynamically (for moose class development), tracing is swit
+
+
+
+
@@ -23826,6 +23848,17 @@ zones that reflect cloudy areas where detected units may not be so easily visual
+
+
+
+
@@ -23980,6 +24013,17 @@ zones that reflect cloudy areas where detected units may not be so easily visual
+
+
+
+
@@ -25579,6 +25623,17 @@ zones that reflect cloudy areas where detected units may not be so easily visual
+
+
+
+
@@ -25733,6 +25788,17 @@ zones that reflect cloudy areas where detected units may not be so easily visual
+
+
+
+
diff --git a/Documentation/Functional.Mantis.html b/Documentation/Functional.Mantis.html
index d05d27303..6bc2f524f 100644
--- a/Documentation/Functional.Mantis.html
+++ b/Documentation/Functional.Mantis.html
@@ -3914,6 +3914,17 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
+
+
+
+
@@ -3947,6 +3958,17 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
+
+
+
+
@@ -4046,6 +4068,17 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
The ME name of the HQ object
+
+
+
+
@@ -4470,6 +4503,50 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
Prefix for logging
+
+
+
+
+
+
+
@@ -4542,6 +4619,9 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
+
+self.SAMCheckRanges = {}
+
@@ -8432,6 +8512,17 @@ E.g. `mymantis:SetAdvancedMode(true, 90)`
+
+
+
+
@@ -8465,6 +8556,17 @@ E.g. `mymantis:SetAdvancedMode(true, 90)`
+
+
+
+
@@ -8564,6 +8666,17 @@ E.g. `mymantis:SetAdvancedMode(true, 90)`
The ME name of the HQ object
+
+
+
+
@@ -8988,6 +9101,50 @@ E.g. `mymantis:SetAdvancedMode(true, 90)`
Prefix for logging
+
+
+
+
+
+
+
@@ -9060,6 +9217,9 @@ E.g. `mymantis:SetAdvancedMode(true, 90)`
+
+self.SAMCheckRanges = {}
+
diff --git a/Documentation/Functional.Movement.html b/Documentation/Functional.Movement.html
index f52009b30..1671a249f 100644
--- a/Documentation/Functional.Movement.html
+++ b/Documentation/Functional.Movement.html
@@ -2265,20 +2265,6 @@ 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.
-
-
-
-
@@ -2509,20 +2495,6 @@ 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 df9cbdb38..a2fa6978c 100644
--- a/Documentation/Functional.RAT.html
+++ b/Documentation/Functional.RAT.html
@@ -3468,12 +3468,6 @@ manager:Stop(7200)
RAT.termtype |
Type of terminal to be used when spawning at an airbase.
- |
-
-
- RAT.type |
-
-
|
@@ -4519,6 +4513,36 @@ and any spaces before and after the resulting name are removed.
RAT:_TranslateRotate(SpawnIndex, SpawnRootX, SpawnRootY, SpawnX, SpawnY, SpawnAngle) |
+ |
+
+
+ RAT.frequency |
+
+
+ |
+
+
+ RAT.livery_id |
+
+
+ |
+
+
+ RAT.modulation |
+
+
+ |
+
+
+ RAT.skill |
+
+
+ |
+
+
+ RAT.uncontrolled |
+
+
|
@@ -6910,17 +6934,6 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
Type of terminal to be used when spawning at an airbase.
-
-
-
-
@@ -14801,17 +14814,6 @@ Initializes the ratcraft array and group menu.
Type of terminal to be used when spawning at an airbase.
-
-
-
-
@@ -21134,17 +21136,6 @@ This is needed to ensure that Re-SPAWNing only is done for landed AIR Groups.Type of terminal to be used when spawning at an airbase.
-
-
-
-
diff --git a/Documentation/Functional.Scoring.html b/Documentation/Functional.Scoring.html
index b68dac0dd..d8d243d80 100644
--- a/Documentation/Functional.Scoring.html
+++ b/Documentation/Functional.Scoring.html
@@ -2863,11 +2863,14 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
@@ -5449,11 +5452,14 @@ The scale magnifies the scores given to the players.
diff --git a/Documentation/Ops.Airboss.html b/Documentation/Ops.Airboss.html
index 3d241cd74..9ae647c12 100644
--- a/Documentation/Ops.Airboss.html
+++ b/Documentation/Ops.Airboss.html
@@ -9604,17 +9604,6 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
Radio queue of LSO.
-
-
-
-
@@ -9626,17 +9615,6 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
Radio queue of marshal.
-
-
-
-
@@ -29825,17 +29803,6 @@ If removed flight is the section lead, we try to find a new leader.
Radio queue of LSO.
-
-
-
-
@@ -29847,17 +29814,6 @@ If removed flight is the section lead, we try to find a new leader.
Radio queue of marshal.
-
-
-
-
@@ -32926,17 +32882,6 @@ If removed flight is the section lead, we try to find a new leader.
Radio queue of LSO.
-
-
-
-
@@ -32948,17 +32893,6 @@ If removed flight is the section lead, we try to find a new leader.
Radio queue of marshal.
-
-
-
-
@@ -40567,7 +40501,7 @@ When moose is loading dynamically (for moose class development), tracing is swit
- Set current case.
+ Set case to that of lead.
@@ -40637,7 +40571,7 @@ When moose is loading dynamically (for moose class development), tracing is swit
- Also decrease flag for section members of flight.
+ Decrease stack/flag. Human player needs to take care himself.
@@ -40854,9 +40788,6 @@ When moose is loading dynamically (for moose class development), tracing is swit
-
- Set new time stamp.
-
@@ -41015,6 +40946,17 @@ When moose is loading dynamically (for moose class development), tracing is swit
Band modulation.
+
+
+
+
diff --git a/Documentation/Ops.CSAR.html b/Documentation/Ops.CSAR.html
index 5938458f3..dc0fdf380 100644
--- a/Documentation/Ops.CSAR.html
+++ b/Documentation/Ops.CSAR.html
@@ -4379,11 +4379,14 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
@@ -4751,6 +4754,20 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
+
+
@@ -4776,6 +4793,20 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
+
+
+
+
+ #number
+
CSAR.rescues
+
+
+
+
+
counter for successful rescue landings at FARP/AFB/MASH
+
+
+
@@ -10358,11 +10389,14 @@ callsigns from playername or group name.
@@ -10730,6 +10764,20 @@ callsigns from playername or group name.
+
+
@@ -10755,6 +10803,20 @@ callsigns from playername or group name.
+
+
+
+
+ #number
+
CSAR.rescues
+
+
+
+
+
counter for successful rescue landings at FARP/AFB/MASH
+
+
+
@@ -12822,11 +12884,14 @@ callsigns from playername or group name.
@@ -13194,6 +13259,20 @@ callsigns from playername or group name.
+
+
@@ -13219,6 +13298,20 @@ callsigns from playername or group name.
+
+
+
+
+ #number
+
CSAR.rescues
+
+
+
+
+
counter for successful rescue landings at FARP/AFB/MASH
+
+
+
diff --git a/Documentation/Ops.CTLD.html b/Documentation/Ops.CTLD.html
index 89b11c078..a4c938185 100644
--- a/Documentation/Ops.CTLD.html
+++ b/Documentation/Ops.CTLD.html
@@ -7760,7 +7760,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
-
+ #table
CTLD.FreeFMFrequencies
@@ -17389,7 +17389,7 @@ However, if you create a new folder inside the miz file, which contains the soun
-
+ #table
CTLD.FreeFMFrequencies
@@ -19845,7 +19845,7 @@ However, if you create a new folder inside the miz file, which contains the soun
-
+ #table
CTLD.FreeFMFrequencies
@@ -29540,6 +29540,17 @@ When moose is loading dynamically (for moose class development), tracing is swit
+
+
+
+
@@ -30193,6 +30204,17 @@ When moose is loading dynamically (for moose class development), tracing is swit
+
+
+
+
@@ -33728,6 +33750,17 @@ When moose is loading dynamically (for moose class development), tracing is swit
template for a group of 10 paratroopers
+
+
+
+
@@ -35054,6 +35087,17 @@ Use either this method to integrate the Hercules **or** the one from the "normal
template for a group of 10 paratroopers
+
+
+
+
diff --git a/Documentation/Tasking.Task_A2A_Dispatcher.html b/Documentation/Tasking.Task_A2A_Dispatcher.html
index 3479ee28a..4849d0f3c 100644
--- a/Documentation/Tasking.Task_A2A_Dispatcher.html
+++ b/Documentation/Tasking.Task_A2A_Dispatcher.html
@@ -2936,7 +2936,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
-
+ #boolean
TASK_A2A_DISPATCHER.FlashNewTask
@@ -3661,7 +3661,7 @@ If too large, any airborne cap may not be able to reach the detected target area
-
+ #boolean
TASK_A2A_DISPATCHER.FlashNewTask
@@ -4837,7 +4837,7 @@ If too large, any airborne cap may not be able to reach the detected target area
-
+ #boolean
TASK_A2A_DISPATCHER.FlashNewTask
@@ -6315,7 +6315,7 @@ If too large, any airborne cap may not be able to reach the detected target area
-
+ #boolean
TASK_A2A_DISPATCHER.FlashNewTask
diff --git a/Documentation/Tasking.Task_A2G_Dispatcher.html b/Documentation/Tasking.Task_A2G_Dispatcher.html
index df5e8ea05..0be3fef82 100644
--- a/Documentation/Tasking.Task_A2G_Dispatcher.html
+++ b/Documentation/Tasking.Task_A2G_Dispatcher.html
@@ -3206,11 +3206,14 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
@@ -3783,11 +3786,14 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
@@ -4970,11 +4976,14 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
@@ -6459,11 +6468,14 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
diff --git a/Documentation/Tasking.Task_Cargo_Dispatcher.html b/Documentation/Tasking.Task_Cargo_Dispatcher.html
index f4aadfac7..96eae75df 100644
--- a/Documentation/Tasking.Task_Cargo_Dispatcher.html
+++ b/Documentation/Tasking.Task_Cargo_Dispatcher.html
@@ -3257,7 +3257,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
- #table
+
TASK_CARGO_DISPATCHER.DefaultDeployZones
@@ -4407,7 +4407,7 @@ This method can only be used once!
- #table
+
TASK_CARGO_DISPATCHER.DefaultDeployZones
@@ -5309,7 +5309,7 @@ This method can only be used once!
- #table
+
TASK_CARGO_DISPATCHER.DefaultDeployZones
@@ -6842,7 +6842,7 @@ This method can only be used once!
- #table
+
TASK_CARGO_DISPATCHER.DefaultDeployZones
diff --git a/Documentation/Utilities.FiFo.html b/Documentation/Utilities.FiFo.html
index beffcfabb..5fca05cd9 100644
--- a/Documentation/Utilities.FiFo.html
+++ b/Documentation/Utilities.FiFo.html
@@ -3251,6 +3251,17 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
Stack by pointer.
+
+
+
+
@@ -4100,6 +4111,17 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
Stack by pointer.
+
+
+
+
diff --git a/Documentation/Wrapper.Group.html b/Documentation/Wrapper.Group.html
index efa639687..64bdcd044 100644
--- a/Documentation/Wrapper.Group.html
+++ b/Documentation/Wrapper.Group.html
@@ -5187,7 +5187,18 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
GROUP.InitRespawnRandomizePositionOuter
diff --git a/Documentation/Wrapper.Marker.html b/Documentation/Wrapper.Marker.html
index d2a8e2ca9..3ce296778 100644
--- a/Documentation/Wrapper.Marker.html
+++ b/Documentation/Wrapper.Marker.html
@@ -3021,6 +3021,28 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
Coordinate of the mark.
+
+
+
+
+
@@ -3098,28 +3120,6 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
Text displayed in the mark panel.
-
-
-
-
-
@@ -5160,6 +5160,28 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
Coordinate of the mark.
+
+
+
+
+
@@ -5237,28 +5259,6 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
Text displayed in the mark panel.
-
-
-
-
-
@@ -6770,6 +6770,28 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
Coordinate of the mark.
+
+
+
+
+
@@ -6847,28 +6869,6 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
Text displayed in the mark panel.
-
-
-
-
-