currentPilot: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - " <!-- (DIS)?CONTINUE Notes -->" to "") |
Lou Montana (talk | contribs) m (Text replacement - " \|(x[0-9]|p[0-9]{1,2}|descr|game[0-9]|version[0-9]|s[0-9]|exec|r[0-9]|arg|eff|branch|serverExec|gr[0-9]|mp|pr|seealso) +=" to " |$1=") |
||
Line 10: | Line 10: | ||
| [[currentPilot]] vehicle | | [[currentPilot]] vehicle | ||
|p1 = vehicle: [[Object]] | |p1= vehicle: [[Object]] | ||
| [[Object]] - piloting unit or [[objNull]] | | [[Object]] - piloting unit or [[objNull]] | ||
|x1 = <code>_pilot = [[currentPilot]] [[vehicle]] [[player]];</code> | |x1= <code>_pilot = [[currentPilot]] [[vehicle]] [[player]];</code> | ||
|seealso= [[driver]], [[gunner]], [[commander]], [[effectiveCommander]], [[turretUnit]], [[UAVControl]], [[enableCopilot]] | |seealso= [[driver]], [[gunner]], [[commander]], [[effectiveCommander]], [[turretUnit]], [[UAVControl]], [[enableCopilot]] |
Revision as of 23:28, 10 June 2021
Description
- Description:
- Description needed
- Groups:
- Object Manipulation
Syntax
- Syntax:
- Syntax needed
- Parameters:
- vehicle: Object
- Return Value:
- Return value needed
Examples
- Example 1:
_pilot = currentPilot vehicle player;
Additional Information
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
- Posted on August 20, 2019 - 23:15 (UTC)
- killzone_kid
- 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);