BIS fnc cargoTurretIndex: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - " {{Function|Comments=" to "{{Function|Comments=")
(Page filling)
Line 7: Line 7:
____________________________________________________________________________________________
____________________________________________________________________________________________


| ''N/A''<br>{{placeholder}} |DESCRIPTION=
| Return cargo index of a person turret and the other way around. |DESCRIPTION=
____________________________________________________________________________________________
____________________________________________________________________________________________


| <!-- [] call [[BIS_fnc_cargoTurretIndex]]; --> |SYNTAX=
| [vehicle, personOrTurretPath] call [[BIS_fnc_cargoTurretIndex]] |SYNTAX=
|p1= |PARAMETER1=


| |RETURNVALUE=
|p1= vehicle: [[Object]] - the vehicle to check |PARAMETER1=
 
|p2= personOrTurretPath: [[Object#Person|Person]] or [[Array]] of [[Number]]s - unit to find or turret path |PARAMETER2=
 
|  [[Array]] (turret path) or [[Number]] (cargo index) |RETURNVALUE=
____________________________________________________________________________________________
____________________________________________________________________________________________


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


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


Line 32: Line 36:
<h3 style="display:none">Bottom Section</h3>
<h3 style="display:none">Bottom Section</h3>
[[Category:Function Group: Objects|{{uc:cargoTurretIndex}}]]
[[Category:Function Group: Objects|{{uc:cargoTurretIndex}}]]
[[Category:Functions|{{uc:cargoTurretIndex}}]]
[[Category:{{Name|arma3}}: Functions|{{uc:cargoTurretIndex}}]]

Revision as of 19:32, 26 June 2020

Hover & click on the images for description

Description

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

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

Notes

Bottom Section