assignedItems: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - ">Posted on June ([0-9]{2})[ a-zA-Z]*, ([0-9]{4})" to ">Posted on $2-06-$1") |
(Correct return type) |
||
Line 12: | Line 12: | ||
|p1= unit: [[Object]] | |p1= unit: [[Object]] | ||
|r1= [[Array]] | |r1= [[Array]] of [[String]]s | ||
|s2= [[assignedItems]] [unit, alItems, includeBinocs] | |s2= [[assignedItems]] [unit, alItems, includeBinocs] | ||
Line 21: | Line 21: | ||
|p23= includeBinocs: [[Boolean]] - [[true]] to include binoculars (which is a weapon), [[false]] to exclude it | |p23= includeBinocs: [[Boolean]] - [[true]] to include binoculars (which is a weapon), [[false]] to exclude it | ||
|r2= [[Array]] | |r2= [[Array]] of [[String]]s | ||
|x1= <sqf>hint str assignedItems player;</sqf> | |x1= <sqf>hint str assignedItems player;</sqf> |
Revision as of 05:27, 2 August 2023
Description
- Description:
- Get array with assigned items. The resulting Array order is not guaranteed. To check availability of a particular slot item use getSlotItemName. To return stored items see items and itemsWithMagazines.
- Groups:
- Unit Inventory
Syntax
- Syntax:
- assignedItems unit
- Parameters:
- unit: Object
- Return Value:
- Array of Strings
Alternative Syntax
- Syntax:
- assignedItems [unit, alItems, includeBinocs]
- Parameters:
- unit: Object - soldier
- allItems: Boolean - true to include all slot items, false exclude goggles and headgear
- includeBinocs: Boolean - true to include binoculars (which is a weapon), false to exclude it
- Return Value:
- Array of Strings
Examples
- Example 1:
Additional Information
- See also:
- getSlotItemName assignItem unassignItem linkItem unlinkItem addItem removeItem removeAllAssignedItems items itemsWithMagazines backpacks
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
- Posted on 2013-06-18 - 14:20
- Druid
- Arma 3, version 0.70 - headgear and goggles are not present in returned array now.
- Posted on 2013-08-22 - 17:50
- Killzone_Kid
- For head gear use headgear, addHeadgear and removeHeadgear. For goggles use goggles, addGoggles and removeGoggles