Auto commit by GitHub Actions Workflow

This commit is contained in:
MooseBotter
2026-03-21 11:24:39 +00:00
parent f19f2a3809
commit 1036771e32
23 changed files with 731 additions and 1196 deletions
+2 -2
View File
@@ -5978,7 +5978,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>
@@ -7610,7 +7610,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>
+146
View File
@@ -2470,6 +2470,14 @@ the most optimal path following the road between two coordinates.</p>
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(COORDINATE).ScanObjects">COORDINATE:ScanObjects(radius, scanunits, scanstatics, scanscenery)</a></p></td> <td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(COORDINATE).ScanObjects">COORDINATE:ScanObjects(radius, scanunits, scanstatics, scanscenery)</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>Scan/find objects (units, statics, scenery) within a certain radius around the coordinate using the world.searchObjects() DCS API function.</p> <p>Scan/find objects (units, statics, scenery) within a certain radius around the coordinate using the world.searchObjects() DCS API function.</p>
</td>
</tr>
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(COORDINATE).ScanObjectsSquare">COORDINATE:ScanObjectsSquare(radius, scanunits, scanstatics, scanscenery, sideLength)</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>Box volume scanning function matching MOOSE COORDINATE:ScanObjects() structure
For use as COORDINATE:ScanObjectsSquare(sideLength, scanunits, scanstatics, scanscenery)
Creates a cubic search volume with the COORDINATE as the lower-left (southwest) corner.</p>
</td> </td>
</tr> </tr>
<tr class="w3-border"> <tr class="w3-border">
@@ -11336,6 +11344,144 @@ Creates a line on the F10 map from one point to another.</p>
</div> </div>
</div> </div>
</div>
</div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<div class="w3-theme-l2">
<h2><a id="#(COORDINATE).ScanObjectsSquare" ><strong>COORDINATE:ScanObjectsSquare(radius, scanunits, scanstatics, scanscenery, sideLength)</strong></a></h2>
</div>
<p>Box volume scanning function matching MOOSE COORDINATE:ScanObjects() structure
For use as COORDINATE:ScanObjectsSquare(sideLength, scanunits, scanstatics, scanscenery)
Creates a cubic search volume with the COORDINATE as the lower-left (southwest) corner.</p>
<p>Perfect for grid-based map scanning: increment X and Z by sideLength for next grid cell.</p>
<div id= "#Functions##ScanObjectsSquare" class="w3-show w3-white">
<div class="w3-container w3-white" id="functiontype">
<h2><strong>Defined in:</strong></h2>
<div class="w3-margin-left">
<p>COORDINATE</p>
</div>
<h2><strong>Parameters:</strong></h2>
<div class="w3-row w3-margin-left w3-border-bottom w3-border-l2">
<div class="w3-half">
<p>
#number
<strong><strong>radius</strong></strong>
</p>
</div>
<div class="w3-half">
<p>(Optional) Scan radius in meters. Default 100 m.</p>
</div>
</div>
<div class="w3-row w3-margin-left w3-border-bottom w3-border-l2">
<div class="w3-half">
<p>
#boolean
<strong><strong>scanunits</strong></strong>
</p>
</div>
<div class="w3-half">
<p>(Optional) If true scan for units. Default true.</p>
</div>
</div>
<div class="w3-row w3-margin-left w3-border-bottom w3-border-l2">
<div class="w3-half">
<p>
#boolean
<strong><strong>scanstatics</strong></strong>
</p>
</div>
<div class="w3-half">
<p>(Optional) If true scan for static objects. Default true.</p>
</div>
</div>
<div class="w3-row w3-margin-left w3-border-bottom w3-border-l2">
<div class="w3-half">
<p>
#boolean
<strong><strong>scanscenery</strong></strong>
</p>
</div>
<div class="w3-half">
<p>(Optional) If true scan for scenery objects. Default false.</p>
</div>
</div>
<div class="w3-row w3-margin-left w3-border-bottom w3-border-l2">
<div class="w3-half">
<p>
<strong><strong>sideLength</strong></strong>
</p>
</div>
<div class="w3-half">
<p></p>
</div>
</div>
<h2><strong>Return values:</strong></h2>
<div class="w3-row w3-border-bottom w3-margin-left">
<div class="w3-half">
<p>#boolean:</p>
</div>
<div class="w3-half">
<p>True if units were found.</p>
</div>
<div class="w3-half">
<p>#boolean:</p>
</div>
<div class="w3-half">
<p>True if statics were found.</p>
</div>
<div class="w3-half">
<p>#boolean:</p>
</div>
<div class="w3-half">
<p>True if scenery objects were found.</p>
</div>
<div class="w3-half">
<p>#table:</p>
</div>
<div class="w3-half">
<p>Table of MOOSE <a href="Wrapper.Unit.html##(UNIT)">Wrapper.Unit#UNIT</a> objects found.</p>
</div>
<div class="w3-half">
<p>#table:</p>
</div>
<div class="w3-half">
<p>Table of DCS static objects found.</p>
</div>
<div class="w3-half">
<p>#table:</p>
</div>
<div class="w3-half">
<p>Table of DCS scenery objects found.</p>
</div>
</div>
</div>
</div> </div>
</div> </div>
+4 -4
View File
@@ -2774,7 +2774,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="#(SETTINGS).A2ASystem" ><strong>SETTINGS.A2ASystem</strong></a> <a id="#(SETTINGS).A2ASystem" ><strong>SETTINGS.A2ASystem</strong></a>
@@ -2829,7 +2829,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">
#boolean
<a id="#(SETTINGS).Metric" ><strong>SETTINGS.Metric</strong></a> <a id="#(SETTINGS).Metric" ><strong>SETTINGS.Metric</strong></a>
@@ -4931,7 +4931,7 @@ It is advised to use this method at the start of the mission.</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">
#string
<a id="#(SETTINGS).A2ASystem" ><strong>SETTINGS.A2ASystem</strong></a> <a id="#(SETTINGS).A2ASystem" ><strong>SETTINGS.A2ASystem</strong></a>
@@ -4986,7 +4986,7 @@ It is advised to use this method at the start of the mission.</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="#(SETTINGS).Metric" ><strong>SETTINGS.Metric</strong></a> <a id="#(SETTINGS).Metric" ><strong>SETTINGS.Metric</strong></a>
+18 -140
View File
@@ -2992,30 +2992,6 @@ 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).hidden">SPAWN.hidden</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).skill">SPAWN.skill</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">
@@ -3696,11 +3672,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="#(SPAWN).AIOnOff" ><strong>SPAWN.AIOnOff</strong></a> <a id="#(SPAWN).AIOnOff" ><strong>SPAWN.AIOnOff</strong></a>
<p> The AI is on by default when spawning a group.</p>
</div> </div>
</div> </div>
@@ -4015,17 +3994,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).SpawnInitFreq" ><strong>SPAWN.SpawnInitFreq</strong></a>
</div> </div>
</div> </div>
@@ -4106,6 +4074,9 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<p> By default, no InitLimit</p>
</div> </div>
</div> </div>
@@ -4217,7 +4188,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="#(SPAWN).SpawnMaxGroups" ><strong>SPAWN.SpawnMaxGroups</strong></a> <a id="#(SPAWN).SpawnMaxGroups" ><strong>SPAWN.SpawnMaxGroups</strong></a>
@@ -4231,7 +4202,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="#(SPAWN).SpawnMaxUnitsAlive" ><strong>SPAWN.SpawnMaxUnitsAlive</strong></a> <a id="#(SPAWN).SpawnMaxUnitsAlive" ><strong>SPAWN.SpawnMaxUnitsAlive</strong></a>
@@ -4540,50 +4511,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).communication" ><strong>SPAWN.communication</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(SPAWN).hidden" ><strong>SPAWN.hidden</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).skill" ><strong>SPAWN.skill</strong></a>
</div> </div>
</div> </div>
@@ -10379,11 +10306,14 @@ This is needed to ensure that Re-SPAWNing only is done for landed AIR Groups.</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="#(SPAWN).AIOnOff" ><strong>SPAWN.AIOnOff</strong></a> <a id="#(SPAWN).AIOnOff" ><strong>SPAWN.AIOnOff</strong></a>
<p> The AI is on by default when spawning a group.</p>
</div> </div>
</div> </div>
@@ -10698,17 +10628,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).SpawnInitFreq" ><strong>SPAWN.SpawnInitFreq</strong></a>
</div> </div>
</div> </div>
@@ -10789,6 +10708,9 @@ This is needed to ensure that Re-SPAWNing only is done for landed AIR Groups.</p
<p> By default, no InitLimit</p>
</div> </div>
</div> </div>
@@ -10900,7 +10822,7 @@ This is needed to ensure that Re-SPAWNing only is done for landed AIR Groups.</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="#(SPAWN).SpawnMaxGroups" ><strong>SPAWN.SpawnMaxGroups</strong></a> <a id="#(SPAWN).SpawnMaxGroups" ><strong>SPAWN.SpawnMaxGroups</strong></a>
@@ -10914,7 +10836,7 @@ This is needed to ensure that Re-SPAWNing only is done for landed AIR Groups.</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="#(SPAWN).SpawnMaxUnitsAlive" ><strong>SPAWN.SpawnMaxUnitsAlive</strong></a> <a id="#(SPAWN).SpawnMaxUnitsAlive" ><strong>SPAWN.SpawnMaxUnitsAlive</strong></a>
@@ -11223,50 +11145,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).communication" ><strong>SPAWN.communication</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(SPAWN).hidden" ><strong>SPAWN.hidden</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).skill" ><strong>SPAWN.skill</strong></a>
</div> </div>
</div> </div>
+44
View File
@@ -16535,6 +16535,17 @@ 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="#(ZONE_OVAL).Angle" ><strong>ZONE_OVAL.Angle</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#table
<a id="#(ZONE_OVAL).CenterVec2" ><strong>ZONE_OVAL.CenterVec2</strong></a> <a id="#(ZONE_OVAL).CenterVec2" ><strong>ZONE_OVAL.CenterVec2</strong></a>
@@ -17239,6 +17250,17 @@ 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="#(ZONE_OVAL).Angle" ><strong>ZONE_OVAL.Angle</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#table
<a id="#(ZONE_OVAL).CenterVec2" ><strong>ZONE_OVAL.CenterVec2</strong></a> <a id="#(ZONE_OVAL).CenterVec2" ><strong>ZONE_OVAL.CenterVec2</strong></a>
@@ -19410,6 +19432,17 @@ end
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(ZONE_OVAL).Angle" ><strong>ZONE_OVAL.Angle</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#table
<a id="#(ZONE_OVAL).CenterVec2" ><strong>ZONE_OVAL.CenterVec2</strong></a> <a id="#(ZONE_OVAL).CenterVec2" ><strong>ZONE_OVAL.CenterVec2</strong></a>
@@ -20943,6 +20976,17 @@ end
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(ZONE_OVAL).Angle" ><strong>ZONE_OVAL.Angle</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#table
<a id="#(ZONE_OVAL).CenterVec2" ><strong>ZONE_OVAL.CenterVec2</strong></a> <a id="#(ZONE_OVAL).CenterVec2" ><strong>ZONE_OVAL.CenterVec2</strong></a>
+2 -2
View File
@@ -3876,7 +3876,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="#(ATC_GROUND).Airbases" ><strong>ATC_GROUND.Airbases</strong></a> <a id="#(ATC_GROUND).Airbases" ><strong>ATC_GROUND.Airbases</strong></a>
@@ -4461,7 +4461,7 @@ An airbase can be specified to set the maximum kick speed for.</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="#(ATC_GROUND).Airbases" ><strong>ATC_GROUND.Airbases</strong></a> <a id="#(ATC_GROUND).Airbases" ><strong>ATC_GROUND.Airbases</strong></a>
+28 -116
View File
@@ -2312,7 +2312,7 @@
<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="#(AUTOLASE).CurrentLasing" ><strong>AUTOLASE.CurrentLasing</strong></a> <a id="#(AUTOLASE).CurrentLasing" ><strong>AUTOLASE.CurrentLasing</strong></a>
@@ -2389,7 +2389,7 @@
<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="#(AUTOLASE).GroupsByThreat" ><strong>AUTOLASE.GroupsByThreat</strong></a> <a id="#(AUTOLASE).GroupsByThreat" ><strong>AUTOLASE.GroupsByThreat</strong></a>
@@ -2427,17 +2427,6 @@
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(AUTOLASE).LaserCodes" ><strong>AUTOLASE.LaserCodes</strong></a>
</div> </div>
</div> </div>
@@ -2449,17 +2438,6 @@
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(AUTOLASE).MonitorFrequency" ><strong>AUTOLASE.MonitorFrequency</strong></a>
</div> </div>
</div> </div>
@@ -2548,6 +2526,17 @@
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(AUTOLASE).RoundingPrecision" ><strong>AUTOLASE.RoundingPrecision</strong></a>
</div> </div>
</div> </div>
@@ -2562,39 +2551,6 @@
<p> set up SRS</p> <p> set up SRS</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(AUTOLASE).SRSFreq" ><strong>AUTOLASE.SRSFreq</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(AUTOLASE).SRSMod" ><strong>AUTOLASE.SRSMod</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#string
<a id="#(AUTOLASE).SRSPath" ><strong>AUTOLASE.SRSPath</strong></a>
</div> </div>
</div> </div>
@@ -2612,7 +2568,7 @@
<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="#(AUTOLASE).UnitsByThreat" ><strong>AUTOLASE.UnitsByThreat</strong></a> <a id="#(AUTOLASE).UnitsByThreat" ><strong>AUTOLASE.UnitsByThreat</strong></a>
@@ -2683,17 +2639,6 @@
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(AUTOLASE).lasingindex" ><strong>AUTOLASE.lasingindex</strong></a>
</div> </div>
</div> </div>
@@ -2725,22 +2670,11 @@
<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="#(AUTOLASE).minthreatlevel" ><strong>AUTOLASE.minthreatlevel</strong></a> <a id="#(AUTOLASE).minthreatlevel" ><strong>AUTOLASE.minthreatlevel</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#boolean
<a id="#(AUTOLASE).notifypilots" ><strong>AUTOLASE.notifypilots</strong></a>
</div> </div>
</div> </div>
@@ -2763,39 +2697,6 @@
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(AUTOLASE).reporttimelong" ><strong>AUTOLASE.reporttimelong</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(AUTOLASE).reporttimeshort" ><strong>AUTOLASE.reporttimeshort</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(AUTOLASE).smokecolor" ><strong>AUTOLASE.smokecolor</strong></a>
</div> </div>
</div> </div>
@@ -2813,7 +2714,18 @@
<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 #table
<a id="#(AUTOLASE).smokeoffset" ><strong>AUTOLASE.smokeoffset</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(AUTOLASE).smoketargets" ><strong>AUTOLASE.smoketargets</strong></a> <a id="#(AUTOLASE).smoketargets" ><strong>AUTOLASE.smoketargets</strong></a>
@@ -2824,7 +2736,7 @@
<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="#(AUTOLASE).targetsperrecce" ><strong>AUTOLASE.targetsperrecce</strong></a> <a id="#(AUTOLASE).targetsperrecce" ><strong>AUTOLASE.targetsperrecce</strong></a>
+11
View File
@@ -2386,6 +2386,17 @@ Use the method <a href="##(DESIGNATE).SetMission">DESIGNATE.SetMission</a>() to
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(DESIGNATE).LaseDuration" ><strong>DESIGNATE.LaseDuration</strong></a>
</div> </div>
</div> </div>
+66
View File
@@ -20006,6 +20006,28 @@ 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="#(DETECTION_BASE).DetectedItemCount" ><strong>DETECTION_BASE.DetectedItemCount</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(DETECTION_BASE).DetectedItemMax" ><strong>DETECTION_BASE.DetectedItemMax</strong></a>
</div> </div>
</div> </div>
@@ -24771,6 +24793,28 @@ zones that reflect cloudy areas where detected units may not be so easily visual
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(DETECTION_BASE).DetectedItemCount" ><strong>DETECTION_BASE.DetectedItemCount</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(DETECTION_BASE).DetectedItemMax" ><strong>DETECTION_BASE.DetectedItemMax</strong></a>
</div> </div>
</div> </div>
@@ -26557,6 +26601,28 @@ zones that reflect cloudy areas where detected units may not be so easily visual
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(DETECTION_BASE).DetectedItemCount" ><strong>DETECTION_BASE.DetectedItemCount</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(DETECTION_BASE).DetectedItemMax" ><strong>DETECTION_BASE.DetectedItemMax</strong></a>
</div> </div>
</div> </div>
+32 -4
View File
@@ -4357,6 +4357,17 @@ 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>
@@ -4784,8 +4795,8 @@ 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="#(MANTIS).SkateNumber" ><strong>MANTIS.SkateNumber</strong></a> <a id="#(MANTIS).SkateZones" ><strong>MANTIS.SkateZones</strong></a>
@@ -5191,6 +5202,9 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<p> switch alarm state RED</p>
</div> </div>
</div> </div>
@@ -9949,6 +9963,17 @@ 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>
@@ -10376,8 +10401,8 @@ E.g. `mymantis:SetAdvancedMode(true, 90)`</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="#(MANTIS).SkateNumber" ><strong>MANTIS.SkateNumber</strong></a> <a id="#(MANTIS).SkateZones" ><strong>MANTIS.SkateZones</strong></a>
@@ -10783,6 +10808,9 @@ E.g. `mymantis:SetAdvancedMode(true, 90)`</code></pre>
<p> switch alarm state RED</p>
</div> </div>
</div> </div>
-28
View File
@@ -2188,20 +2188,6 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<div class="w3-white" id="record_type"> <div class="w3-white" id="record_type">
<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 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>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
@@ -2432,20 +2418,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 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>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
+39 -24
View File
@@ -3345,6 +3345,12 @@ manager:Stop(7200)
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(RAT).termtype">RAT.termtype</a></p></td> <td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(RAT).termtype">RAT.termtype</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>Type of terminal to be used when spawning at an airbase.</p> <p>Type of terminal to be used when spawning at an airbase.</p>
</td>
</tr>
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(RAT).type">RAT.type</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">
@@ -4576,30 +4582,6 @@ 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).hidden">RAT.hidden</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).skill">RAT.skill</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">
@@ -7846,6 +7828,17 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<p>Type of terminal to be used when spawning at an airbase.</p> <p>Type of terminal to be used when spawning at an airbase.</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(RAT).type" ><strong>RAT.type</strong></a>
</div> </div>
</div> </div>
@@ -15794,6 +15787,17 @@ Initializes the ratcraft array and group menu.</p>
<p>Type of terminal to be used when spawning at an airbase.</p> <p>Type of terminal to be used when spawning at an airbase.</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(RAT).type" ><strong>RAT.type</strong></a>
</div> </div>
</div> </div>
@@ -22832,6 +22836,17 @@ This is needed to ensure that Re-SPAWNing only is done for landed AIR Groups.</p
<p>Type of terminal to be used when spawning at an airbase.</p> <p>Type of terminal to be used when spawning at an airbase.</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(RAT).type" ><strong>RAT.type</strong></a>
</div> </div>
</div> </div>
+16 -19
View File
@@ -41982,7 +41982,7 @@ When moose is loading dynamically (for moose class development), tracing is swit
<p> VNAO Edit - Added </p> <p> VNAO Edit - Added</p>
</div> </div>
@@ -42094,9 +42094,6 @@ When moose is loading dynamically (for moose class development), tracing is swit
<p> Set case to that of lead.</p>
</div> </div>
</div> </div>
@@ -42178,6 +42175,17 @@ When moose is loading dynamically (for moose class development), tracing is swit
<p>Data table at each position in the groove. Elements are of type <a href="##(AIRBOSS).GrooveData">AIRBOSS.GrooveData</a>.</p> <p>Data table at each position in the groove. Elements are of type <a href="##(AIRBOSS).GrooveData">AIRBOSS.GrooveData</a>.</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#boolean
<a id="#(AIRBOSS.PlayerData).holding" ><strong>AIRBOSS.PlayerData.holding</strong></a>
</div> </div>
</div> </div>
@@ -42338,6 +42346,9 @@ When moose is loading dynamically (for moose class development), tracing is swit
<p> Set Stable Hover</p>
</div> </div>
</div> </div>
@@ -42371,9 +42382,6 @@ When moose is loading dynamically (for moose class development), tracing is swit
<p> Set time stamp.</p>
</div> </div>
</div> </div>
@@ -42538,7 +42546,7 @@ When moose is loading dynamically (for moose class development), tracing is swit
<p> VNAO Edit - Added</p> <p> VNAO Edit - Added </p>
</div> </div>
@@ -42616,17 +42624,6 @@ When moose is loading dynamically (for moose class development), tracing is swit
<p>Band modulation.</p> <p>Band modulation.</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(AIRBOSS.Radio).voice" ><strong>AIRBOSS.Radio.voice</strong></a>
</div> </div>
</div> </div>
+44
View File
@@ -6731,6 +6731,17 @@ 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 class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(ARMYGROUP).HuntingEnemySet" ><strong>ARMYGROUP.HuntingEnemySet</strong></a>
</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">
@@ -12615,6 +12626,17 @@ and pick the closest unit to this ARMYGROUP.</p>
<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 class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(ARMYGROUP).HuntingEnemySet" ><strong>ARMYGROUP.HuntingEnemySet</strong></a>
</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">
@@ -33125,6 +33147,17 @@ Optionally, you can calculate the current max weight possible, which accounts fo
<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 class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(ARMYGROUP).HuntingEnemySet" ><strong>ARMYGROUP.HuntingEnemySet</strong></a>
</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">
@@ -34975,6 +35008,17 @@ Optionally, you can calculate the current max weight possible, which accounts fo
<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 class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(ARMYGROUP).HuntingEnemySet" ><strong>ARMYGROUP.HuntingEnemySet</strong></a>
</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">
+6 -15
View File
@@ -4148,7 +4148,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>
@@ -4638,14 +4638,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>
@@ -10623,7 +10620,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>
@@ -11113,14 +11110,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>
@@ -13305,7 +13299,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>
@@ -13795,14 +13789,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>
+110 -388
View File
@@ -2243,7 +2243,7 @@ If you use units built by multiple templates, they will effectively double on lo
</td> </td>
</tr> </tr>
<tr class="w3-border"> <tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(CTLD).AddCTLDZone">CTLD:AddCTLDZone(Name, Type, Color, Active, HasBeacon, Shiplength, Shipwidth)</a></p></td> <td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(CTLD).AddCTLDZone">CTLD:AddCTLDZone(Name, Type, Color, Active, (, (, (, (, HasBeacon, Shiplength, Shipwidth, BeaconFrequencies)</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>User function - Creates and adds a #CTLD.CargoZone zone for this CTLD instance.</p> <p>User function - Creates and adds a #CTLD.CargoZone zone for this CTLD instance.</p>
</td> </td>
@@ -5938,17 +5938,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="#(CTLD).CargoCounter" ><strong>CTLD.CargoCounter</strong></a>
</div> </div>
</div> </div>
@@ -6018,17 +6007,6 @@ 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>
@@ -6071,7 +6049,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>
@@ -6096,28 +6074,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">
#number
<a id="#(CTLD).Engineers" ><strong>CTLD.Engineers</strong></a>
<p>use as counter</p>
</div>
</div>
<div>
<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>
@@ -6202,7 +6163,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).FreeFMFrequencies" ><strong>CTLD.FreeFMFrequencies</strong></a> <a id="#(CTLD).FreeFMFrequencies" ><strong>CTLD.FreeFMFrequencies</strong></a>
@@ -6213,7 +6174,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).FreeUHFFrequencies" ><strong>CTLD.FreeUHFFrequencies</strong></a> <a id="#(CTLD).FreeUHFFrequencies" ><strong>CTLD.FreeUHFFrequencies</strong></a>
@@ -6224,14 +6185,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="#(CTLD).FreeVHFFrequencies" ><strong>CTLD.FreeVHFFrequencies</strong></a> <a id="#(CTLD).FreeVHFFrequencies" ><strong>CTLD.FreeVHFFrequencies</strong></a>
<p> Beacons</p>
</div> </div>
</div> </div>
@@ -6296,14 +6254,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="#(CTLD).PilotGroups" ><strong>CTLD.PilotGroups</strong></a> <a id="#(CTLD).PilotGroups" ><strong>CTLD.PilotGroups</strong></a>
<p> tables</p>
</div> </div>
</div> </div>
@@ -6332,11 +6287,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">
#string
<a id="#(CTLD).RadioPath" ><strong>CTLD.RadioPath</strong></a> <a id="#(CTLD).RadioPath" ><strong>CTLD.RadioPath</strong></a>
<p> Folderpath.</p>
</div> </div>
</div> </div>
@@ -6401,17 +6359,6 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<p> Smokes and Flares</p> <p> Smokes and Flares</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#table
<a id="#(CTLD).Spawned_Cargo" ><strong>CTLD.Spawned_Cargo</strong></a>
</div> </div>
</div> </div>
@@ -6423,17 +6370,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="#(CTLD).TroopCounter" ><strong>CTLD.TroopCounter</strong></a>
</div> </div>
</div> </div>
@@ -6527,7 +6463,7 @@ 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="#(CTLD).VehicleMoveFormation" ><strong>CTLD.VehicleMoveFormation</strong></a> <a id="#(CTLD).UserSetGroup" ><strong>CTLD.UserSetGroup</strong></a>
@@ -6553,17 +6489,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="#(CTLD)._c130DcAutoSeq" ><strong>CTLD._c130DcAutoSeq</strong></a>
</div> </div>
</div> </div>
@@ -6575,28 +6500,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">
#table
<a id="#(CTLD)._cargoByTemplate" ><strong>CTLD._cargoByTemplate</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#table
<a id="#(CTLD)._crateOrStaticByName" ><strong>CTLD._crateOrStaticByName</strong></a>
</div> </div>
</div> </div>
@@ -6766,17 +6669,6 @@ 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>
@@ -7231,9 +7123,6 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<p> message suppression</p>
</div> </div>
</div> </div>
@@ -7251,7 +7140,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>
@@ -7300,9 +7189,6 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<p> sub categories</p>
</div> </div>
</div> </div>
@@ -7462,7 +7348,7 @@ 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">
<div class="w3-theme-l2"> <div class="w3-theme-l2">
<h2><a id="#(CTLD).AddCTLDZone" ><strong>CTLD:AddCTLDZone(Name, Type, Color, Active, HasBeacon, Shiplength, Shipwidth)</strong></a></h2> <h2><a id="#(CTLD).AddCTLDZone" ><strong>CTLD:AddCTLDZone(Name, Type, Color, Active, (, (, (, (, HasBeacon, Shiplength, Shipwidth, BeaconFrequencies)</strong></a></h2>
</div> </div>
<p>User function - Creates and adds a #CTLD.CargoZone zone for this CTLD instance.</p> <p>User function - Creates and adds a #CTLD.CargoZone zone for this CTLD instance.</p>
@@ -7535,39 +7421,92 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<div class="w3-half"> <div class="w3-half">
<p> <p>
#string #string
<strong><strong>(</strong></strong>
</p>
</div>
<div class="w3-half">
<p>ptional) HasBeacon Does this zone have a beacon if it is active?</p>
</div>
</div>
<div class="w3-row w3-margin-left w3-border-bottom w3-border-l2">
<div class="w3-half">
<p>
#number
<strong><strong>(</strong></strong>
</p>
</div>
<div class="w3-half">
<p>ptional) Shiplength Length of Ship for shipzones</p>
</div>
</div>
<div class="w3-row w3-margin-left w3-border-bottom w3-border-l2">
<div class="w3-half">
<p>
#number
<strong><strong>(</strong></strong>
</p>
</div>
<div class="w3-half">
<p>ptional) Shipwidth Width of Ship for shipzones</p>
</div>
</div>
<div class="w3-row w3-margin-left w3-border-bottom w3-border-l2">
<div class="w3-half">
<p>
#table
<strong><strong>(</strong></strong>
</p>
</div>
<div class="w3-half">
<p>ptional) BeaconFrequencies PreSet Frequencies in MHz (Million(!) Hertz), table of values , e.g. <code>{FM=0.124,UHF=215,VHF=110}</code></p>
</div>
</div>
<div class="w3-row w3-margin-left w3-border-bottom w3-border-l2">
<div class="w3-half">
<p>
<strong><strong>HasBeacon</strong></strong> <strong><strong>HasBeacon</strong></strong>
</p> </p>
</div> </div>
<div class="w3-half"> <div class="w3-half">
<p></p>
<p>Does this zone have a beacon if it is active?</p>
</div> </div>
</div> </div>
<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>
#number
<strong><strong>Shiplength</strong></strong> <strong><strong>Shiplength</strong></strong>
</p> </p>
</div> </div>
<div class="w3-half"> <div class="w3-half">
<p></p>
<p>Length of Ship for shipzones</p>
</div> </div>
</div> </div>
<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>
#number
<strong><strong>Shipwidth</strong></strong> <strong><strong>Shipwidth</strong></strong>
</p> </p>
</div> </div>
<div class="w3-half"> <div class="w3-half">
<p></p>
<p>Width of Ship for shipzones</p> </div>
</div>
<div class="w3-row w3-margin-left w3-border-bottom w3-border-l2">
<div class="w3-half">
<p>
<strong><strong>BeaconFrequencies</strong></strong>
</p>
</div>
<div class="w3-half">
<p></p>
</div> </div>
</div> </div>
<h2><strong>Return value:</strong></h2> <h2><strong>Return value:</strong></h2>
@@ -22777,17 +22716,6 @@ However, if you create a new folder inside the miz file, which contains the soun
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(CTLD).CargoCounter" ><strong>CTLD.CargoCounter</strong></a>
</div> </div>
</div> </div>
@@ -22857,17 +22785,6 @@ 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>
@@ -22910,7 +22827,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>
@@ -22935,28 +22852,11 @@ 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).Engineers" ><strong>CTLD.Engineers</strong></a>
<p>use as counter</p>
</div>
</div>
<div>
<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>
@@ -23041,7 +22941,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).FreeFMFrequencies" ><strong>CTLD.FreeFMFrequencies</strong></a> <a id="#(CTLD).FreeFMFrequencies" ><strong>CTLD.FreeFMFrequencies</strong></a>
@@ -23052,7 +22952,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).FreeUHFFrequencies" ><strong>CTLD.FreeUHFFrequencies</strong></a> <a id="#(CTLD).FreeUHFFrequencies" ><strong>CTLD.FreeUHFFrequencies</strong></a>
@@ -23063,14 +22963,11 @@ 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>
<p> Beacons</p>
</div> </div>
</div> </div>
@@ -23135,14 +23032,11 @@ 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).PilotGroups" ><strong>CTLD.PilotGroups</strong></a> <a id="#(CTLD).PilotGroups" ><strong>CTLD.PilotGroups</strong></a>
<p> tables</p>
</div> </div>
</div> </div>
@@ -23171,11 +23065,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">
#string
<a id="#(CTLD).RadioPath" ><strong>CTLD.RadioPath</strong></a> <a id="#(CTLD).RadioPath" ><strong>CTLD.RadioPath</strong></a>
<p> Folderpath.</p>
</div> </div>
</div> </div>
@@ -23240,17 +23137,6 @@ However, if you create a new folder inside the miz file, which contains the soun
<p> Smokes and Flares</p> <p> Smokes and Flares</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#table
<a id="#(CTLD).Spawned_Cargo" ><strong>CTLD.Spawned_Cargo</strong></a>
</div> </div>
</div> </div>
@@ -23262,17 +23148,6 @@ However, if you create a new folder inside the miz file, which contains the soun
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(CTLD).TroopCounter" ><strong>CTLD.TroopCounter</strong></a>
</div> </div>
</div> </div>
@@ -23366,7 +23241,7 @@ However, if you create a new folder inside the miz file, which contains the soun
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(CTLD).VehicleMoveFormation" ><strong>CTLD.VehicleMoveFormation</strong></a> <a id="#(CTLD).UserSetGroup" ><strong>CTLD.UserSetGroup</strong></a>
@@ -23392,17 +23267,6 @@ However, if you create a new folder inside the miz file, which contains the soun
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(CTLD)._c130DcAutoSeq" ><strong>CTLD._c130DcAutoSeq</strong></a>
</div> </div>
</div> </div>
@@ -23414,28 +23278,6 @@ However, if you create a new folder inside the miz file, which contains the soun
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#table
<a id="#(CTLD)._cargoByTemplate" ><strong>CTLD._cargoByTemplate</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#table
<a id="#(CTLD)._crateOrStaticByName" ><strong>CTLD._crateOrStaticByName</strong></a>
</div> </div>
</div> </div>
@@ -23605,17 +23447,6 @@ 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>
@@ -24070,9 +23901,6 @@ However, if you create a new folder inside the miz file, which contains the soun
<p> message suppression</p>
</div> </div>
</div> </div>
@@ -24090,7 +23918,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>
@@ -24139,9 +23967,6 @@ However, if you create a new folder inside the miz file, which contains the soun
<p> sub categories</p>
</div> </div>
</div> </div>
@@ -25739,17 +25564,6 @@ However, if you create a new folder inside the miz file, which contains the soun
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(CTLD).CargoCounter" ><strong>CTLD.CargoCounter</strong></a>
</div> </div>
</div> </div>
@@ -25819,17 +25633,6 @@ 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>
@@ -25872,7 +25675,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>
@@ -25897,28 +25700,11 @@ 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).Engineers" ><strong>CTLD.Engineers</strong></a>
<p>use as counter</p>
</div>
</div>
<div>
<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>
@@ -26003,7 +25789,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).FreeFMFrequencies" ><strong>CTLD.FreeFMFrequencies</strong></a> <a id="#(CTLD).FreeFMFrequencies" ><strong>CTLD.FreeFMFrequencies</strong></a>
@@ -26014,7 +25800,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).FreeUHFFrequencies" ><strong>CTLD.FreeUHFFrequencies</strong></a> <a id="#(CTLD).FreeUHFFrequencies" ><strong>CTLD.FreeUHFFrequencies</strong></a>
@@ -26025,14 +25811,11 @@ 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>
<p> Beacons</p>
</div> </div>
</div> </div>
@@ -26097,14 +25880,11 @@ 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).PilotGroups" ><strong>CTLD.PilotGroups</strong></a> <a id="#(CTLD).PilotGroups" ><strong>CTLD.PilotGroups</strong></a>
<p> tables</p>
</div> </div>
</div> </div>
@@ -26133,11 +25913,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">
#string
<a id="#(CTLD).RadioPath" ><strong>CTLD.RadioPath</strong></a> <a id="#(CTLD).RadioPath" ><strong>CTLD.RadioPath</strong></a>
<p> Folderpath.</p>
</div> </div>
</div> </div>
@@ -26202,17 +25985,6 @@ However, if you create a new folder inside the miz file, which contains the soun
<p> Smokes and Flares</p> <p> Smokes and Flares</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#table
<a id="#(CTLD).Spawned_Cargo" ><strong>CTLD.Spawned_Cargo</strong></a>
</div> </div>
</div> </div>
@@ -26224,17 +25996,6 @@ However, if you create a new folder inside the miz file, which contains the soun
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(CTLD).TroopCounter" ><strong>CTLD.TroopCounter</strong></a>
</div> </div>
</div> </div>
@@ -26328,7 +26089,7 @@ However, if you create a new folder inside the miz file, which contains the soun
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(CTLD).VehicleMoveFormation" ><strong>CTLD.VehicleMoveFormation</strong></a> <a id="#(CTLD).UserSetGroup" ><strong>CTLD.UserSetGroup</strong></a>
@@ -26354,17 +26115,6 @@ However, if you create a new folder inside the miz file, which contains the soun
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(CTLD)._c130DcAutoSeq" ><strong>CTLD._c130DcAutoSeq</strong></a>
</div> </div>
</div> </div>
@@ -26376,28 +26126,6 @@ However, if you create a new folder inside the miz file, which contains the soun
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#table
<a id="#(CTLD)._cargoByTemplate" ><strong>CTLD._cargoByTemplate</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#table
<a id="#(CTLD)._crateOrStaticByName" ><strong>CTLD._crateOrStaticByName</strong></a>
</div> </div>
</div> </div>
@@ -26567,17 +26295,6 @@ 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>
@@ -27032,9 +26749,6 @@ However, if you create a new folder inside the miz file, which contains the soun
<p> message suppression</p>
</div> </div>
</div> </div>
@@ -27052,7 +26766,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>
@@ -27101,9 +26815,6 @@ However, if you create a new folder inside the miz file, which contains the soun
<p> sub categories</p>
</div> </div>
</div> </div>
@@ -31833,6 +31544,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="#(CTLD_CARGO).Positionable" ><strong>CTLD_CARGO.Positionable</strong></a>
</div> </div>
</div> </div>
+68 -88
View File
@@ -7827,6 +7827,20 @@ 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">
<a id="#(FLIGHTGROUP).currbase" ><strong>FLIGHTGROUP.currbase</strong></a>
<p> Set current airbase.</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">
@@ -7858,6 +7872,9 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<p> Set the destination base.</p>
</div> </div>
</div> </div>
@@ -8044,17 +8061,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="#(FLIGHTGROUP).isLandingAtAirbase" ><strong>FLIGHTGROUP.isLandingAtAirbase</strong></a>
</div> </div>
</div> </div>
@@ -8077,17 +8083,6 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<p>Flight is ready for takeoff. This is for FLIGHTCONTROL.</p> <p>Flight is ready for takeoff. This is for FLIGHTCONTROL.</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#boolean
<a id="#(FLIGHTGROUP).isUncontrolled" ><strong>FLIGHTGROUP.isUncontrolled</strong></a>
</div> </div>
</div> </div>
@@ -18643,6 +18638,20 @@ Here we only check if stuck whilst taxiing.</p>
</div> </div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(FLIGHTGROUP).currbase" ><strong>FLIGHTGROUP.currbase</strong></a>
<p> Set current airbase.</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">
@@ -18674,6 +18683,9 @@ Here we only check if stuck whilst taxiing.</p>
<p> Set the destination base.</p>
</div> </div>
</div> </div>
@@ -18860,17 +18872,6 @@ Here we only check if stuck whilst taxiing.</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(FLIGHTGROUP).isLandingAtAirbase" ><strong>FLIGHTGROUP.isLandingAtAirbase</strong></a>
</div> </div>
</div> </div>
@@ -18893,17 +18894,6 @@ Here we only check if stuck whilst taxiing.</p>
<p>Flight is ready for takeoff. This is for FLIGHTCONTROL.</p> <p>Flight is ready for takeoff. This is for FLIGHTCONTROL.</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#boolean
<a id="#(FLIGHTGROUP).isUncontrolled" ><strong>FLIGHTGROUP.isUncontrolled</strong></a>
</div> </div>
</div> </div>
@@ -39502,6 +39492,20 @@ Optionally, you can calculate the current max weight possible, which accounts fo
</div> </div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(FLIGHTGROUP).currbase" ><strong>FLIGHTGROUP.currbase</strong></a>
<p> Set current airbase.</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">
@@ -39533,6 +39537,9 @@ Optionally, you can calculate the current max weight possible, which accounts fo
<p> Set the destination base.</p>
</div> </div>
</div> </div>
@@ -39719,17 +39726,6 @@ Optionally, you can calculate the current max weight possible, which accounts fo
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(FLIGHTGROUP).isLandingAtAirbase" ><strong>FLIGHTGROUP.isLandingAtAirbase</strong></a>
</div> </div>
</div> </div>
@@ -39752,17 +39748,6 @@ Optionally, you can calculate the current max weight possible, which accounts fo
<p>Flight is ready for takeoff. This is for FLIGHTCONTROL.</p> <p>Flight is ready for takeoff. This is for FLIGHTCONTROL.</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#boolean
<a id="#(FLIGHTGROUP).isUncontrolled" ><strong>FLIGHTGROUP.isUncontrolled</strong></a>
</div> </div>
</div> </div>
@@ -41701,6 +41686,20 @@ Optionally, you can calculate the current max weight possible, which accounts fo
</div> </div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(FLIGHTGROUP).currbase" ><strong>FLIGHTGROUP.currbase</strong></a>
<p> Set current airbase.</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">
@@ -41732,6 +41731,9 @@ Optionally, you can calculate the current max weight possible, which accounts fo
<p> Set the destination base.</p>
</div> </div>
</div> </div>
@@ -41918,17 +41920,6 @@ Optionally, you can calculate the current max weight possible, which accounts fo
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(FLIGHTGROUP).isLandingAtAirbase" ><strong>FLIGHTGROUP.isLandingAtAirbase</strong></a>
</div> </div>
</div> </div>
@@ -41951,17 +41942,6 @@ Optionally, you can calculate the current max weight possible, which accounts fo
<p>Flight is ready for takeoff. This is for FLIGHTCONTROL.</p> <p>Flight is ready for takeoff. This is for FLIGHTCONTROL.</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#boolean
<a id="#(FLIGHTGROUP).isUncontrolled" ><strong>FLIGHTGROUP.isUncontrolled</strong></a>
</div> </div>
</div> </div>
+1 -1
View File
@@ -39383,7 +39383,7 @@ When moose is loading dynamically (for moose class development), tracing is swit
<p> Has line of sight.</p> <p> No of sight.</p>
</div> </div>
-9
View File
@@ -3519,9 +3519,6 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<p> Contested.</p>
</div> </div>
</div> </div>
@@ -7339,9 +7336,6 @@ myopszone = OPSZONE:New(ZONE_AIRBASE:New("Batumi",6000),coalition.side.BLUE) --
<p> Contested.</p>
</div> </div>
</div> </div>
@@ -9296,9 +9290,6 @@ myopszone = OPSZONE:New(ZONE_AIRBASE:New("Batumi",6000),coalition.side.BLUE) --
<p> Contested.</p>
</div> </div>
</div> </div>
+6 -48
View File
@@ -15953,14 +15953,11 @@ 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">
<a href="Core.Set.html##(SET_OPSGROUP)">Core.Set#SET_OPSGROUP</a>
<a id="#(PLAYERTASKCONTROLLER).LasingDroneSet" ><strong>PLAYERTASKCONTROLLER.LasingDroneSet</strong></a> <a id="#(PLAYERTASKCONTROLLER).LasingDroneSet" ><strong>PLAYERTASKCONTROLLER.LasingDroneSet</strong></a>
<p>self.PlayerMenu = {} -- #table</p>
</div> </div>
</div> </div>
@@ -16509,7 +16506,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="#(PLAYERTASKCONTROLLER).lasttaskcount" ><strong>PLAYERTASKCONTROLLER.lasttaskcount</strong></a> <a id="#(PLAYERTASKCONTROLLER).lasttaskcount" ><strong>PLAYERTASKCONTROLLER.lasttaskcount</strong></a>
@@ -16580,17 +16577,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="#(PLAYERTASKCONTROLLER).repeattimes" ><strong>PLAYERTASKCONTROLLER.repeattimes</strong></a>
</div> </div>
</div> </div>
@@ -23488,14 +23474,11 @@ If you don't want SEAD tasks generated, use as follows where "mycontroller" is y
<div> <div>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
<a href="Core.Set.html##(SET_OPSGROUP)">Core.Set#SET_OPSGROUP</a>
<a id="#(PLAYERTASKCONTROLLER).LasingDroneSet" ><strong>PLAYERTASKCONTROLLER.LasingDroneSet</strong></a> <a id="#(PLAYERTASKCONTROLLER).LasingDroneSet" ><strong>PLAYERTASKCONTROLLER.LasingDroneSet</strong></a>
<p>self.PlayerMenu = {} -- #table</p>
</div> </div>
</div> </div>
@@ -24044,7 +24027,7 @@ If you don't want SEAD tasks generated, use as follows where "mycontroller" is y
<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="#(PLAYERTASKCONTROLLER).lasttaskcount" ><strong>PLAYERTASKCONTROLLER.lasttaskcount</strong></a> <a id="#(PLAYERTASKCONTROLLER).lasttaskcount" ><strong>PLAYERTASKCONTROLLER.lasttaskcount</strong></a>
@@ -24115,17 +24098,6 @@ If you don't want SEAD tasks generated, use as follows where "mycontroller" is y
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(PLAYERTASKCONTROLLER).repeattimes" ><strong>PLAYERTASKCONTROLLER.repeattimes</strong></a>
</div> </div>
</div> </div>
@@ -25973,14 +25945,11 @@ If you don't want SEAD tasks generated, use as follows where "mycontroller" is y
<div> <div>
<div class="w3-card-2 w3-padding-small w3-margin-top"> <div class="w3-card-2 w3-padding-small w3-margin-top">
<a href="Core.Set.html##(SET_OPSGROUP)">Core.Set#SET_OPSGROUP</a>
<a id="#(PLAYERTASKCONTROLLER).LasingDroneSet" ><strong>PLAYERTASKCONTROLLER.LasingDroneSet</strong></a> <a id="#(PLAYERTASKCONTROLLER).LasingDroneSet" ><strong>PLAYERTASKCONTROLLER.LasingDroneSet</strong></a>
<p>self.PlayerMenu = {} -- #table</p>
</div> </div>
</div> </div>
@@ -26529,7 +26498,7 @@ If you don't want SEAD tasks generated, use as follows where "mycontroller" is y
<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="#(PLAYERTASKCONTROLLER).lasttaskcount" ><strong>PLAYERTASKCONTROLLER.lasttaskcount</strong></a> <a id="#(PLAYERTASKCONTROLLER).lasttaskcount" ><strong>PLAYERTASKCONTROLLER.lasttaskcount</strong></a>
@@ -26600,17 +26569,6 @@ If you don't want SEAD tasks generated, use as follows where "mycontroller" is y
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(PLAYERTASKCONTROLLER).repeattimes" ><strong>PLAYERTASKCONTROLLER.repeattimes</strong></a>
</div> </div>
</div> </div>
+22 -22
View File
@@ -3253,17 +3253,6 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<p>Stack by pointer.</p> <p>Stack by pointer.</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(FIFO).uniquecounter" ><strong>FIFO.uniquecounter</strong></a>
</div> </div>
</div> </div>
@@ -4113,17 +4102,6 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<p>Stack by pointer.</p> <p>Stack by pointer.</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#number
<a id="#(FIFO).uniquecounter" ><strong>FIFO.uniquecounter</strong></a>
</div> </div>
</div> </div>
@@ -8041,6 +8019,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">
#number
<a id="#(LIFO).uniquecounter" ><strong>LIFO.uniquecounter</strong></a>
</div> </div>
</div> </div>
@@ -8890,6 +8879,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">
#number
<a id="#(LIFO).uniquecounter" ><strong>LIFO.uniquecounter</strong></a>
</div> </div>
</div> </div>
-220
View File
@@ -4435,28 +4435,6 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
<p>The DCS controllable class.</p> <p>The DCS controllable class.</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#boolean
<a id="#(CONTROLLABLE).IRMarkerGroup" ><strong>CONTROLLABLE.IRMarkerGroup</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#boolean
<a id="#(CONTROLLABLE).IRMarkerUnit" ><strong>CONTROLLABLE.IRMarkerUnit</strong></a>
</div> </div>
</div> </div>
@@ -4479,28 +4457,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="#(CONTROLLABLE).spot" ><strong>CONTROLLABLE.spot</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(CONTROLLABLE).timer" ><strong>CONTROLLABLE.timer</strong></a>
</div> </div>
</div> </div>
@@ -18187,28 +18143,6 @@ mygroup:WayPointExecute()</code></pre>
<p>The DCS controllable class.</p> <p>The DCS controllable class.</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#boolean
<a id="#(CONTROLLABLE).IRMarkerGroup" ><strong>CONTROLLABLE.IRMarkerGroup</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#boolean
<a id="#(CONTROLLABLE).IRMarkerUnit" ><strong>CONTROLLABLE.IRMarkerUnit</strong></a>
</div> </div>
</div> </div>
@@ -18231,28 +18165,6 @@ mygroup:WayPointExecute()</code></pre>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(CONTROLLABLE).spot" ><strong>CONTROLLABLE.spot</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(CONTROLLABLE).timer" ><strong>CONTROLLABLE.timer</strong></a>
</div> </div>
</div> </div>
@@ -22353,28 +22265,6 @@ Coordinates are dependent on the position of the maps origin.</p>
<p>The DCS controllable class.</p> <p>The DCS controllable class.</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#boolean
<a id="#(CONTROLLABLE).IRMarkerGroup" ><strong>CONTROLLABLE.IRMarkerGroup</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#boolean
<a id="#(CONTROLLABLE).IRMarkerUnit" ><strong>CONTROLLABLE.IRMarkerUnit</strong></a>
</div> </div>
</div> </div>
@@ -22397,28 +22287,6 @@ Coordinates are dependent on the position of the maps origin.</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(CONTROLLABLE).spot" ><strong>CONTROLLABLE.spot</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(CONTROLLABLE).timer" ><strong>CONTROLLABLE.timer</strong></a>
</div> </div>
</div> </div>
@@ -23040,28 +22908,6 @@ If the Identifiable is alive, true is returned. </p>
<p>The DCS controllable class.</p> <p>The DCS controllable class.</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#boolean
<a id="#(CONTROLLABLE).IRMarkerGroup" ><strong>CONTROLLABLE.IRMarkerGroup</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#boolean
<a id="#(CONTROLLABLE).IRMarkerUnit" ><strong>CONTROLLABLE.IRMarkerUnit</strong></a>
</div> </div>
</div> </div>
@@ -23084,28 +22930,6 @@ If the Identifiable is alive, true is returned. </p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(CONTROLLABLE).spot" ><strong>CONTROLLABLE.spot</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(CONTROLLABLE).timer" ><strong>CONTROLLABLE.timer</strong></a>
</div> </div>
</div> </div>
@@ -23238,28 +23062,6 @@ If the Identifiable is alive, true is returned. </p>
<p>The DCS controllable class.</p> <p>The DCS controllable class.</p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#boolean
<a id="#(CONTROLLABLE).IRMarkerGroup" ><strong>CONTROLLABLE.IRMarkerGroup</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
#boolean
<a id="#(CONTROLLABLE).IRMarkerUnit" ><strong>CONTROLLABLE.IRMarkerUnit</strong></a>
</div> </div>
</div> </div>
@@ -23282,28 +23084,6 @@ If the Identifiable is alive, true is returned. </p>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(CONTROLLABLE).spot" ><strong>CONTROLLABLE.spot</strong></a>
</div>
</div>
<div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<a id="#(CONTROLLABLE).timer" ><strong>CONTROLLABLE.timer</strong></a>
</div> </div>
</div> </div>
+66 -66
View File
@@ -2949,6 +2949,28 @@ 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>
@@ -3026,28 +3048,6 @@ 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>
@@ -5098,6 +5098,28 @@ 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>
@@ -5175,28 +5197,6 @@ 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>
@@ -6741,6 +6741,28 @@ 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>
@@ -6818,28 +6840,6 @@ 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>