remoteControlled: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(Created page with "{{RV|type=command |game1= arma3 |version1= 2.14 |gr1= Remote Control |descr= Returns the person controlling the given unit. |s1= remoteControlled unit |p1= unit: Ob...")
 
m (Fix phrasing)
 
(10 intermediate revisions by 2 users not shown)
Line 4: Line 4:
|version1= 2.14
|version1= 2.14


|arg= local
|gr1= Remote Control
|gr1= Remote Control


|descr= Returns the person controlling the given unit.
|descr= Returns the player controlling the given unit if the argument is the unit, or the unit controlled by the player if the argument is the player.
{{Feature|important|See also [[Remote Control Tutorial]].}}


|s1= [[remoteControlled]] unit
|s1= [[remoteControlled]] unitOrPlayer


|p1= unit: [[Object]] - unit under remote control
|p1= unitOrPlayer: [[Object]] - unit under remote control or the player controlling a unit


|r1= [[Object]] - the person controlling the unit
|r1= [[Object]] - the person controlling the unit or the unit controlled by the player; [[objNull]] if not applicable


|x1= <sqf>remoteControlled bob</sqf>
|x1= <sqf>private _controllingPlayer = remoteControlled _dronePilot;</sqf>


|seealso= [[remoteControl]]
|x2= <sqf>private _dronePilot = remoteControlled _controllingPlayer;</sqf>
 
|seealso= [[remoteControl]] [[isRemoteControlling]]
}}
}}

Latest revision as of 15:24, 16 November 2023

Hover & click on the images for description

Description

Description:
Returns the player controlling the given unit if the argument is the unit, or the unit controlled by the player if the argument is the player.
Groups:
Remote Control

Syntax

Syntax:
remoteControlled unitOrPlayer
Parameters:
unitOrPlayer: Object - unit under remote control or the player controlling a unit
Return Value:
Object - the person controlling the unit or the unit controlled by the player; objNull if not applicable

Examples

Example 1:
private _controllingPlayer = remoteControlled _dronePilot;
Example 2:
private _dronePilot = remoteControlled _controllingPlayer;

Additional Information

See also:
remoteControl isRemoteControlling

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