Auto commit by GitHub Actions Workflow

This commit is contained in:
MooseBotter
2025-02-02 11:56:02 +00:00
parent 0ca9ff6c78
commit f4b2b43018
31 changed files with 1306 additions and 831 deletions

View File

@@ -2379,6 +2379,12 @@ If the DCS Unit object does not exist or is nil, the CLIENT methods will return
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(CLIENT).InAir">CLIENT:InAir(NoHeloCheck)</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>Returns true if the UNIT is in the air.</p>
</td>
</tr>
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(CLIENT).IsAAA">CLIENT:IsAAA()</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>[GROUND] Determine if a UNIT is a AAA unit, i.e.</p>
</td>
</tr>
<tr class="w3-border">
@@ -2451,6 +2457,12 @@ If the DCS Unit object does not exist or is nil, the CLIENT methods will return
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(CLIENT).IsRefuelable">CLIENT:IsRefuelable()</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>Check if the unit is refuelable.</p>
</td>
</tr>
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(CLIENT).IsSAM">CLIENT:IsSAM()</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>[GROUND] Determine if a UNIT is a SAM unit, i.e.</p>
</td>
</tr>
<tr class="w3-border">
@@ -2505,6 +2517,24 @@ If the DCS Unit object does not exist or is nil, the CLIENT methods will return
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(CLIENT).ResetEvents">CLIENT:ResetEvents()</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>Reset the subscriptions.</p>
</td>
</tr>
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(CLIENT).SetAIOff">CLIENT:SetAIOff()</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>Turns the AI Off for the UNIT.</p>
</td>
</tr>
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(CLIENT).SetAIOn">CLIENT:SetAIOn()</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>Turns the AI On for the UNIT.</p>
</td>
</tr>
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(CLIENT).SetAIOnOff">CLIENT:SetAIOnOff(AIOnOff)</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>Turns the AI On or Off for the UNIT.</p>
</td>
</tr>
<tr class="w3-border">
@@ -8454,6 +8484,39 @@ The spawn sequence number and unit number are contained within the name after th
</div>
</div>
</div>
</div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<div class="w3-theme-l2">
<h2><a id="#(CLIENT).IsAAA" ><strong>CLIENT:IsAAA()</strong></a></h2>
</div>
<p>[GROUND] Determine if a UNIT is a AAA unit, i.e.</p>
<p>has no radar or optical tracker but the AAA = true or the "Mobile AAA" = true attribute.</p>
<div id= "#Functions##IsAAA" 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><a href="Wrapper.Unit.html##(UNIT)">Wrapper.Unit#UNIT</a></p>
</div>
<h2><strong>Return value:</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>IsAAA True if AAA, else false</p>
</div>
</div>
</div>
</div>
</div>
@@ -8900,6 +8963,39 @@ If the unit object exists, the value of the DCS API function <a href="https://wi
</div>
</div>
</div>
</div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<div class="w3-theme-l2">
<h2><a id="#(CLIENT).IsSAM" ><strong>CLIENT:IsSAM()</strong></a></h2>
</div>
<p>[GROUND] Determine if a UNIT is a SAM unit, i.e.</p>
<p>has radar or optical tracker and is no mobile AAA.</p>
<div id= "#Functions##IsSAM" 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><a href="Wrapper.Unit.html##(UNIT)">Wrapper.Unit#UNIT</a></p>
</div>
<h2><strong>Return value:</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>IsSAM True if SAM, else false</p>
</div>
</div>
</div>
</div>
</div>
@@ -9260,6 +9356,110 @@ If the unit object exists, the value of the DCS API function <a href="https://wi
</div>
</div>
</div>
</div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<div class="w3-theme-l2">
<h2><a id="#(CLIENT).SetAIOff" ><strong>CLIENT:SetAIOff()</strong></a></h2>
</div>
<p>Turns the AI Off for the UNIT.</p>
<div id= "#Functions##SetAIOff" 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><a href="Wrapper.Unit.html##(UNIT)">Wrapper.Unit#UNIT</a></p>
</div>
<h2><strong>Return value:</strong></h2>
<div class="w3-row w3-border-bottom w3-margin-left">
<div class="w3-half">
<p><a href="##(UNIT)">#UNIT</a>:</p>
</div>
<div class="w3-half">
<p>The UNIT.</p>
</div>
</div>
</div>
</div>
</div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<div class="w3-theme-l2">
<h2><a id="#(CLIENT).SetAIOn" ><strong>CLIENT:SetAIOn()</strong></a></h2>
</div>
<p>Turns the AI On for the UNIT.</p>
<div id= "#Functions##SetAIOn" 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><a href="Wrapper.Unit.html##(UNIT)">Wrapper.Unit#UNIT</a></p>
</div>
<h2><strong>Return value:</strong></h2>
<div class="w3-row w3-border-bottom w3-margin-left">
<div class="w3-half">
<p><a href="##(UNIT)">#UNIT</a>:</p>
</div>
<div class="w3-half">
<p>The UNIT.</p>
</div>
</div>
</div>
</div>
</div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<div class="w3-theme-l2">
<h2><a id="#(CLIENT).SetAIOnOff" ><strong>CLIENT:SetAIOnOff(AIOnOff)</strong></a></h2>
</div>
<p>Turns the AI On or Off for the UNIT.</p>
<div id= "#Functions##SetAIOnOff" 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><a href="Wrapper.Unit.html##(UNIT)">Wrapper.Unit#UNIT</a></p>
</div>
<h2><strong>Parameter:</strong></h2>
<div class="w3-row w3-margin-left w3-border-bottom w3-border-l2">
<div class="w3-half">
<p>
#boolean
<strong><strong>AIOnOff</strong></strong>
</p>
</div>
<div class="w3-half">
<p>The value true turns the AI On, the value false turns the AI Off.</p>
</div>
</div>
<h2><strong>Return value:</strong></h2>
<div class="w3-row w3-border-bottom w3-margin-left">
<div class="w3-half">
<p><a href="##(UNIT)">#UNIT</a>:</p>
</div>
<div class="w3-half">
<p>The UNIT.</p>
</div>
</div>
</div>
</div>
</div>