currentPilot

From Bohemia Interactive Community
Revision as of 16:07, 3 May 2022 by Lou Montana (talk | contribs) (Some wiki formatting)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
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);