unitBackpack

From Bohemia Interactive Community
Revision as of 11:14, 4 November 2011 by Master85 (talk | contribs) (version)
Hover & click on the images for description

Description

Description:
Returns unit's backpack
Groups:
Uncategorised

Syntax

Syntax:
unitBackpack unit
Parameters:
unit: Object
Return Value:
Object

Examples

Example 1:
myBackpack = unitBackpack player
Example 2:
clearMagazineCargo unitBackpack player
Example 3:
player action ["gear", unitBackpack player]

Additional Information

See also:
addMagazineCargoaddWeaponCargoclearMagazineCargoclearWeaponCargo

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord.
Only post proven facts here! Add Note

Notes

If you want to check if the unit have the specific backpack, use this code:
_bag = unitBackpack soldier;
_class = typeOf _bag;

if (_class == "US_UAV_Pack_EP1") then { - exec this code - };

- if the unit called "soldier" has the backpack with class name "US_UAV_Pack_EP1", code in the brackets will be executed

Bottom Section