backpacks: Difference between revisions

From Bohemia Interactive Community
No edit summary
mNo edit summary
 
(5 intermediate revisions by 2 users not shown)
Line 3: Line 3:
|game1= arma3
|game1= arma3
|version1= 2.14
|version1= 2.14
|branch= dev


|arg=  
|arg= global


|gr1= Unit Inventory
|gr1= Unit Inventory


|descr= Returns an array of all backpacks names unit has in inventory, excluding backpack unit wears.
|descr= Returns an array of all backpack names a unit has in its inventory, excluding the one it carries on the back.


|s1= [[backpacks]] unit
|s1= [[backpacks]] unit
Line 15: Line 14:
|p1= unit: [[Object]]
|p1= unit: [[Object]]


|r1= [[Array]]
|r1= [[Array]] of [[String]]s


|x1= <sqf>_itemsPlayer = backpacks player;</sqf>
|x1= <sqf>private _allCarriedBackpackTypes = backpacks player + [backpack player];</sqf>
 
|x2= <sqf>player sideChat format ["%1", backpacks player];</sqf>


|seealso= [[backpack]] [[itemsWithMagazines]] [[assignedItems]] [[items]] [[magazines]] [[everyBackpack]]  
|seealso= [[backpack]] [[itemsWithMagazines]] [[assignedItems]] [[items]] [[magazines]] [[everyBackpack]]  
}}
}}

Latest revision as of 11:53, 1 January 2026

Hover & click on the images for description

Description

Description:
Returns an array of all backpack names a unit has in its inventory, excluding the one it carries on the back.
Groups:
Unit Inventory

Syntax

Syntax:
backpacks unit
Parameters:
unit: Object
Return Value:
Array of Strings

Examples

Example 1:
private _allCarriedBackpackTypes = backpacks player + [backpack player];

Additional Information

See also:
backpack itemsWithMagazines assignedItems items magazines everyBackpack

Notes

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