BIS fnc cargoTurretIndex: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - " <h3 style="display:none">Notes</h3> <dl class="command_description"> <!-- Note Section BEGIN --> <!-- Note Section END --> </dl>" to "")
m (Text replacement - " *\| *([Cc]omments|COMMENTS|[Gg]ame [Nn]ame|Game [Vv]ersion|Game Version \(number surrounded by NO SPACES\)|Multiplayer Arguments \("local" or "global"\)|Multiplayer Effects \("local" or "global"\)|Multiplayer Execution \("server" o...)
Line 1: Line 1:
{{Function|Comments=
{{Function


| arma3 |Game name=
| arma3


|1.00|Game version=
|1.00


|gr1 = Object Manipulation |GROUP1=
|gr1 = Object Manipulation


| Return cargo index of a person turret and the other way around. |DESCRIPTION=
| Return cargo index of a person turret and the other way around.


| [vehicle, personOrTurretPath] call [[BIS_fnc_cargoTurretIndex]] |SYNTAX=
| [vehicle, personOrTurretPath] call [[BIS_fnc_cargoTurretIndex]]


|p1= vehicle: [[Object]] - the vehicle to check |PARAMETER1=
|p1= vehicle: [[Object]] - the vehicle to check


|p2= personOrTurretPath: [[Object#Person|Person]] or [[Array]] of [[Number]]s - unit to find or turret path |PARAMETER2=
|p2= personOrTurretPath: [[Object#Person|Person]] or [[Array]] of [[Number]]s - unit to find or turret path


|  [[Array]] (turret path) or [[Number]] (cargo index) |RETURNVALUE=
|  [[Array]] (turret path) or [[Number]] (cargo index)


|x1= <code>[[private]] _vehicle = [[vehicle]] [[player]];
|x1= <code>[[private]] _vehicle = [[vehicle]] [[player]];
[[private]] _turretCargoIndex = [_vehicle, [0, 1]] [[call]] [[BIS_fnc_cargoTurretIndex]];
[[private]] _turretCargoIndex = [_vehicle, [0, 1]] [[call]] [[BIS_fnc_cargoTurretIndex]];
[[private]] _playerTurretPath = [_vehicle, [[player]]] [[call]] [[BIS_fnc_cargoTurretIndex]];</code> |EXAMPLE1=
[[private]] _playerTurretPath = [_vehicle, [[player]]] [[call]] [[BIS_fnc_cargoTurretIndex]];</code>


| [[turretUnit]] [[moveInTurret]] [[allTurrets]] |SEEALSO=
| [[turretUnit]] [[moveInTurret]] [[allTurrets]]
}}
}}




<h3 style="display:none">Bottom Section</h3>
<h3 style="display:none">Bottom Section</h3>

Revision as of 23:35, 17 January 2021

Hover & click on the images for description

Description

Description:
Return cargo index of a person turret and the other way around.
Execution:
call
Groups:
Object Manipulation

Syntax

Syntax:
[vehicle, personOrTurretPath] call BIS_fnc_cargoTurretIndex
Parameters:
vehicle: Object - the vehicle to check
personOrTurretPath: Person or Array of Numbers - unit to find or turret path
Return Value:
Array (turret path) or Number (cargo index)

Examples

Example 1:
private _vehicle = vehicle player; private _turretCargoIndex = [_vehicle, [0, 1]] call BIS_fnc_cargoTurretIndex; private _playerTurretPath = [_vehicle, player] call BIS_fnc_cargoTurretIndex;

Additional Information

See also:
turretUnit moveInTurret allTurrets

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


Bottom Section