Auto commit by GitHub Actions Workflow

This commit is contained in:
MooseBotter 2023-10-31 12:10:47 +00:00
parent 20c73e918b
commit c17109d2a0
41 changed files with 935 additions and 878 deletions

View File

@ -8650,7 +8650,7 @@ will be considered to receive the command to engage that target area.</p>
<p>**Use the method <a href="##(AI_A2A_DISPATCHER).SetEngageRadius">AI_A2A_DISPATCHER.SetEngageRadius</a>() to modify the default Engage Radius for ALL squadrons.**</p> <p>**Use the method <a href="##(AI_A2A_DISPATCHER).SetEngageRadius">AI_A2A_DISPATCHER.SetEngageRadius</a>() to modify the default Engage Radius for ALL squadrons.**</p>
<p>Demonstration Mission: <a href="https://github.com/FlightControl-Master/MOOSE_MISSIONS/tree/release-2-2-pre/AID%20-%20AI%20Dispatching/AID-019%20-%20AI_A2A%20-%20Engage%20Range%20Test">AID-019 - AI_A2A - Engage Range Test</a></p> <p>Demonstration Mission: <a href="https://github.com/FlightControl-Master/MOOSE_MISSIONS/tree/master/AID%20-%20AI%20Dispatching/AID-A2A%20-%20AI%20A2A%20Dispatching/AID-A2A-019%20-%20Engage%20Range%20Test">AID-019 - AI_A2A - Engage Range Test</a></p>
<div id= "#Functions##SetEngageRadius" class="w3-show w3-white"> <div id= "#Functions##SetEngageRadius" class="w3-show w3-white">
@ -8717,7 +8717,7 @@ when you don't want to let the AI_A2A_DISPATCHER react immediately when a certai
<p>Use the method <a href="##(AI_A2A_DISPATCHER).SetGciRadius">AI_A2A_DISPATCHER.SetGciRadius</a>() to set a specific controlled ground intercept radius. <p>Use the method <a href="##(AI_A2A_DISPATCHER).SetGciRadius">AI_A2A_DISPATCHER.SetGciRadius</a>() to set a specific controlled ground intercept radius.
<strong>The Ground Controlled Intercept radius is defined for ALL squadrons which are operational.</strong></p> <strong>The Ground Controlled Intercept radius is defined for ALL squadrons which are operational.</strong></p>
<p>Demonstration Mission: <a href="https://github.com/FlightControl-Master/MOOSE_MISSIONS/tree/release-2-2-pre/AID%20-%20AI%20Dispatching/AID-013%20-%20AI_A2A%20-%20Intercept%20Test">AID-013 - AI_A2A - Intercept Test</a></p> <p>Demonstration Mission: <a href="https://github.com/FlightControl-Master/MOOSE_MISSIONS/tree/master/AID%20-%20AI%20Dispatching/AID-A2A%20-%20AI%20A2A%20Dispatching/AID-A2A-013%20-%20Intercept%20Test">AID-013 - AI_A2A - Intercept Test</a></p>
<div id= "#Functions##SetGciRadius" class="w3-show w3-white"> <div id= "#Functions##SetGciRadius" class="w3-show w3-white">

View File

@ -1640,34 +1640,20 @@
<p>Use the Engage trigger to intercept intruders.</p> <p>Use the Engage trigger to intercept intruders.</p>
<p><img src="..\Presentations\AI_GCI\Dia3.JPG" alt="Process"/></p>
<p>The AI_A2A_GCI is assigned a <a href="Wrapper.Group.html">Wrapper.Group</a> and this must be done before the AI_A2A_GCI process can be started using the <strong>Start</strong> event.</p> <p>The AI_A2A_GCI is assigned a <a href="Wrapper.Group.html">Wrapper.Group</a> and this must be done before the AI_A2A_GCI process can be started using the <strong>Start</strong> event.</p>
<p><img src="..\Presentations\AI_GCI\Dia4.JPG" alt="Process"/></p>
<p>The AI will fly towards the random 3D point within the patrol zone, using a random speed within the given altitude and speed limits. <p>The AI will fly towards the random 3D point within the patrol zone, using a random speed within the given altitude and speed limits.
Upon arrival at the 3D point, a new random 3D point will be selected within the patrol zone using the given limits.</p> Upon arrival at the 3D point, a new random 3D point will be selected within the patrol zone using the given limits.</p>
<p><img src="..\Presentations\AI_GCI\Dia5.JPG" alt="Process"/></p>
<p>This cycle will continue.</p> <p>This cycle will continue.</p>
<p><img src="..\Presentations\AI_GCI\Dia6.JPG" alt="Process"/></p>
<p>During the patrol, the AI will detect enemy targets, which are reported through the <strong>Detected</strong> event.</p> <p>During the patrol, the AI will detect enemy targets, which are reported through the <strong>Detected</strong> event.</p>
<p><img src="..\Presentations\AI_GCI\Dia9.JPG" alt="Process"/></p>
<p>When enemies are detected, the AI will automatically engage the enemy.</p> <p>When enemies are detected, the AI will automatically engage the enemy.</p>
<p><img src="..\Presentations\AI_GCI\Dia10.JPG" alt="Process"/></p>
<p>Until a fuel or damage threshold has been reached by the AI, or when the AI is commanded to RTB. <p>Until a fuel or damage threshold has been reached by the AI, or when the AI is commanded to RTB.
When the fuel threshold has been reached, the airplane will fly towards the nearest friendly airbase and will land.</p> When the fuel threshold has been reached, the airplane will fly towards the nearest friendly airbase and will land.</p>
<p><img src="..\Presentations\AI_GCI\Dia13.JPG" alt="Process"/></p>
<h2>1. AI_A2A_GCI constructor</h2> <h2>1. AI_A2A_GCI constructor</h2>
<ul> <ul>
@ -1702,18 +1688,14 @@ When the fuel threshold has been reached, the airplane will fly towards the near
<h2>3. Set the Range of Engagement</h2> <h2>3. Set the Range of Engagement</h2>
<p><img src="..\Presentations\AI_GCI\Dia11.JPG" alt="Range"/></p>
<p>An optional range can be set in meters, <p>An optional range can be set in meters,
that will define when the AI will engage with the detected airborne enemy targets. that will define when the AI will engage with the detected airborne enemy targets.
The range can be beyond or smaller than the range of the Patrol Zone. The range can be beyond or smaller than the range of the Patrol Zone.
The range is applied at the position of the AI. The range is applied at the position of the AI.
Use the method <a href="AI.AI_GCI.html##(AI_A2A_GCI).SetEngageRange">AI.AI_GCI#AI_A2A_GCI.SetEngageRange</a>() to define that range.</p> Use the method <a href="AI.AI_A2A_GCI.html##(AI_A2A_GCI).SetEngageRange">AI.AI_A2A_GCI#AI_A2A_GCI.SetEngageRange</a>() to define that range.</p>
<h2>4. Set the Zone of Engagement</h2> <h2>4. Set the Zone of Engagement</h2>
<p><img src="..\Presentations\AI_GCI\Dia12.JPG" alt="Zone"/></p>
<p>An optional <a href="Core.Zone.html">Core.Zone</a> can be set, <p>An optional <a href="Core.Zone.html">Core.Zone</a> can be set,
that will define when the AI will engage with the detected airborne enemy targets. that will define when the AI will engage with the detected airborne enemy targets.
Use the method <a href="AI.AI_CAP.html##(AI_CAP_ZONE).SetEngageZone">AI.AI_CAP#AI_CAP_ZONE.SetEngageZone</a>() to define that Zone.</p> Use the method <a href="AI.AI_CAP.html##(AI_CAP_ZONE).SetEngageZone">AI.AI_CAP#AI_CAP_ZONE.SetEngageZone</a>() to define that Zone.</p>

View File

@ -4756,17 +4756,6 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<p> The Defender Default Settings over all Squadrons.</p> <p> The Defender Default Settings over all Squadrons.</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(AI_A2G_DISPATCHER).DefenderPatrolIndex" ><strong>AI_A2G_DISPATCHER.DefenderPatrolIndex</strong></a>
</div> </div>
</div> </div>
@ -13289,17 +13278,6 @@ multiplied by the Overhead and rounded up to the smallest integer. </p>
<p> The Defender Default Settings over all Squadrons.</p> <p> The Defender Default Settings over all Squadrons.</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(AI_A2G_DISPATCHER).DefenderPatrolIndex" ><strong>AI_A2G_DISPATCHER.DefenderPatrolIndex</strong></a>
</div> </div>
</div> </div>
@ -14628,17 +14606,6 @@ multiplied by the Overhead and rounded up to the smallest integer. </p>
<p> The Defender Default Settings over all Squadrons.</p> <p> The Defender Default Settings over all Squadrons.</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(AI_A2G_DISPATCHER).DefenderPatrolIndex" ><strong>AI_A2G_DISPATCHER.DefenderPatrolIndex</strong></a>
</div> </div>
</div> </div>
@ -16269,17 +16236,6 @@ multiplied by the Overhead and rounded up to the smallest integer. </p>
<p> The Defender Default Settings over all Squadrons.</p> <p> The Defender Default Settings over all Squadrons.</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(AI_A2G_DISPATCHER).DefenderPatrolIndex" ><strong>AI_A2G_DISPATCHER.DefenderPatrolIndex</strong></a>
</div> </div>
</div> </div>

View File

@ -3177,28 +3177,6 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(AI_AIR).RTBSpeedMaxFactor" ><strong>AI_AIR.RTBSpeedMaxFactor</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(AI_AIR).RTBSpeedMinFactor" ><strong>AI_AIR.RTBSpeedMinFactor</strong></a>
</div> </div>
</div> </div>
@ -6005,28 +5983,6 @@ A random value in this bracket is then applied in the waypoint routing generatio
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(AI_AIR).RTBSpeedMaxFactor" ><strong>AI_AIR.RTBSpeedMaxFactor</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(AI_AIR).RTBSpeedMinFactor" ><strong>AI_AIR.RTBSpeedMinFactor</strong></a>
</div> </div>
</div> </div>
@ -6752,28 +6708,6 @@ A random value in this bracket is then applied in the waypoint routing generatio
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(AI_AIR).RTBSpeedMaxFactor" ><strong>AI_AIR.RTBSpeedMaxFactor</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(AI_AIR).RTBSpeedMinFactor" ><strong>AI_AIR.RTBSpeedMinFactor</strong></a>
</div> </div>
</div> </div>
@ -8387,28 +8321,6 @@ A random value in this bracket is then applied in the waypoint routing generatio
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(AI_AIR).RTBSpeedMaxFactor" ><strong>AI_AIR.RTBSpeedMaxFactor</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(AI_AIR).RTBSpeedMinFactor" ><strong>AI_AIR.RTBSpeedMinFactor</strong></a>
</div> </div>
</div> </div>

View File

@ -4516,6 +4516,17 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<p> The Defender Default Settings over all Squadrons.</p> <p> The Defender Default Settings over all Squadrons.</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(AI_AIR_DISPATCHER).DefenderPatrolIndex" ><strong>AI_AIR_DISPATCHER.DefenderPatrolIndex</strong></a>
</div> </div>
</div> </div>
@ -9813,6 +9824,17 @@ multiplied by the Overhead and rounded up to the smallest integer. </p>
<p> The Defender Default Settings over all Squadrons.</p> <p> The Defender Default Settings over all Squadrons.</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(AI_AIR_DISPATCHER).DefenderPatrolIndex" ><strong>AI_AIR_DISPATCHER.DefenderPatrolIndex</strong></a>
</div> </div>
</div> </div>
@ -11130,6 +11152,17 @@ multiplied by the Overhead and rounded up to the smallest integer. </p>
<p> The Defender Default Settings over all Squadrons.</p> <p> The Defender Default Settings over all Squadrons.</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(AI_AIR_DISPATCHER).DefenderPatrolIndex" ><strong>AI_AIR_DISPATCHER.DefenderPatrolIndex</strong></a>
</div> </div>
</div> </div>
@ -12749,6 +12782,17 @@ multiplied by the Overhead and rounded up to the smallest integer. </p>
<p> The Defender Default Settings over all Squadrons.</p> <p> The Defender Default Settings over all Squadrons.</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(AI_AIR_DISPATCHER).DefenderPatrolIndex" ><strong>AI_AIR_DISPATCHER.DefenderPatrolIndex</strong></a>
</div> </div>
</div> </div>

View File

@ -2797,9 +2797,6 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<p> No loading happened, so we need to pickup something else.</p>
</div> </div>
</div> </div>
@ -4830,9 +4827,6 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<p> No loading happened, so we need to pickup something else.</p>
</div> </div>
</div> </div>
@ -5445,9 +5439,6 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<p> No loading happened, so we need to pickup something else.</p>
</div> </div>
</div> </div>
@ -6948,9 +6939,6 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<p> No loading happened, so we need to pickup something else.</p>
</div> </div>
</div> </div>

View File

@ -2746,17 +2746,6 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<div class="fields w3-container w3-theme-l2"> <div class="fields w3-container w3-theme-l2">
<h2>Field(s)</h2> <h2>Field(s)</h2>
</div> </div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(AI_CARGO_AIRPLANE).Airbase" ><strong>AI_CARGO_AIRPLANE.Airbase</strong></a>
</div>
</div>
<div> <div>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
@ -2787,6 +2776,9 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<p> Aircraft is on a depoly mission.</p>
</div> </div>
</div> </div>
@ -2812,6 +2804,9 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<p> Aircraft is on a pickup mission.</p>
</div> </div>
</div> </div>
@ -4530,17 +4525,6 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<div class="fields w3-container w3-theme-l2"> <div class="fields w3-container w3-theme-l2">
<h2>Field(s)</h2> <h2>Field(s)</h2>
</div> </div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(AI_CARGO_AIRPLANE).Airbase" ><strong>AI_CARGO_AIRPLANE.Airbase</strong></a>
</div>
</div>
<div> <div>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
@ -4571,6 +4555,9 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<p> Aircraft is on a depoly mission.</p>
</div> </div>
</div> </div>
@ -4596,6 +4583,9 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<p> Aircraft is on a pickup mission.</p>
</div> </div>
</div> </div>
@ -5156,17 +5146,6 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<div class="fields w3-container w3-theme-l2"> <div class="fields w3-container w3-theme-l2">
<h2>Field(s)</h2> <h2>Field(s)</h2>
</div> </div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(AI_CARGO_AIRPLANE).Airbase" ><strong>AI_CARGO_AIRPLANE.Airbase</strong></a>
</div>
</div>
<div> <div>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
@ -5197,6 +5176,9 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<p> Aircraft is on a depoly mission.</p>
</div> </div>
</div> </div>
@ -5222,6 +5204,9 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<p> Aircraft is on a pickup mission.</p>
</div> </div>
</div> </div>
@ -6670,17 +6655,6 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<div class="fields w3-container w3-theme-l2"> <div class="fields w3-container w3-theme-l2">
<h2>Field(s)</h2> <h2>Field(s)</h2>
</div> </div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(AI_CARGO_AIRPLANE).Airbase" ><strong>AI_CARGO_AIRPLANE.Airbase</strong></a>
</div>
</div>
<div> <div>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
@ -6711,6 +6685,9 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<p> Aircraft is on a depoly mission.</p>
</div> </div>
</div> </div>
@ -6736,6 +6713,9 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<p> Aircraft is on a pickup mission.</p>
</div> </div>
</div> </div>

View File

@ -2911,28 +2911,22 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<div> <div>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(AI_CARGO_HELICOPTER).landingheight" ><strong>AI_CARGO_HELICOPTER.landingheight</strong></a> <a id="#(AI_CARGO_HELICOPTER).landingheight" ><strong>AI_CARGO_HELICOPTER.landingheight</strong></a>
<p> meter</p>
</div> </div>
</div> </div>
<div> <div>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(AI_CARGO_HELICOPTER).landingspeed" ><strong>AI_CARGO_HELICOPTER.landingspeed</strong></a> <a id="#(AI_CARGO_HELICOPTER).landingspeed" ><strong>AI_CARGO_HELICOPTER.landingspeed</strong></a>
<p> kph</p>
</div> </div>
</div> </div>
@ -4835,28 +4829,22 @@ Adjust if necessary.</code></pre>
<div> <div>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(AI_CARGO_HELICOPTER).landingheight" ><strong>AI_CARGO_HELICOPTER.landingheight</strong></a> <a id="#(AI_CARGO_HELICOPTER).landingheight" ><strong>AI_CARGO_HELICOPTER.landingheight</strong></a>
<p> meter</p>
</div> </div>
</div> </div>
<div> <div>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(AI_CARGO_HELICOPTER).landingspeed" ><strong>AI_CARGO_HELICOPTER.landingspeed</strong></a> <a id="#(AI_CARGO_HELICOPTER).landingspeed" ><strong>AI_CARGO_HELICOPTER.landingspeed</strong></a>
<p> kph</p>
</div> </div>
</div> </div>
@ -5511,28 +5499,22 @@ Adjust if necessary.</code></pre>
<div> <div>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(AI_CARGO_HELICOPTER).landingheight" ><strong>AI_CARGO_HELICOPTER.landingheight</strong></a> <a id="#(AI_CARGO_HELICOPTER).landingheight" ><strong>AI_CARGO_HELICOPTER.landingheight</strong></a>
<p> meter</p>
</div> </div>
</div> </div>
<div> <div>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(AI_CARGO_HELICOPTER).landingspeed" ><strong>AI_CARGO_HELICOPTER.landingspeed</strong></a> <a id="#(AI_CARGO_HELICOPTER).landingspeed" ><strong>AI_CARGO_HELICOPTER.landingspeed</strong></a>
<p> kph</p>
</div> </div>
</div> </div>
@ -7075,28 +7057,22 @@ Adjust if necessary.</code></pre>
<div> <div>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(AI_CARGO_HELICOPTER).landingheight" ><strong>AI_CARGO_HELICOPTER.landingheight</strong></a> <a id="#(AI_CARGO_HELICOPTER).landingheight" ><strong>AI_CARGO_HELICOPTER.landingheight</strong></a>
<p> meter</p>
</div> </div>
</div> </div>
<div> <div>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(AI_CARGO_HELICOPTER).landingspeed" ><strong>AI_CARGO_HELICOPTER.landingspeed</strong></a> <a id="#(AI_CARGO_HELICOPTER).landingspeed" ><strong>AI_CARGO_HELICOPTER.landingspeed</strong></a>
<p> kph</p>
</div> </div>
</div> </div>

View File

@ -1640,8 +1640,8 @@
<h3>Contributions:</h3> <h3>Contributions:</h3>
<ul> <ul>
<li><strong><a href="https://forums.eagle.ru/member.php?u=112075">Dutch_Baron</a></strong>: Working together with James has resulted in the creation of the AI_BALANCER class. James has shared his ideas on balancing AI with air units, and together we made a first design which you can use now :-)</li> <li><strong>Dutch_Baron</strong>: Working together with James has resulted in the creation of the AI_BALANCER class. James has shared his ideas on balancing AI with air units, and together we made a first design which you can use now :-)</li>
<li><strong><a href="https://forums.eagle.ru/member.php?u=62835">Pikey</a></strong>: Testing and API concept review.</li> <li><strong>Pikey</strong>: Testing and API concept review.</li>
</ul> </ul>
<hr/> <hr/>

View File

@ -3199,7 +3199,7 @@ Therefore, this class is considered to be deprecated</p>
<div class="w3-row w3-margin-left w3-border-bottom w3-border-l2"> <div class="w3-row w3-margin-left w3-border-bottom w3-border-l2">
<div class="w3-half"> <div class="w3-half">
<p> <p>
<a href="Task.Tasking.html##(TASK)">Task.Tasking#TASK</a> <a href="Tasking.Task.html##(TASK)">Tasking.Task#TASK</a>
<strong><strong>Task</strong></strong> <strong><strong>Task</strong></strong>
</p> </p>
</div> </div>

View File

@ -3136,7 +3136,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<div class="w3-row w3-margin-left w3-border-bottom w3-border-l2"> <div class="w3-row w3-margin-left w3-border-bottom w3-border-l2">
<div class="w3-half"> <div class="w3-half">
<p> <p>
<a href="Task.Tasking.html##(TASK)">Task.Tasking#TASK</a> <a href="Tasking.Task.html##(TASK)">Tasking.Task#TASK</a>
<strong><strong>Task</strong></strong> <strong><strong>Task</strong></strong>
</p> </p>
</div> </div>

View File

@ -3248,7 +3248,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<div class="w3-row w3-margin-left w3-border-bottom w3-border-l2"> <div class="w3-row w3-margin-left w3-border-bottom w3-border-l2">
<div class="w3-half"> <div class="w3-half">
<p> <p>
<a href="Task.Tasking.html##(TASK)">Task.Tasking#TASK</a> <a href="Tasking.Task.html##(TASK)">Tasking.Task#TASK</a>
<strong><strong>Task</strong></strong> <strong><strong>Task</strong></strong>
</p> </p>
</div> </div>

View File

@ -3690,7 +3690,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<div class="w3-row w3-margin-left w3-border-bottom w3-border-l2"> <div class="w3-row w3-margin-left w3-border-bottom w3-border-l2">
<div class="w3-half"> <div class="w3-half">
<p> <p>
<a href="Task.Tasking.html##(TASK)">Task.Tasking#TASK</a> <a href="Tasking.Task.html##(TASK)">Tasking.Task#TASK</a>
<strong><strong>Task</strong></strong> <strong><strong>Task</strong></strong>
</p> </p>
</div> </div>

View File

@ -6757,7 +6757,7 @@ The cargo must be in the <strong>Loaded</strong> state.</p>
<div class="w3-row w3-margin-left w3-border-bottom w3-border-l2"> <div class="w3-row w3-margin-left w3-border-bottom w3-border-l2">
<div class="w3-half"> <div class="w3-half">
<p> <p>
<a href="Task.Tasking.html##(TASK)">Task.Tasking#TASK</a> <a href="Tasking.Task.html##(TASK)">Tasking.Task#TASK</a>
<strong><strong>Task</strong></strong> <strong><strong>Task</strong></strong>
</p> </p>
</div> </div>

View File

@ -1938,10 +1938,27 @@ Therefore, this class is considered to be deprecated</p>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(CARGO_GROUP).CargoCarrier" ><strong>CARGO_GROUP.CargoCarrier</strong></a>
<p>self.CargoObject:Destroy()</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(CARGO_GROUP).CargoGroup" ><strong>CARGO_GROUP.CargoGroup</strong></a> <a id="#(CARGO_GROUP).CargoGroup" ><strong>CARGO_GROUP.CargoGroup</strong></a>
<p> Then we register the new group in the database</p>
</div> </div>
</div> </div>
@ -3242,10 +3259,27 @@ This works for ground only groups.</p>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(CARGO_GROUP).CargoCarrier" ><strong>CARGO_GROUP.CargoCarrier</strong></a>
<p>self.CargoObject:Destroy()</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(CARGO_GROUP).CargoGroup" ><strong>CARGO_GROUP.CargoGroup</strong></a> <a id="#(CARGO_GROUP).CargoGroup" ><strong>CARGO_GROUP.CargoGroup</strong></a>
<p> Then we register the new group in the database</p>
</div> </div>
</div> </div>

View File

@ -1816,6 +1816,17 @@ Therefore, this class is considered to be deprecated</p>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(CARGO_UNIT).CargoCarrier" ><strong>CARGO_UNIT.CargoCarrier</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(CARGO_UNIT).CargoInAir" ><strong>CARGO_UNIT.CargoInAir</strong></a> <a id="#(CARGO_UNIT).CargoInAir" ><strong>CARGO_UNIT.CargoInAir</strong></a>
@ -2520,6 +2531,17 @@ Therefore, this class is considered to be deprecated</p>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(CARGO_UNIT).CargoCarrier" ><strong>CARGO_UNIT.CargoCarrier</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(CARGO_UNIT).CargoInAir" ><strong>CARGO_UNIT.CargoInAir</strong></a> <a id="#(CARGO_UNIT).CargoInAir" ><strong>CARGO_UNIT.CargoInAir</strong></a>

View File

@ -5796,7 +5796,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<div> <div>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
#string
<a id="#(FSM)._StartState" ><strong>FSM._StartState</strong></a> <a id="#(FSM)._StartState" ><strong>FSM._StartState</strong></a>
@ -7395,7 +7395,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<div> <div>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
#string
<a id="#(FSM)._StartState" ><strong>FSM._StartState</strong></a> <a id="#(FSM)._StartState" ><strong>FSM._StartState</strong></a>
@ -16243,7 +16243,7 @@ When moose is loading dynamically (for moose class development), tracing is swit
<div class="w3-row w3-margin-left w3-border-bottom w3-border-l2"> <div class="w3-row w3-margin-left w3-border-bottom w3-border-l2">
<div class="w3-half"> <div class="w3-half">
<p> <p>
<a href="Task.Tasking.html##(TASK)">Task.Tasking#TASK</a> <a href="Tasking.Task.html##(TASK)">Tasking.Task#TASK</a>
<strong><strong>Task</strong></strong> <strong><strong>Task</strong></strong>
</p> </p>
</div> </div>

View File

@ -27712,7 +27712,7 @@ When moose is loading dynamically (for moose class development), tracing is swit
<h2><strong>Return value:</strong></h2> <h2><strong>Return value:</strong></h2>
<div class="w3-row w3-border-bottom w3-margin-left"> <div class="w3-row w3-border-bottom w3-margin-left">
<div class="w3-half"> <div class="w3-half">
<p><a href="Wrapper.Cargo.html##(CARGO)">Wrapper.Cargo#CARGO</a>:</p> <p><a href="Cargo.Cargo.html##(CARGO)">Cargo.Cargo#CARGO</a>:</p>
</div> </div>
<div class="w3-half"> <div class="w3-half">
@ -27809,7 +27809,7 @@ When moose is loading dynamically (for moose class development), tracing is swit
<h2><strong>Return value:</strong></h2> <h2><strong>Return value:</strong></h2>
<div class="w3-row w3-border-bottom w3-margin-left"> <div class="w3-row w3-border-bottom w3-margin-left">
<div class="w3-half"> <div class="w3-half">
<p><a href="Wrapper.Cargo.html##(CARGO)">Wrapper.Cargo#CARGO</a>:</p> <p><a href="Cargo.Cargo.html##(CARGO)">Cargo.Cargo#CARGO</a>:</p>
</div> </div>
<div class="w3-half"> <div class="w3-half">
@ -28212,7 +28212,7 @@ DatabaseSet = SET_CARGO:New()</code></pre>
<div class="w3-row w3-margin-left w3-border-bottom w3-border-l2"> <div class="w3-row w3-margin-left w3-border-bottom w3-border-l2">
<div class="w3-half"> <div class="w3-half">
<p> <p>
<a href="Wrapper.Cargo.html##(CARGO)">Wrapper.Cargo#CARGO</a> <a href="Cargo.Cargo.html##(CARGO)">Cargo.Cargo#CARGO</a>
<strong><strong>RemoveCargoNames</strong></strong> <strong><strong>RemoveCargoNames</strong></strong>
</p> </p>
</div> </div>
@ -86297,7 +86297,7 @@ DatabaseSet = SET_ZONE:New()</code></pre>
<div class="w3-row w3-margin-left w3-border-bottom w3-border-l2"> <div class="w3-row w3-margin-left w3-border-bottom w3-border-l2">
<div class="w3-half"> <div class="w3-half">
<p> <p>
<a href="Wrappe.Controllable.html##(CONTROLLABLE)">Wrappe.Controllable#CONTROLLABLE</a> <a href="Wrapper.Controllable.html##(CONTROLLABLE)">Wrapper.Controllable#CONTROLLABLE</a>
<strong><strong>Objects</strong></strong> <strong><strong>Objects</strong></strong>
</p> </p>
</div> </div>

View File

@ -1755,7 +1755,7 @@ but there isn't any player context (no player unit to reference from), the MGRS
<p>Will customize which display format is used to indicate A2A coordinates in text as part of the Command Center communications.</p> <p>Will customize which display format is used to indicate A2A coordinates in text as part of the Command Center communications.</p>
<ul> <ul>
<li>A2A BRAA: <a href="https://en.wikipedia.org/wiki/Bearing_(navigation">Bearing Range Altitude Aspect</a>.</li> <li>A2A BRAA: <a href="https://en.wikipedia.org/wiki/Bearing_(navigation)">Bearing Range Altitude Aspect</a>.</li>
<li>A2A MGRS: The <a href="https://en.wikipedia.org/wiki/Military_Grid_Reference_System">Military Grid Reference System</a>. The accuracy can also be adapted.</li> <li>A2A MGRS: The <a href="https://en.wikipedia.org/wiki/Military_Grid_Reference_System">Military Grid Reference System</a>. The accuracy can also be adapted.</li>
<li>A2A LL DMS: Lattitude Longitude <a href="https://en.wikipedia.org/wiki/Geographic_coordinate_conversion">Degrees Minutes Seconds</a>. The accuracy can also be adapted.</li> <li>A2A LL DMS: Lattitude Longitude <a href="https://en.wikipedia.org/wiki/Geographic_coordinate_conversion">Degrees Minutes Seconds</a>. The accuracy can also be adapted.</li>
<li>A2A LL DDM: Lattitude Longitude <a href="https://en.wikipedia.org/wiki/Decimal_degrees">Decimal Degrees and Minutes</a>. The accuracy can also be adapted.</li> <li>A2A LL DDM: Lattitude Longitude <a href="https://en.wikipedia.org/wiki/Decimal_degrees">Decimal Degrees and Minutes</a>. The accuracy can also be adapted.</li>
@ -1835,8 +1835,8 @@ Note that <strong>Update</strong> messages can be chosen not to be displayed at
<p>There are different methods that can be used to change the <strong>System settings</strong> using the _SETTINGS object.</p> <p>There are different methods that can be used to change the <strong>System settings</strong> using the _SETTINGS object.</p>
<ul> <ul>
<li><a href="##(SETTINGS).SetMessageTime">SETTINGS.SetMessageTime</a>(): Define for a specific <a href="Message.MESSAGE.MessageType.html">Message.MESSAGE.MessageType</a> the duration to be displayed in seconds.</li> <li><a href="Core.Settings.html##(SETTINGS).SetMessageTime">Core.Settings#SETTINGS.SetMessageTime</a>(): Define for a specific <a href="Message.MESSAGE.MessageType.html">Message.MESSAGE.MessageType</a> the duration to be displayed in seconds.</li>
<li><a href="##(SETTINGS).GetMessageTime">SETTINGS.GetMessageTime</a>(): Retrieves for a specific <a href="Message.MESSAGE.MessageType.html">Message.MESSAGE.MessageType</a> the duration to be displayed in seconds.</li> <li><a href="Core.Settings.html##(SETTINGS).GetMessageTime">Core.Settings#SETTINGS.GetMessageTime</a>(): Retrieves for a specific <a href="Message.MESSAGE.MessageType.html">Message.MESSAGE.MessageType</a> the duration to be displayed in seconds.</li>
</ul> </ul>
<h2>3.5) <strong>Era</strong> of the battle</h2> <h2>3.5) <strong>Era</strong> of the battle</h2>
@ -2913,6 +2913,17 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(SETTINGS).PlayerMenu" ><strong>SETTINGS.PlayerMenu</strong></a>
</div> </div>
</div> </div>
@ -5070,6 +5081,17 @@ It is advised to use this method at the start of the mission.</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(SETTINGS).PlayerMenu" ><strong>SETTINGS.PlayerMenu</strong></a>
</div> </div>
</div> </div>

View File

@ -2940,6 +2940,36 @@ and any spaces before and after the resulting name are removed.</p>
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(SPAWN)._TranslateRotate">SPAWN:_TranslateRotate(SpawnIndex, SpawnRootX, SpawnRootY, SpawnX, SpawnY, SpawnAngle)</a></p></td> <td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(SPAWN)._TranslateRotate">SPAWN:_TranslateRotate(SpawnIndex, SpawnRootX, SpawnRootY, SpawnX, SpawnY, SpawnAngle)</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word"> <td class="summary w3-half w3-container" style="word-wrap: break-word">
</td>
</tr>
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(SPAWN).communication">SPAWN.communication</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
</td>
</tr>
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(SPAWN).frequency">SPAWN.frequency</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
</td>
</tr>
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(SPAWN).livery_id">SPAWN.livery_id</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
</td>
</tr>
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(SPAWN).modulation">SPAWN.modulation</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
</td>
</tr>
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(SPAWN).skill">SPAWN.skill</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
</td> </td>
</tr> </tr>
</table> </table>
@ -3634,20 +3664,6 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(SPAWN).SpawnCount" ><strong>SPAWN.SpawnCount</strong></a>
<p> The internal counter of the amount of spawning the has happened since SpawnStart.</p>
</div> </div>
</div> </div>
@ -3717,6 +3733,17 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(SPAWN).SpawnInitAirbase" ><strong>SPAWN.SpawnInitAirbase</strong></a>
</div> </div>
</div> </div>
@ -3750,6 +3777,17 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(SPAWN).SpawnInitFreq" ><strong>SPAWN.SpawnInitFreq</strong></a>
</div> </div>
</div> </div>
@ -3805,20 +3843,6 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#boolean
<a id="#(SPAWN).SpawnInitKeepUnitNames" ><strong>SPAWN.SpawnInitKeepUnitNames</strong></a>
<p> Overwrite unit names by default with group name.</p>
</div> </div>
</div> </div>
@ -3866,17 +3890,6 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(SPAWN).SpawnInitModu" ><strong>SPAWN.SpawnInitModu</strong></a>
</div> </div>
</div> </div>
@ -4201,6 +4214,61 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(SPAWN).communication" ><strong>SPAWN.communication</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(SPAWN).frequency" ><strong>SPAWN.frequency</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(SPAWN).livery_id" ><strong>SPAWN.livery_id</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(SPAWN).modulation" ><strong>SPAWN.modulation</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(SPAWN).skill" ><strong>SPAWN.skill</strong></a>
</div> </div>
</div> </div>
@ -9462,20 +9530,6 @@ This is needed to ensure that Re-SPAWNing only is done for landed AIR Groups.</p
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(SPAWN).SpawnCount" ><strong>SPAWN.SpawnCount</strong></a>
<p> The internal counter of the amount of spawning the has happened since SpawnStart.</p>
</div> </div>
</div> </div>
@ -9545,6 +9599,17 @@ This is needed to ensure that Re-SPAWNing only is done for landed AIR Groups.</p
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(SPAWN).SpawnInitAirbase" ><strong>SPAWN.SpawnInitAirbase</strong></a>
</div> </div>
</div> </div>
@ -9578,6 +9643,17 @@ This is needed to ensure that Re-SPAWNing only is done for landed AIR Groups.</p
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(SPAWN).SpawnInitFreq" ><strong>SPAWN.SpawnInitFreq</strong></a>
</div> </div>
</div> </div>
@ -9633,20 +9709,6 @@ This is needed to ensure that Re-SPAWNing only is done for landed AIR Groups.</p
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#boolean
<a id="#(SPAWN).SpawnInitKeepUnitNames" ><strong>SPAWN.SpawnInitKeepUnitNames</strong></a>
<p> Overwrite unit names by default with group name.</p>
</div> </div>
</div> </div>
@ -9694,17 +9756,6 @@ This is needed to ensure that Re-SPAWNing only is done for landed AIR Groups.</p
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(SPAWN).SpawnInitModu" ><strong>SPAWN.SpawnInitModu</strong></a>
</div> </div>
</div> </div>
@ -10029,6 +10080,61 @@ This is needed to ensure that Re-SPAWNing only is done for landed AIR Groups.</p
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(SPAWN).communication" ><strong>SPAWN.communication</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(SPAWN).frequency" ><strong>SPAWN.frequency</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(SPAWN).livery_id" ><strong>SPAWN.livery_id</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(SPAWN).modulation" ><strong>SPAWN.modulation</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(SPAWN).skill" ><strong>SPAWN.skill</strong></a>
</div> </div>
</div> </div>

View File

@ -11903,6 +11903,17 @@ When moose is loading dynamically (for moose class development), tracing is swit
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(ZONE_ELASTIC).updateID" ><strong>ZONE_ELASTIC.updateID</strong></a>
</div> </div>
</div> </div>
@ -17044,13 +17055,13 @@ Note that once a zone has been scanned, multiple evaluations can be done on the
<div class="w3-row w3-margin-left w3-border-bottom w3-border-l2"> <div class="w3-row w3-margin-left w3-border-bottom w3-border-l2">
<div class="w3-half"> <div class="w3-half">
<p> <p>
<a href="Dcs.DCSTypes.html##(Distance)">Dcs.DCSTypes#Distance</a> #number
<strong><strong>Radius</strong></strong> <strong><strong>Radius</strong></strong>
</p> </p>
</div> </div>
<div class="w3-half"> <div class="w3-half">
<p>The radius of the zone.</p> <p>The radius of the zone in meters.</p>
</div> </div>
</div> </div>

View File

@ -1635,9 +1635,9 @@
<hr/> <hr/>
<h3>Author: <strong><a href="https://forums.eagle.ru/member.php?u=115026">funkyfranky</a></strong></h3> <h3>Author: <strong>funkyfranky</strong></h3>
<h3>Contributions: <a href="https://forums.eagle.ru/member.php?u=89536">FlightControl</a></h3> <h3>Contributions: FlightControl</h3>
<hr/> <hr/>

View File

@ -1791,9 +1791,9 @@ Smoke will appear "around" the targets, because of accuracy limitations.</p>
<h3>Contributions:</h3> <h3>Contributions:</h3>
<ul> <ul>
<li><a href="https://forums.eagle.ru/member.php?u=112175"><strong>Ciribob</strong></a>: Showing the way how to lase targets + how laser codes work!!! Explained the autolase script.</li> <li><strong>Ciribob</strong>: Showing the way how to lase targets + how laser codes work!!! Explained the autolase script.</li>
<li><a href="https://forums.eagle.ru/member.php?u=112055"><strong>EasyEB</strong></a>: Ideas and Beta Testing</li> <li><strong>EasyEB</strong>: Ideas and Beta Testing</li>
<li><a href="https://forums.eagle.ru/member.php?u=123698"><strong>Wingthor</strong></a>: Beta Testing</li> <li><strong>Wingthor</strong>: Beta Testing</li>
</ul> </ul>
<h3>Authors:</h3> <h3>Authors:</h3>
@ -6877,7 +6877,7 @@ Using the menu system, the player can "forget" a designation, so that gradually
<div class="w3-row w3-margin-left w3-border-bottom w3-border-l2"> <div class="w3-row w3-margin-left w3-border-bottom w3-border-l2">
<div class="w3-half"> <div class="w3-half">
<p> <p>
<a href="Task.Tasking.html##(TASK)">Task.Tasking#TASK</a> <a href="Tasking.Task.html##(TASK)">Tasking.Task#TASK</a>
<strong><strong>Task</strong></strong> <strong><strong>Task</strong></strong>
</p> </p>
</div> </div>

View File

@ -1682,7 +1682,7 @@ It uses the in-built detection capabilities of DCS World, but adds new functiona
<p> Retrieve the DetectedItems[].Set with the method <a href="Functional.Detection.html##(DETECTION_BASE).GetDetectedSet">Functional.Detection#DETECTION_BASE.GetDetectedSet</a>(). A <a href="Core.Set.html##(SET_UNIT)">Core.Set#SET_UNIT</a> object will be returned.</p> <p> Retrieve the DetectedItems[].Set with the method <a href="Functional.Detection.html##(DETECTION_BASE).GetDetectedSet">Functional.Detection#DETECTION_BASE.GetDetectedSet</a>(). A <a href="Core.Set.html##(SET_UNIT)">Core.Set#SET_UNIT</a> object will be returned.</p>
<p> Retrieve the formed <a href="Zone.html">Zone</a>s as a result of the grouping the detected units within the DetectionZoneRange, use the method <a href="Functional.Detection.html##(DETECTION_AREAS).GetDetectionZones">Functional.Detection#DETECTION_AREAS.GetDetectionZones</a>(). <p> Retrieve the formed <a href="Core.Zone.html">Core.Zone</a>s as a result of the grouping the detected units within the DetectionZoneRange, use the method <a href="Functional.Detection.html##(DETECTION_AREAS).GetDetectionZones">Functional.Detection#DETECTION_AREAS.GetDetectionZones</a>().
To understand the amount of zones created, use the method <a href="Functional.Detection.html##(DETECTION_AREAS).GetDetectionZoneCount">Functional.Detection#DETECTION_AREAS.GetDetectionZoneCount</a>(). To understand the amount of zones created, use the method <a href="Functional.Detection.html##(DETECTION_AREAS).GetDetectionZoneCount">Functional.Detection#DETECTION_AREAS.GetDetectionZoneCount</a>().
If you want to obtain a specific zone from the DetectedZones, use the method <a href="Functional.Detection.html##(DETECTION_AREAS).GetDetectionZoneByID">Functional.Detection#DETECTION_AREAS.GetDetectionZoneByID</a>() with a given index.</p> If you want to obtain a specific zone from the DetectedZones, use the method <a href="Functional.Detection.html##(DETECTION_AREAS).GetDetectionZoneByID">Functional.Detection#DETECTION_AREAS.GetDetectionZoneByID</a>() with a given index.</p>
@ -19319,7 +19319,7 @@ When moose is loading dynamically (for moose class development), tracing is swit
<div> <div>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(DETECTION_BASE).RefreshTimeInterval" ><strong>DETECTION_BASE.RefreshTimeInterval</strong></a> <a id="#(DETECTION_BASE).RefreshTimeInterval" ><strong>DETECTION_BASE.RefreshTimeInterval</strong></a>
@ -24033,7 +24033,7 @@ zones that reflect cloudy areas where detected units may not be so easily visual
<div> <div>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(DETECTION_BASE).RefreshTimeInterval" ><strong>DETECTION_BASE.RefreshTimeInterval</strong></a> <a id="#(DETECTION_BASE).RefreshTimeInterval" ><strong>DETECTION_BASE.RefreshTimeInterval</strong></a>
@ -25808,7 +25808,7 @@ zones that reflect cloudy areas where detected units may not be so easily visual
<div> <div>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(DETECTION_BASE).RefreshTimeInterval" ><strong>DETECTION_BASE.RefreshTimeInterval</strong></a> <a id="#(DETECTION_BASE).RefreshTimeInterval" ><strong>DETECTION_BASE.RefreshTimeInterval</strong></a>

View File

@ -3906,17 +3906,6 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<p>The #DETECTION_AREAS object for AWACS</p> <p>The #DETECTION_AREAS object for AWACS</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(MANTIS).AWACS_Prefix" ><strong>MANTIS.AWACS_Prefix</strong></a>
</div> </div>
</div> </div>
@ -8424,17 +8413,6 @@ E.g. `mymantis:SetAdvancedMode(true, 90)`</code></pre>
<p>The #DETECTION_AREAS object for AWACS</p> <p>The #DETECTION_AREAS object for AWACS</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(MANTIS).AWACS_Prefix" ><strong>MANTIS.AWACS_Prefix</strong></a>
</div> </div>
</div> </div>

View File

@ -2268,6 +2268,20 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<div class="fields w3-container w3-theme-l2"> <div class="fields w3-container w3-theme-l2">
<h2>Field(s)</h2> <h2>Field(s)</h2>
</div> </div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(MOVEMENT).AliveUnits" ><strong>MOVEMENT.AliveUnits</strong></a>
<p> Contains the counter how many units are currently alive.</p>
</div>
</div>
<div> <div>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
@ -2498,6 +2512,20 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<div class="fields w3-container w3-theme-l2"> <div class="fields w3-container w3-theme-l2">
<h2>Field(s)</h2> <h2>Field(s)</h2>
</div> </div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(MOVEMENT).AliveUnits" ><strong>MOVEMENT.AliveUnits</strong></a>
<p> Contains the counter how many units are currently alive.</p>
</div>
</div>
<div> <div>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">

View File

@ -4516,6 +4516,36 @@ and any spaces before and after the resulting name are removed.</p>
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(RAT)._TranslateRotate">RAT:_TranslateRotate(SpawnIndex, SpawnRootX, SpawnRootY, SpawnX, SpawnY, SpawnAngle)</a></p></td> <td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(RAT)._TranslateRotate">RAT:_TranslateRotate(SpawnIndex, SpawnRootX, SpawnRootY, SpawnX, SpawnY, SpawnAngle)</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word"> <td class="summary w3-half w3-container" style="word-wrap: break-word">
</td>
</tr>
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(RAT).communication">RAT.communication</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
</td>
</tr>
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(RAT).frequency">RAT.frequency</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
</td>
</tr>
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(RAT).livery_id">RAT.livery_id</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
</td>
</tr>
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(RAT).modulation">RAT.modulation</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
</td>
</tr>
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(RAT).skill">RAT.skill</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
</td> </td>
</tr> </tr>
</table> </table>

View File

@ -2866,11 +2866,14 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<div> <div>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
#boolean
<a id="#(SCORING).AutoSave" ><strong>SCORING.AutoSave</strong></a> <a id="#(SCORING).AutoSave" ><strong>SCORING.AutoSave</strong></a>
<p> Create the CSV file.</p>
</div> </div>
</div> </div>
@ -5452,11 +5455,14 @@ The scale magnifies the scores given to the players.</p>
<div> <div>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
#boolean
<a id="#(SCORING).AutoSave" ><strong>SCORING.AutoSave</strong></a> <a id="#(SCORING).AutoSave" ><strong>SCORING.AutoSave</strong></a>
<p> Create the CSV file.</p>
</div> </div>
</div> </div>

View File

@ -3149,7 +3149,7 @@ We start the monitoring after 5 seconds, and will repeat every 30 seconds a chec
<div class="w3-row w3-margin-left w3-border-bottom w3-border-l2"> <div class="w3-row w3-margin-left w3-border-bottom w3-border-l2">
<div class="w3-half"> <div class="w3-half">
<p> <p>
<a href="DCSCoalition.DCSCoalition.html##(coalition)">DCSCoalition.DCSCoalition#coalition</a> #number
<strong><strong>Coalition</strong></strong> <strong><strong>Coalition</strong></strong>
</p> </p>
</div> </div>
@ -4437,7 +4437,7 @@ end
<div class="w3-row w3-margin-left w3-border-bottom w3-border-l2"> <div class="w3-row w3-margin-left w3-border-bottom w3-border-l2">
<div class="w3-half"> <div class="w3-half">
<p> <p>
<a href="DCSCoalition.DCSCoalition.html##(coalition)">DCSCoalition.DCSCoalition#coalition</a> #number
<strong><strong>Coalition</strong></strong> <strong><strong>Coalition</strong></strong>
</p> </p>
</div> </div>

View File

@ -2361,7 +2361,7 @@ Derived classes implement the ways how the achievements can be realized.</p>
<div class="w3-row w3-margin-left w3-border-bottom w3-border-l2"> <div class="w3-row w3-margin-left w3-border-bottom w3-border-l2">
<div class="w3-half"> <div class="w3-half">
<p> <p>
<a href="DCSCoalition.DCSCoalition.html##(coalition)">DCSCoalition.DCSCoalition#coalition</a> #number
<strong><strong>Coalition</strong></strong> <strong><strong>Coalition</strong></strong>
</p> </p>
</div> </div>

View File

@ -9600,6 +9600,17 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<p>Radio queue of LSO.</p> <p>Radio queue of LSO.</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(AIRBOSS).RQLid" ><strong>AIRBOSS.RQLid</strong></a>
</div> </div>
</div> </div>
@ -9611,6 +9622,17 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<p>Radio queue of marshal.</p> <p>Radio queue of marshal.</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(AIRBOSS).RQMid" ><strong>AIRBOSS.RQMid</strong></a>
</div> </div>
</div> </div>
@ -29799,6 +29821,17 @@ If removed flight is the section lead, we try to find a new leader.</p>
<p>Radio queue of LSO.</p> <p>Radio queue of LSO.</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(AIRBOSS).RQLid" ><strong>AIRBOSS.RQLid</strong></a>
</div> </div>
</div> </div>
@ -29810,6 +29843,17 @@ If removed flight is the section lead, we try to find a new leader.</p>
<p>Radio queue of marshal.</p> <p>Radio queue of marshal.</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(AIRBOSS).RQMid" ><strong>AIRBOSS.RQMid</strong></a>
</div> </div>
</div> </div>
@ -32878,6 +32922,17 @@ If removed flight is the section lead, we try to find a new leader.</p>
<p>Radio queue of LSO.</p> <p>Radio queue of LSO.</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(AIRBOSS).RQLid" ><strong>AIRBOSS.RQLid</strong></a>
</div> </div>
</div> </div>
@ -32889,6 +32944,17 @@ If removed flight is the section lead, we try to find a new leader.</p>
<p>Radio queue of marshal.</p> <p>Radio queue of marshal.</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(AIRBOSS).RQMid" ><strong>AIRBOSS.RQMid</strong></a>
</div> </div>
</div> </div>
@ -40496,6 +40562,9 @@ When moose is loading dynamically (for moose class development), tracing is swit
<p> Set case to that of lead.</p>
</div> </div>
</div> </div>
@ -40559,20 +40628,6 @@ When moose is loading dynamically (for moose class development), tracing is swit
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(AIRBOSS.PlayerData).flag" ><strong>AIRBOSS.PlayerData.flag</strong></a>
<p> Decrease stack/flag. Human player needs to take care himself.</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(AIRBOSS.PlayerData).grade" ><strong>AIRBOSS.PlayerData.grade</strong></a> <a id="#(AIRBOSS.PlayerData).grade" ><strong>AIRBOSS.PlayerData.grade</strong></a>
@ -40748,9 +40803,6 @@ When moose is loading dynamically (for moose class development), tracing is swit
<p> Set Stable Hover</p>
</div> </div>
</div> </div>

View File

@ -2587,6 +2587,12 @@ Dropped troop noMessage and forcedesc parameters aren't saved. </p>
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(CSAR).inTransitGroups">CSAR.inTransitGroups</a></p></td> <td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(CSAR).inTransitGroups">CSAR.inTransitGroups</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word"> <td class="summary w3-half w3-container" style="word-wrap: break-word">
</td>
</tr>
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(CSAR).index">CSAR.index</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
</td> </td>
</tr> </tr>
<tr class="w3-border"> <tr class="w3-border">
@ -3959,7 +3965,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<div> <div>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
#table
<a id="#(CSAR).FreeVHFFrequencies" ><strong>CSAR.FreeVHFFrequencies</strong></a> <a id="#(CSAR).FreeVHFFrequencies" ><strong>CSAR.FreeVHFFrequencies</strong></a>
@ -4372,14 +4378,11 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<div> <div>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
#table
<a id="#(CSAR).csarUnits" ><strong>CSAR.csarUnits</strong></a> <a id="#(CSAR).csarUnits" ><strong>CSAR.csarUnits</strong></a>
<p> table of CSAR unit names</p>
</div> </div>
</div> </div>
@ -4400,25 +4403,11 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<div> <div>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
#table
<a id="#(CSAR).downedPilots" ><strong>CSAR.downedPilots</strong></a> <a id="#(CSAR).downedPilots" ><strong>CSAR.downedPilots</strong></a>
<p> Replacement woundedGroups</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(CSAR).downedpilotcounter" ><strong>CSAR.downedpilotcounter</strong></a>
</div> </div>
</div> </div>
@ -4542,6 +4531,17 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<p> contain a table for each SAR with all units he has with the original names</p> <p> contain a table for each SAR with all units he has with the original names</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(CSAR).index" ><strong>CSAR.index</strong></a>
</div> </div>
</div> </div>
@ -4750,20 +4750,6 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
</div> </div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(CSAR).rescuedpilots" ><strong>CSAR.rescuedpilots</strong></a>
<p> counter for saved pilots</p>
</div>
</div> </div>
<div> <div>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
@ -4789,20 +4775,6 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
</div> </div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(CSAR).rescues" ><strong>CSAR.rescues</strong></a>
<p> counter for successful rescue landings at FARP/AFB/MASH</p>
</div>
</div> </div>
<div> <div>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
@ -9972,7 +9944,7 @@ callsigns from playername or group name.</p>
<div> <div>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
#table
<a id="#(CSAR).FreeVHFFrequencies" ><strong>CSAR.FreeVHFFrequencies</strong></a> <a id="#(CSAR).FreeVHFFrequencies" ><strong>CSAR.FreeVHFFrequencies</strong></a>
@ -10385,14 +10357,11 @@ callsigns from playername or group name.</p>
<div> <div>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
#table
<a id="#(CSAR).csarUnits" ><strong>CSAR.csarUnits</strong></a> <a id="#(CSAR).csarUnits" ><strong>CSAR.csarUnits</strong></a>
<p> table of CSAR unit names</p>
</div> </div>
</div> </div>
@ -10413,25 +10382,11 @@ callsigns from playername or group name.</p>
<div> <div>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
#table
<a id="#(CSAR).downedPilots" ><strong>CSAR.downedPilots</strong></a> <a id="#(CSAR).downedPilots" ><strong>CSAR.downedPilots</strong></a>
<p> Replacement woundedGroups</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(CSAR).downedpilotcounter" ><strong>CSAR.downedpilotcounter</strong></a>
</div> </div>
</div> </div>
@ -10555,6 +10510,17 @@ callsigns from playername or group name.</p>
<p> contain a table for each SAR with all units he has with the original names</p> <p> contain a table for each SAR with all units he has with the original names</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(CSAR).index" ><strong>CSAR.index</strong></a>
</div> </div>
</div> </div>
@ -10763,20 +10729,6 @@ callsigns from playername or group name.</p>
</div> </div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(CSAR).rescuedpilots" ><strong>CSAR.rescuedpilots</strong></a>
<p> counter for saved pilots</p>
</div>
</div> </div>
<div> <div>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
@ -10802,20 +10754,6 @@ callsigns from playername or group name.</p>
</div> </div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(CSAR).rescues" ><strong>CSAR.rescues</strong></a>
<p> counter for successful rescue landings at FARP/AFB/MASH</p>
</div>
</div> </div>
<div> <div>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
@ -12470,7 +12408,7 @@ callsigns from playername or group name.</p>
<div> <div>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
#table
<a id="#(CSAR).FreeVHFFrequencies" ><strong>CSAR.FreeVHFFrequencies</strong></a> <a id="#(CSAR).FreeVHFFrequencies" ><strong>CSAR.FreeVHFFrequencies</strong></a>
@ -12883,14 +12821,11 @@ callsigns from playername or group name.</p>
<div> <div>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
#table
<a id="#(CSAR).csarUnits" ><strong>CSAR.csarUnits</strong></a> <a id="#(CSAR).csarUnits" ><strong>CSAR.csarUnits</strong></a>
<p> table of CSAR unit names</p>
</div> </div>
</div> </div>
@ -12911,25 +12846,11 @@ callsigns from playername or group name.</p>
<div> <div>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
#table
<a id="#(CSAR).downedPilots" ><strong>CSAR.downedPilots</strong></a> <a id="#(CSAR).downedPilots" ><strong>CSAR.downedPilots</strong></a>
<p> Replacement woundedGroups</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(CSAR).downedpilotcounter" ><strong>CSAR.downedpilotcounter</strong></a>
</div> </div>
</div> </div>
@ -13053,6 +12974,17 @@ callsigns from playername or group name.</p>
<p> contain a table for each SAR with all units he has with the original names</p> <p> contain a table for each SAR with all units he has with the original names</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(CSAR).index" ><strong>CSAR.index</strong></a>
</div> </div>
</div> </div>
@ -13261,20 +13193,6 @@ callsigns from playername or group name.</p>
</div> </div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(CSAR).rescuedpilots" ><strong>CSAR.rescuedpilots</strong></a>
<p> counter for saved pilots</p>
</div>
</div> </div>
<div> <div>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
@ -13300,20 +13218,6 @@ callsigns from playername or group name.</p>
</div> </div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(CSAR).rescues" ><strong>CSAR.rescues</strong></a>
<p> counter for successful rescue landings at FARP/AFB/MASH</p>
</div>
</div> </div>
<div> <div>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">

View File

@ -7647,6 +7647,17 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<p>Name of the class.</p> <p>Name of the class.</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(CTLD).CrateCounter" ><strong>CTLD.CrateCounter</strong></a>
</div> </div>
</div> </div>
@ -7689,7 +7700,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<div> <div>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
#table
<a id="#(CTLD).DroppedTroops" ><strong>CTLD.DroppedTroops</strong></a> <a id="#(CTLD).DroppedTroops" ><strong>CTLD.DroppedTroops</strong></a>
@ -7714,11 +7725,14 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<div> <div>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
#table
<a id="#(CTLD).EngineersInField" ><strong>CTLD.EngineersInField</strong></a> <a id="#(CTLD).EngineersInField" ><strong>CTLD.EngineersInField</strong></a>
<p>holds #CTLD_ENGINEERING objects</p>
</div> </div>
</div> </div>
@ -7772,7 +7786,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<div> <div>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
#table
<a id="#(CTLD).FreeVHFFrequencies" ><strong>CTLD.FreeVHFFrequencies</strong></a> <a id="#(CTLD).FreeVHFFrequencies" ><strong>CTLD.FreeVHFFrequencies</strong></a>
@ -8143,6 +8157,17 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<p> #1570</p> <p> #1570</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#table
<a id="#(CTLD).droppedBeacons" ><strong>CTLD.droppedBeacons</strong></a>
</div> </div>
</div> </div>
@ -8399,7 +8424,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<p> noob catch</p> <p> time to repairor build a unit/group</p>
</div> </div>
@ -8487,7 +8512,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<div> <div>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(CTLD).troopdropzoneradius" ><strong>CTLD.troopdropzoneradius</strong></a> <a id="#(CTLD).troopdropzoneradius" ><strong>CTLD.troopdropzoneradius</strong></a>
@ -17290,6 +17315,17 @@ However, if you create a new folder inside the miz file, which contains the soun
<p>Name of the class.</p> <p>Name of the class.</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(CTLD).CrateCounter" ><strong>CTLD.CrateCounter</strong></a>
</div> </div>
</div> </div>
@ -17332,7 +17368,7 @@ However, if you create a new folder inside the miz file, which contains the soun
<div> <div>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
#table
<a id="#(CTLD).DroppedTroops" ><strong>CTLD.DroppedTroops</strong></a> <a id="#(CTLD).DroppedTroops" ><strong>CTLD.DroppedTroops</strong></a>
@ -17357,11 +17393,14 @@ However, if you create a new folder inside the miz file, which contains the soun
<div> <div>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
#table
<a id="#(CTLD).EngineersInField" ><strong>CTLD.EngineersInField</strong></a> <a id="#(CTLD).EngineersInField" ><strong>CTLD.EngineersInField</strong></a>
<p>holds #CTLD_ENGINEERING objects</p>
</div> </div>
</div> </div>
@ -17415,7 +17454,7 @@ However, if you create a new folder inside the miz file, which contains the soun
<div> <div>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
#table
<a id="#(CTLD).FreeVHFFrequencies" ><strong>CTLD.FreeVHFFrequencies</strong></a> <a id="#(CTLD).FreeVHFFrequencies" ><strong>CTLD.FreeVHFFrequencies</strong></a>
@ -17786,6 +17825,17 @@ However, if you create a new folder inside the miz file, which contains the soun
<p> #1570</p> <p> #1570</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#table
<a id="#(CTLD).droppedBeacons" ><strong>CTLD.droppedBeacons</strong></a>
</div> </div>
</div> </div>
@ -18042,7 +18092,7 @@ However, if you create a new folder inside the miz file, which contains the soun
<p> noob catch</p> <p> time to repairor build a unit/group</p>
</div> </div>
@ -18130,7 +18180,7 @@ However, if you create a new folder inside the miz file, which contains the soun
<div> <div>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(CTLD).troopdropzoneradius" ><strong>CTLD.troopdropzoneradius</strong></a> <a id="#(CTLD).troopdropzoneradius" ><strong>CTLD.troopdropzoneradius</strong></a>
@ -19707,6 +19757,17 @@ However, if you create a new folder inside the miz file, which contains the soun
<p>Name of the class.</p> <p>Name of the class.</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(CTLD).CrateCounter" ><strong>CTLD.CrateCounter</strong></a>
</div> </div>
</div> </div>
@ -19749,7 +19810,7 @@ However, if you create a new folder inside the miz file, which contains the soun
<div> <div>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
#table
<a id="#(CTLD).DroppedTroops" ><strong>CTLD.DroppedTroops</strong></a> <a id="#(CTLD).DroppedTroops" ><strong>CTLD.DroppedTroops</strong></a>
@ -19774,11 +19835,14 @@ However, if you create a new folder inside the miz file, which contains the soun
<div> <div>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
#table
<a id="#(CTLD).EngineersInField" ><strong>CTLD.EngineersInField</strong></a> <a id="#(CTLD).EngineersInField" ><strong>CTLD.EngineersInField</strong></a>
<p>holds #CTLD_ENGINEERING objects</p>
</div> </div>
</div> </div>
@ -19832,7 +19896,7 @@ However, if you create a new folder inside the miz file, which contains the soun
<div> <div>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
#table
<a id="#(CTLD).FreeVHFFrequencies" ><strong>CTLD.FreeVHFFrequencies</strong></a> <a id="#(CTLD).FreeVHFFrequencies" ><strong>CTLD.FreeVHFFrequencies</strong></a>
@ -20203,6 +20267,17 @@ However, if you create a new folder inside the miz file, which contains the soun
<p> #1570</p> <p> #1570</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#table
<a id="#(CTLD).droppedBeacons" ><strong>CTLD.droppedBeacons</strong></a>
</div> </div>
</div> </div>
@ -20459,7 +20534,7 @@ However, if you create a new folder inside the miz file, which contains the soun
<p> noob catch</p> <p> time to repairor build a unit/group</p>
</div> </div>
@ -20547,7 +20622,7 @@ However, if you create a new folder inside the miz file, which contains the soun
<div> <div>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(CTLD).troopdropzoneradius" ><strong>CTLD.troopdropzoneradius</strong></a> <a id="#(CTLD).troopdropzoneradius" ><strong>CTLD.troopdropzoneradius</strong></a>
@ -24561,6 +24636,17 @@ When moose is loading dynamically (for moose class development), tracing is swit
<p>Can transport crate.</p> <p>Can transport crate.</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(CTLD.UnitCapabilities).length" ><strong>CTLD.UnitCapabilities.length</strong></a>
</div> </div>
</div> </div>
@ -24747,17 +24833,6 @@ When moose is loading dynamically (for moose class development), tracing is swit
<p>Flag for direct loading.</p> <p>Flag for direct loading.</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(CTLD_CARGO).Mark" ><strong>CTLD_CARGO.Mark</strong></a>
</div> </div>
</div> </div>
@ -25884,17 +25959,6 @@ When moose is loading dynamically (for moose class development), tracing is swit
<p>Flag for direct loading.</p> <p>Flag for direct loading.</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(CTLD_CARGO).Mark" ><strong>CTLD_CARGO.Mark</strong></a>
</div> </div>
</div> </div>
@ -29505,6 +29569,17 @@ When moose is loading dynamically (for moose class development), tracing is swit
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a href="Core.Point.html##(COORDINATE)">Core.Point#COORDINATE</a>
<a id="#(CTLD_ENGINEERING).currwpt" ><strong>CTLD_ENGINEERING.currwpt</strong></a>
</div> </div>
</div> </div>
@ -30158,6 +30233,17 @@ When moose is loading dynamically (for moose class development), tracing is swit
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a href="Core.Point.html##(COORDINATE)">Core.Point#COORDINATE</a>
<a id="#(CTLD_ENGINEERING).currwpt" ><strong>CTLD_ENGINEERING.currwpt</strong></a>
</div> </div>
</div> </div>
@ -33693,17 +33779,6 @@ When moose is loading dynamically (for moose class development), tracing is swit
<p> template for a group of 10 paratroopers</p> <p> template for a group of 10 paratroopers</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(CTLD_HERCULES).j" ><strong>CTLD_HERCULES.j</strong></a>
</div> </div>
</div> </div>
@ -35030,17 +35105,6 @@ Use either this method to integrate the Hercules **or** the one from the "normal
<p> template for a group of 10 paratroopers</p> <p> template for a group of 10 paratroopers</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(CTLD_HERCULES).j" ><strong>CTLD_HERCULES.j</strong></a>
</div> </div>
</div> </div>

View File

@ -2146,6 +2146,12 @@ atis:Start()
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(MSRS).google">MSRS.google</a></p></td> <td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(MSRS).google">MSRS.google</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word"> <td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>Full path google credentials JSON file, e.g. "C:\Users\username\Downloads\service-account-file.json".</p> <p>Full path google credentials JSON file, e.g. "C:\Users\username\Downloads\service-account-file.json".</p>
</td>
</tr>
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(MSRS).key">MSRS.key</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
</td> </td>
</tr> </tr>
<tr class="w3-border"> <tr class="w3-border">
@ -3898,6 +3904,17 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<p>Full path google credentials JSON file, e.g. "C:\Users\username\Downloads\service-account-file.json".</p> <p>Full path google credentials JSON file, e.g. "C:\Users\username\Downloads\service-account-file.json".</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(MSRS).key" ><strong>MSRS.key</strong></a>
</div> </div>
</div> </div>
@ -3959,7 +3976,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<div> <div>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
#string
<a id="#(MSRS).provider" ><strong>MSRS.provider</strong></a> <a id="#(MSRS).provider" ><strong>MSRS.provider</strong></a>
@ -6186,6 +6203,17 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<p>Full path google credentials JSON file, e.g. "C:\Users\username\Downloads\service-account-file.json".</p> <p>Full path google credentials JSON file, e.g. "C:\Users\username\Downloads\service-account-file.json".</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(MSRS).key" ><strong>MSRS.key</strong></a>
</div> </div>
</div> </div>
@ -6247,7 +6275,7 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<div> <div>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
#string
<a id="#(MSRS).provider" ><strong>MSRS.provider</strong></a> <a id="#(MSRS).provider" ><strong>MSRS.provider</strong></a>

View File

@ -2922,11 +2922,11 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<h2><strong>Return value:</strong></h2> <h2><strong>Return value:</strong></h2>
<div class="w3-row w3-border-bottom w3-margin-left"> <div class="w3-row w3-border-bottom w3-margin-left">
<div class="w3-half"> <div class="w3-half">
<p><a href="DCScoalition.html##(coalition)">DCScoalition#coalition</a>:</p> <p>#number:</p>
</div> </div>
<div class="w3-half"> <div class="w3-half">
<p>Coalition of the command center.</p>
</div> </div>
</div> </div>

View File

@ -2938,6 +2938,17 @@ but can separately be modified later in your mission using the
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(TASK).TaskControlMenu" ><strong>TASK.TaskControlMenu</strong></a>
</div> </div>
</div> </div>
@ -7574,6 +7585,17 @@ If the Unit is part of the Task, true is returned.</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(TASK).TaskControlMenu" ><strong>TASK.TaskControlMenu</strong></a>
</div> </div>
</div> </div>

View File

@ -1663,7 +1663,7 @@ The player needs to accept the task from the task overview list within the missi
<p>Once the task is assigned to the player and accepted by the player, the player will obtain <p>Once the task is assigned to the player and accepted by the player, the player will obtain
an extra <strong>Cargo (Radio) Menu</strong> that contains the CARGO objects that need to be transported.</p> an extra <strong>Cargo (Radio) Menu</strong> that contains the CARGO objects that need to be transported.</p>
<p>Each <a href="CARGO.Cargo.html">CARGO.Cargo</a> object has a certain state:</p> <p>Each <a href="Tasking.Task_CARGO.html##(TASK_CARGO)">Tasking.Task_CARGO#TASK_CARGO</a> object has a certain state:</p>
<ul> <ul>
<li><strong>UnLoaded</strong>: The cargo is located within the battlefield. It may still need to be transported.</li> <li><strong>UnLoaded</strong>: The cargo is located within the battlefield. It may still need to be transported.</li>
@ -2090,7 +2090,7 @@ and goals. </p>
<h2>2.2) Handle TASK_CARGO Events ...</h2> <h2>2.2) Handle TASK_CARGO Events ...</h2>
<p>The TASK_CARGO classes define <a href="Cargo.html">Cargo</a> transport tasks, <p>The TASK_CARGO classes define Cargo transport tasks,
based on the tasking capabilities defined in <a href="Tasking.Task.html##(TASK)">Tasking.Task#TASK</a>.</p> based on the tasking capabilities defined in <a href="Tasking.Task.html##(TASK)">Tasking.Task#TASK</a>.</p>
<h3>2.2.1) Boarding events.</h3> <h3>2.2.1) Boarding events.</h3>
@ -3267,7 +3267,7 @@ based on the tasking capabilities defined in <a href="Tasking.Task.html##(TASK)"
<div> <div>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(TASK_CARGO).CargoLimit" ><strong>TASK_CARGO.CargoLimit</strong></a> <a id="#(TASK_CARGO).CargoLimit" ><strong>TASK_CARGO.CargoLimit</strong></a>
@ -4689,7 +4689,7 @@ based on the tasking capabilities defined in <a href="Tasking.Task.html##(TASK)"
<div> <div>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(TASK_CARGO).CargoLimit" ><strong>TASK_CARGO.CargoLimit</strong></a> <a id="#(TASK_CARGO).CargoLimit" ><strong>TASK_CARGO.CargoLimit</strong></a>
@ -9221,7 +9221,7 @@ If the Unit is part of the Task, true is returned.</p>
<div> <div>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(TASK_CARGO).CargoLimit" ><strong>TASK_CARGO.CargoLimit</strong></a> <a id="#(TASK_CARGO).CargoLimit" ><strong>TASK_CARGO.CargoLimit</strong></a>

View File

@ -3216,55 +3216,22 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<div> <div>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
#table
<a id="#(TASK_CARGO_DISPATCHER).CSARBriefing" ><strong>TASK_CARGO_DISPATCHER.CSARBriefing</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(TASK_CARGO_DISPATCHER).CSARDeployZones" ><strong>TASK_CARGO_DISPATCHER.CSARDeployZones</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(TASK_CARGO_DISPATCHER).CSARTaskName" ><strong>TASK_CARGO_DISPATCHER.CSARTaskName</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#boolean
<a id="#(TASK_CARGO_DISPATCHER).CSARTasks" ><strong>TASK_CARGO_DISPATCHER.CSARTasks</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(TASK_CARGO_DISPATCHER).DefaultDeployZones" ><strong>TASK_CARGO_DISPATCHER.DefaultDeployZones</strong></a> <a id="#(TASK_CARGO_DISPATCHER).DefaultDeployZones" ><strong>TASK_CARGO_DISPATCHER.DefaultDeployZones</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(TASK_CARGO_DISPATCHER).MaxCSAR" ><strong>TASK_CARGO_DISPATCHER.MaxCSAR</strong></a>
</div> </div>
</div> </div>
@ -4355,55 +4322,22 @@ This method can only be used once!</p>
<div> <div>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
#table
<a id="#(TASK_CARGO_DISPATCHER).CSARBriefing" ><strong>TASK_CARGO_DISPATCHER.CSARBriefing</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(TASK_CARGO_DISPATCHER).CSARDeployZones" ><strong>TASK_CARGO_DISPATCHER.CSARDeployZones</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(TASK_CARGO_DISPATCHER).CSARTaskName" ><strong>TASK_CARGO_DISPATCHER.CSARTaskName</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#boolean
<a id="#(TASK_CARGO_DISPATCHER).CSARTasks" ><strong>TASK_CARGO_DISPATCHER.CSARTasks</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(TASK_CARGO_DISPATCHER).DefaultDeployZones" ><strong>TASK_CARGO_DISPATCHER.DefaultDeployZones</strong></a> <a id="#(TASK_CARGO_DISPATCHER).DefaultDeployZones" ><strong>TASK_CARGO_DISPATCHER.DefaultDeployZones</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(TASK_CARGO_DISPATCHER).MaxCSAR" ><strong>TASK_CARGO_DISPATCHER.MaxCSAR</strong></a>
</div> </div>
</div> </div>
@ -5246,55 +5180,22 @@ This method can only be used once!</p>
<div> <div>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
#table
<a id="#(TASK_CARGO_DISPATCHER).CSARBriefing" ><strong>TASK_CARGO_DISPATCHER.CSARBriefing</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(TASK_CARGO_DISPATCHER).CSARDeployZones" ><strong>TASK_CARGO_DISPATCHER.CSARDeployZones</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(TASK_CARGO_DISPATCHER).CSARTaskName" ><strong>TASK_CARGO_DISPATCHER.CSARTaskName</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#boolean
<a id="#(TASK_CARGO_DISPATCHER).CSARTasks" ><strong>TASK_CARGO_DISPATCHER.CSARTasks</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(TASK_CARGO_DISPATCHER).DefaultDeployZones" ><strong>TASK_CARGO_DISPATCHER.DefaultDeployZones</strong></a> <a id="#(TASK_CARGO_DISPATCHER).DefaultDeployZones" ><strong>TASK_CARGO_DISPATCHER.DefaultDeployZones</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(TASK_CARGO_DISPATCHER).MaxCSAR" ><strong>TASK_CARGO_DISPATCHER.MaxCSAR</strong></a>
</div> </div>
</div> </div>
@ -6768,55 +6669,22 @@ This method can only be used once!</p>
<div> <div>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
#table
<a id="#(TASK_CARGO_DISPATCHER).CSARBriefing" ><strong>TASK_CARGO_DISPATCHER.CSARBriefing</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(TASK_CARGO_DISPATCHER).CSARDeployZones" ><strong>TASK_CARGO_DISPATCHER.CSARDeployZones</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(TASK_CARGO_DISPATCHER).CSARTaskName" ><strong>TASK_CARGO_DISPATCHER.CSARTaskName</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#boolean
<a id="#(TASK_CARGO_DISPATCHER).CSARTasks" ><strong>TASK_CARGO_DISPATCHER.CSARTasks</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(TASK_CARGO_DISPATCHER).DefaultDeployZones" ><strong>TASK_CARGO_DISPATCHER.DefaultDeployZones</strong></a> <a id="#(TASK_CARGO_DISPATCHER).DefaultDeployZones" ><strong>TASK_CARGO_DISPATCHER.DefaultDeployZones</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(TASK_CARGO_DISPATCHER).MaxCSAR" ><strong>TASK_CARGO_DISPATCHER.MaxCSAR</strong></a>
</div> </div>
</div> </div>

View File

@ -7609,17 +7609,6 @@ When moose is loading dynamically (for moose class development), tracing is swit
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(LIFO).uniquecounter" ><strong>LIFO.uniquecounter</strong></a>
</div> </div>
</div> </div>
@ -8469,17 +8458,6 @@ When moose is loading dynamically (for moose class development), tracing is swit
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(LIFO).uniquecounter" ><strong>LIFO.uniquecounter</strong></a>
</div> </div>
</div> </div>

View File

@ -5208,7 +5208,18 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(GROUP).InitRespawnRandomizePositionZone" ><strong>GROUP.InitRespawnRandomizePositionZone</strong></a> <a id="#(GROUP).InitRespawnRandomizePositionInner" ><strong>GROUP.InitRespawnRandomizePositionInner</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(GROUP).InitRespawnRandomizePositionOuter" ><strong>GROUP.InitRespawnRandomizePositionOuter</strong></a>
@ -9701,7 +9712,18 @@ So each unit of the group is respawned at exactly the same parking spot as it cu
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(GROUP).InitRespawnRandomizePositionZone" ><strong>GROUP.InitRespawnRandomizePositionZone</strong></a> <a id="#(GROUP).InitRespawnRandomizePositionInner" ><strong>GROUP.InitRespawnRandomizePositionInner</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(GROUP).InitRespawnRandomizePositionOuter" ><strong>GROUP.InitRespawnRandomizePositionOuter</strong></a>
@ -21857,7 +21879,18 @@ Note that when WayPointInitialize is called, the Mission of the controllable is
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(GROUP).InitRespawnRandomizePositionZone" ><strong>GROUP.InitRespawnRandomizePositionZone</strong></a> <a id="#(GROUP).InitRespawnRandomizePositionInner" ><strong>GROUP.InitRespawnRandomizePositionInner</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(GROUP).InitRespawnRandomizePositionOuter" ><strong>GROUP.InitRespawnRandomizePositionOuter</strong></a>
@ -25946,7 +25979,18 @@ Coordinates are dependent on the position of the maps origin.</p>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(GROUP).InitRespawnRandomizePositionZone" ><strong>GROUP.InitRespawnRandomizePositionZone</strong></a> <a id="#(GROUP).InitRespawnRandomizePositionInner" ><strong>GROUP.InitRespawnRandomizePositionInner</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(GROUP).InitRespawnRandomizePositionOuter" ><strong>GROUP.InitRespawnRandomizePositionOuter</strong></a>
@ -26571,7 +26615,18 @@ If the Identifiable is alive, true is returned. </p>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(GROUP).InitRespawnRandomizePositionZone" ><strong>GROUP.InitRespawnRandomizePositionZone</strong></a> <a id="#(GROUP).InitRespawnRandomizePositionInner" ><strong>GROUP.InitRespawnRandomizePositionInner</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(GROUP).InitRespawnRandomizePositionOuter" ><strong>GROUP.InitRespawnRandomizePositionOuter</strong></a>
@ -26831,7 +26886,18 @@ If the Identifiable is alive, true is returned. </p>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(GROUP).InitRespawnRandomizePositionZone" ><strong>GROUP.InitRespawnRandomizePositionZone</strong></a> <a id="#(GROUP).InitRespawnRandomizePositionInner" ><strong>GROUP.InitRespawnRandomizePositionInner</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(GROUP).InitRespawnRandomizePositionOuter" ><strong>GROUP.InitRespawnRandomizePositionOuter</strong></a>

View File

@ -3022,28 +3022,6 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<p>Coordinate of the mark.</p> <p>Coordinate of the mark.</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(MARKER).groupid" ><strong>MARKER.groupid</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(MARKER).groupname" ><strong>MARKER.groupname</strong></a>
</div> </div>
</div> </div>
@ -3121,6 +3099,28 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<p>Text displayed in the mark panel.</p> <p>Text displayed in the mark panel.</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#boolean
<a id="#(MARKER).toall" ><strong>MARKER.toall</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#boolean
<a id="#(MARKER).tocoalition" ><strong>MARKER.tocoalition</strong></a>
</div> </div>
</div> </div>
@ -5161,28 +5161,6 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<p>Coordinate of the mark.</p> <p>Coordinate of the mark.</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(MARKER).groupid" ><strong>MARKER.groupid</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(MARKER).groupname" ><strong>MARKER.groupname</strong></a>
</div> </div>
</div> </div>
@ -5260,6 +5238,28 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<p>Text displayed in the mark panel.</p> <p>Text displayed in the mark panel.</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#boolean
<a id="#(MARKER).toall" ><strong>MARKER.toall</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#boolean
<a id="#(MARKER).tocoalition" ><strong>MARKER.tocoalition</strong></a>
</div> </div>
</div> </div>
@ -6771,28 +6771,6 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<p>Coordinate of the mark.</p> <p>Coordinate of the mark.</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(MARKER).groupid" ><strong>MARKER.groupid</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(MARKER).groupname" ><strong>MARKER.groupname</strong></a>
</div> </div>
</div> </div>
@ -6870,6 +6848,28 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<p>Text displayed in the mark panel.</p> <p>Text displayed in the mark panel.</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#boolean
<a id="#(MARKER).toall" ><strong>MARKER.toall</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#boolean
<a id="#(MARKER).tocoalition" ><strong>MARKER.tocoalition</strong></a>
</div> </div>
</div> </div>