assignedItems: Difference between revisions
Jump to navigation
Jump to search
Killzone Kid (talk | contribs) No edit summary |
Killzone Kid (talk | contribs) No edit summary |
||
Line 6: | Line 6: | ||
|gr1= Unit Inventory | |gr1= Unit Inventory | ||
|descr= Get array with | |descr= 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]]. | ||
|s1= [[assignedItems]] unit | |s1= [[assignedItems]] unit | ||
Line 13: | Line 13: | ||
|r1= [[Array]] | |r1= [[Array]] | ||
|s2= [[assignedItems]] [unit, alItems, includeBinocs] | |||
|s2since= Arma3 2.14 | |||
|p21= unit: [[Object]] - soldier | |||
|p22= allItems: [[Boolean]] - [[true]] to include all slot items, [[false]] exclude goggles and headgear | |||
|p23= unit: [[Boolean]] - [[true]] to include binoculars (which is a weapon), [[false]] to exclude it | |||
|r2= [[Array]] | |||
|x1= <sqf>hint str assignedItems player;</sqf> | |x1= <sqf>hint str assignedItems player;</sqf> |
Revision as of 17:53, 9 April 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
Alternative Syntax
- Syntax:
- assignedItems [unit, alItems, includeBinocs]
- Parameters:
- unit: Object - soldier
- allItems: Boolean - true to include all slot items, false exclude goggles and headgear
- unit: Boolean - true to include binoculars (which is a weapon), false to exclude it
- Return Value:
- Array
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 June 18, 2013 - 14:20
- Druid
- Arma 3, version 0.70 - headgear and goggles are not present in returned array now.
- Posted on August 22, 2013 - 17:50
- Killzone_Kid
- For head gear use headgear, addHeadgear and removeHeadgear. For goggles use goggles, addGoggles and removeGoggles