items: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (format)
No edit summary
 
(48 intermediate revisions by 6 users not shown)
Line 1: Line 1:
{{Command|= Comments
{{RV|type=command
____________________________________________________________________________________________


| arma2 |= Game name
|game1= arma2
|version1= 1.00


|1.00|= Game version
|game2= arma2oa
____________________________________________________________________________________________
|version2= 1.50


| Returns an array of names of all special items of a vehicle or a soldier. |= Description
|game3= tkoh
____________________________________________________________________________________________
|version3= 1.00


| [[items]] unit |= Syntax
|game4= arma3
|version4= 0.50


|p1= unit: [[Object]]  |= PARAMETER1
|arg= global


| [[Array]] |= RETURNVALUE
|gr1= Unit Inventory


|descr= Returns an array of names of all unit's stored items, including [[weapons]] but excluding [[magazines]] (see [[itemsWithMagazines]]) and [[assignedItems]].


|x1= <code>_itemsplayer <nowiki>=</nowiki> [[items]] [[player]]; </code>|= EXAMPLE1
|s1= [[items]] unit


|x2= <code>[[player]] [[sideChat]] [[format]] ["%1", [[items]] [[player]] ];</code>|= EXAMPLE2
|p1= unit: [[Object]]


____________________________________________________________________________________________
|r1= [[Array]]


| [[assignedItems]], [[primaryWeaponItems]], [[secondaryWeaponItems]] |= SEEALSO
|x1= <sqf>_itemsPlayer = items player;</sqf>


| |= MPBEHAVIOUR
|x2= <sqf>player sideChat format ["%1", items player];</sqf>
____________________________________________________________________________________________
 
|seealso= [[itemsWithMagazines]] [[assignedItems]] [[primaryWeaponItems]] [[secondaryWeaponItems]] [[backpacks]]
}}
}}


<h3 style='display:none'>Notes</h3>
{{Note
<dl class='command_description'>
|user= comp_uter15776
<!-- Note Section BEGIN -->
|timestamp= 20220119160104
 
|text= When using '''items''' on a player; any equipped primary/secondary weapon/launchers, as well as certain throwables i.e. chemlights, smokes, grenades etc. are ''not'' returned.
<dd class="notedate">Posted on June 18, 2013 - 14:20
For weapons and launchers that aren't stored inside a uniform, backpack or vest use '''weaponsItems'''. For throwables use '''magazines'''.
<dt class="note">'''[[User:Druid|Druid]]'''<dd class="note">Arma 3, version 0.70 - magazines, explosives, grenades and all items currently linked on the unit are not returned now.<br/>
}}
 
<!-- Note Section END -->
</dl>
 
<h3 style='display:none'>Bottom Section</h3>
[[Category:ArmA 2: New Scripting Commands List|{{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|{{uc:{{PAGENAME}}}}]]

Latest revision as of 00:43, 1 February 2023

Hover & click on the images for description

Description

Description:
Returns an array of names of all unit's stored items, including weapons but excluding magazines (see itemsWithMagazines) and assignedItems.
Groups:
Unit Inventory

Syntax

Syntax:
items unit
Parameters:
unit: Object
Return Value:
Array

Examples

Example 1:
_itemsPlayer = items player;
Example 2:
player sideChat format ["%1", items player];

Additional Information

See also:
itemsWithMagazines assignedItems primaryWeaponItems secondaryWeaponItems 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
comp_uter15776 - c
Posted on Jan 19, 2022 - 16:01 (UTC)
When using items on a player; any equipped primary/secondary weapon/launchers, as well as certain throwables i.e. chemlights, smokes, grenades etc. are not returned. For weapons and launchers that aren't stored inside a uniform, backpack or vest use weaponsItems. For throwables use magazines.