assignedItems: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
Lou Montana (talk | contribs) m (Text replacement - "since= Arma3" to "since= arma3") |
||
(42 intermediate revisions by 5 users not shown) | |||
Line 1: | Line 1: | ||
{{ | {{RV|type=command | ||
| arma3 | | |game1= arma3 | ||
|version1= 0.50 | |||
| | |gr1= Unit Inventory | ||
| | |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 | ||
| | |p1= unit: [[Object]] | ||
| | |r1= [[Array]] of [[String]]s | ||
| [[ | |s2= [[assignedItems]] [unit, allItems, includeBinocs] | ||
|s2since= arma3 2.14 | |||
|p21= unit: [[Object]] - soldier | |||
|p22= allItems: [[Boolean]] - [[true]] to include all slot items, [[false]] exclude goggles and headgear | |||
|p23= includeBinocs: [[Boolean]] - [[true]] to include binoculars (which is a weapon), [[false]] to exclude it | |||
| | |r2= [[Array]] of [[String]]s | ||
|x1= <sqf>hint str assignedItems player;</sqf> | |||
| [[assignItem]] | |seealso= [[getSlotItemName]] [[assignItem]] [[unassignItem]] [[linkItem]] [[unlinkItem]] [[addItem]] [[removeItem]] [[removeAllAssignedItems]] [[items]] [[itemsWithMagazines]] [[backpacks]] | ||
}} | }} | ||
<dl class="command_description"> | |||
<dl class= | |||
<dd class="notedate">Posted on | <dt><dt> | ||
<dt class="note">[[User:Druid|Druid]]<dd class="note">Arma 3, version 0.70 - headgear and goggles are not present in returned array now.<br> | <dd class="notedate">Posted on 2013-06-18 - 14:20</dd> | ||
<dt class="note">[[User:Druid|Druid]]</dt> | |||
<dd class="note">Arma 3, version 0.70 - headgear and goggles are not present in returned array now.<br> | |||
<dt><dt> | |||
<dd class="notedate">Posted on 2013-08-22 - 17:50</dd> | |||
<dt class="note">[[User:Killzone_Kid|Killzone_Kid]]</dt> | |||
<dd class="note">For head gear use [[headgear]], [[addHeadgear]] and [[removeHeadgear]]. For goggles use [[goggles]], [[addGoggles]] and [[removeGoggles]]<br> | |||
</dl> | </dl> | ||
Latest revision as of 16:26, 9 February 2024
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, allItems, 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