unitBackpack: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (version)
Line 46: Line 46:
[[Category:ArmA 2 OA: New Scripting Commands List|{{uc:{{PAGENAME}}}}]]
[[Category:ArmA 2 OA: New Scripting Commands List|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting_Commands_Take_On_Helicopters|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting_Commands_Take_On_Helicopters|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]

Revision as of 13:09, 25 March 2013

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