unitIsUAV: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Update)
No edit summary
 
(27 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{Command|=
{{RV|type=command
____________________________________________________________________________________________
 
|arma3 |= Game
|game1= arma3
|1.64|= Game Version
|version1= 1.64
|arg=  |= Multiplayer Arguments
 
|eff= |= Multiplayer Effects
|gr1= Remote Control
____________________________________________________________________________________________
 
| Returns true if the unit type is UAV - coresponding to transport param "isUAV" |= Description
|descr= Returns whether or not the given transport object is a drone (UAV, UGV), regardless of if it has a crew or if it is empty,
____________________________________________________________________________________________
corresponding to the <syntaxhighlight lang="cpp" inline>isUAV</syntaxhighlight> transport parameter.<br>
| [[unitIsUAV]] unit |= Syntax
{{GVI|arma3|2.14|size= 0.75}} The command can be used to check if the provided unit is a UAV unit.
|p1= unit: [[Object]] |= Parameter 1
 
|p2=  |= Parameter 2
|s1= [[unitIsUAV]] object
|p3= |= Parameter 3
 
|p3=  |= Parameter 4
|p1= object: [[Object]] - vehicle or {{GVI|arma3|2.14|size= 0.75}} unit
|p3=  |= Parameter 5
|p3=  |= Parameter 6
| [[Bool]] - [[true]] when UAV |= Return Value
|x1= _isUAV = [[unitIsUAV]] veh; |= Example 1
| [[allUnitsUAV]] |= See Also
}}


<dl class='command_description'>
|r1= [[Boolean]] - [[true]] when UAV
<!-- BEGIN Note Section -->
<!-- For example:
<dd class='notedate'>Posted on Month Day, Year - Time (UTC)</dd>
<dt class='note'>'''[[User:User Name|User Name]]'''</dt>
<dd class='note'>This is an example note. It is true and verifiable, and contains a little code snippet.
<code>[[if]] ([[_this]] == anExample) [[then]] { [[hint]] Leave it here for others to read; };</code></dd>
-->
<!-- END Note Section -->
</dl>


<h3 style='display:none'>Bottom Section</h3>
|x1= <sqf>
<!-- Appropriate categories go here -->
unitIsUAV _myUAV; // true (whether it has driver/gunner or not)
unitIsUAV driver _myUAV; // true (provided there is a driver)
unitIsUAV gunner _myUAV; // true (provided there is a gunner)
</sqf>


[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
|seealso= [[allUnitsUAV]]
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]
}}

Latest revision as of 09:34, 23 April 2023

Hover & click on the images for description

Description

Description:
Returns whether or not the given transport object is a drone (UAV, UGV), regardless of if it has a crew or if it is empty, corresponding to the isUAV transport parameter.
Arma 3 logo black.png2.14 The command can be used to check if the provided unit is a UAV unit.
Groups:
Remote Control

Syntax

Syntax:
unitIsUAV object
Parameters:
object: Object - vehicle or Arma 3 logo black.png2.14 unit
Return Value:
Boolean - true when UAV

Examples

Example 1:
unitIsUAV _myUAV; // true (whether it has driver/gunner or not) unitIsUAV driver _myUAV; // true (provided there is a driver) unitIsUAV gunner _myUAV; // true (provided there is a gunner)

Additional Information

See also:
allUnitsUAV

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note