disableUAVConnectability: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "<br/>" to "<br>")
Line 12: Line 12:
____________________________________________________________________________________________
____________________________________________________________________________________________


| object '''disableUAVConnectability''' [uav, checkAllItems] |SYNTAX=
| object [[disableUAVConnectability]] [uav, checkAllItems] |SYNTAX=


|p1= object: [[Object]] |PARAMETER1=
|p1= object: [[Object]] |PARAMETER1=


|p2= [uav, checkAllItems]: [[Array]] |PARAMETER2=
|p2= uav: [[Object]] or [[Array]] |PARAMETER2=


|p3= uav: [[Object]] or [[Array]] |PARAMETER3=
|p3= checkAllItems: [[Boolean]] - [[true]] to disable all terminals in unit's inventory, [[false]] to only disable the currently assigned terminal. |PARAMETER3=
 
|p4= checkAllItems: [[Boolean]] - True for disabling of all terminals in unit's inventory, false for disabling of terminal assigned to proper slot only. |PARAMETER4=


| [[Nothing]] |RETURNVALUE=
| [[Nothing]] |RETURNVALUE=
____________________________________________________________________________________________
____________________________________________________________________________________________
   
   
|x1= <code>unit [[disableUAVConnectability]] [uav,true];</code> |EXAMPLE1=
|x1= <code>myUnit [[disableUAVConnectability]] [myUav, [[true]]];</code> |EXAMPLE1=
____________________________________________________________________________________________
____________________________________________________________________________________________


| [[isUAVConnectable]], [[enableUAVConnectability]] |SEEALSO=
| [[isUAVConnectable]], [[enableUAVConnectability]] |SEEALSO=
}}
}}


Line 36: Line 33:
<!-- Note Section BEGIN -->
<!-- Note Section BEGIN -->


<!-- Note Section END -->
</dl>
<h3 style="display:none">Bottom Section</h3>
[[Category:Arma_3:_New_Scripting_Commands_List|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]
<!-- CONTINUE Notes -->
<dl class="command_description">
<dd class="notedate">Posted on September 15, 2018 - 20:13 (UTC)</dd>
<dd class="notedate">Posted on September 15, 2018 - 20:13 (UTC)</dd>
<dt class="note">[[User:PingWing|PingWing]]</dt>
<dt class="note">[[User:PingWing|PingWing]]</dt>
Line 54: Line 39:
When a unit gets a new UAV terminal, the unit will be able to connect to the UAV again, unless this command is executed again.
When a unit gets a new UAV terminal, the unit will be able to connect to the UAV again, unless this command is executed again.
</dd>
</dd>
<!-- Note Section END -->
</dl>
</dl>
<!-- DISCONTINUE Notes -->
 
<h3 style="display:none">Bottom Section</h3>
 
 
[[Category:Command Group: Remote Control]]

Revision as of 12:22, 6 August 2020

Hover & click on the images for description

Description

Description:
Disables unit's AV terminal(s) connecting to UAV.
Groups:
Uncategorised

Syntax

Syntax:
object disableUAVConnectability [uav, checkAllItems]
Parameters:
object: Object
uav: Object or Array
checkAllItems: Boolean - true to disable all terminals in unit's inventory, false to only disable the currently assigned terminal.
Return Value:
Nothing

Examples

Example 1:
myUnit disableUAVConnectability [myUav, true];

Additional Information

See also:
isUAVConnectableenableUAVConnectability

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

Notes

Posted on September 15, 2018 - 20:13 (UTC)
PingWing
This command has effect on a UAV terminal, not on whether a unit is able to connect to a UAV or not.
When a unit gets a new UAV terminal, the unit will be able to connect to the UAV again, unless this command is executed again.

Bottom Section