unitBackpack: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (version)
Line 4: Line 4:
| arma2oa |= Game name
| arma2oa |= Game name


|1.52|= Game version
|1.51|= Game version
____________________________________________________________________________________________
____________________________________________________________________________________________



Revision as of 12:14, 4 November 2011

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 or on the Forums.
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