currentPilot: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "<dl class="command_description"> <dt></dt>" to "<dl class="command_description"> <dt></dt>")
m (Some wiki formatting)
 
(11 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{RV|type=command
{{RV|type=command


| arma3
|game1= arma3
|version1= 1.96


|1.96
|gr1= Object Manipulation


|gr1= Object Manipulation
|descr= Returns the person piloting the vehicle. If co-pilot is piloting, co-pilot is returned. If you need current pilot of a UAV or UGV, see [[UAVControl]] command.


| Returns the person piloting the vehicle. If co-pilot is piloting, co-pilot is returned. If you need current pilot of a UAV or UGV, see [[UAVControl]] command.
|s1= [[currentPilot]] vehicle


| [[currentPilot]] vehicle
|p1= vehicle: [[Object]]
|p1= vehicle: [[Object]]
|r1= [[Object]] - piloting unit or [[objNull]]
|r1= [[Object]] - piloting unit or [[objNull]]


|x1= <code>_pilot = [[currentPilot]] [[vehicle]] [[player]];</code>
|x1= <sqf>
if (currentPilot _vehicle != driver _vehicle) then
{
hint "The pilot is not piloting!";
};
</sqf>


|seealso= [[driver]], [[gunner]], [[commander]], [[effectiveCommander]], [[turretUnit]], [[UAVControl]], [[enableCopilot]]
|seealso= [[driver]] [[gunner]] [[commander]] [[effectiveCommander]] [[turretUnit]] [[UAVControl]] [[enableCopilot]]
}}
}}
<dl class="command_description">


<dt></dt>
{{Note
<dd class="notedate">Posted on August 20, 2019 - 23:15 (UTC)</dd>
|user= Killzone_Kid
<dt class="note">[[User:killzone_kid|killzone_kid]]</dt>
|timestamp= 20190820231500
<dd class="note"> To return co-pilot units:
|text= To return co-pilot units:
<code>[[private]] _fnc_getCoPilots =  
<sqf>
private _fnc_getCoPilots =  
{
{
[[private]] _copilotTurrets = [[allTurrets]] _this [[select]] { [[getNumber]] ([_this, _x] [[call]] [[BIS_fnc_turretConfig]] >> "isCopilot") > 0 };
private _copilotTurrets = allTurrets _this select { getNumber ([_this, _x] call BIS_fnc_turretConfig >> "isCopilot") > 0 };
[[private]] _copilots = _copilotTurrets [[apply]] { _this [[turretUnit]] _x };
private _copilots = _copilotTurrets apply { _this turretUnit _x };
_copilots;
_copilots;
};
};


[[hint]] [[str]] (heli [[call]] _fnc_getCoPilots);</code>
hint str (heli call _fnc_getCoPilots);
</dd>
</sqf>
</dl>
}}

Latest revision as of 16:07, 3 May 2022

Hover & click on the images for description

Description

Description:
Returns the person piloting the vehicle. If co-pilot is piloting, co-pilot is returned. If you need current pilot of a UAV or UGV, see UAVControl command.
Groups:
Object Manipulation

Syntax

Syntax:
currentPilot vehicle
Parameters:
vehicle: Object
Return Value:
Object - piloting unit or objNull

Examples

Example 1:
if (currentPilot _vehicle != driver _vehicle) then { hint "The pilot is not piloting!"; };

Additional Information

See also:
driver gunner commander effectiveCommander turretUnit UAVControl enableCopilot

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
Killzone_Kid - c
Posted on Aug 20, 2019 - 23:15 (UTC)
To return co-pilot units:
private _fnc_getCoPilots = { private _copilotTurrets = allTurrets _this select { getNumber ([_this, _x] call BIS_fnc_turretConfig >> "isCopilot") > 0 }; private _copilots = _copilotTurrets apply { _this turretUnit _x }; _copilots; }; hint str (heli call _fnc_getCoPilots);