weaponsItems: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
No edit summary
m (See also)
(19 intermediate revisions by 6 users not shown)
Line 7: Line 7:
____________________________________________________________________________________________
____________________________________________________________________________________________


| Returns an array with subarrays contains class names and also names of connected items of all the vehicle's weapons.  |= Description
| Returns an array with subarrays contains class names and also names of connected items of all the vehicle's weapons.<br/>
Since Arma 3 v1.21.124406 it is possible to query weapon holders and ammo crates with this command. If weapon has no magazine, an empty array [] is returned instead of magazine info.  |= Description
____________________________________________________________________________________________
____________________________________________________________________________________________


Line 17: Line 18:




|x1= [[Image:Weaponsitems.jpg|200px|right|border]]<code>[[hint]] [[str]] [[weaponsItems]] [[player]];
|x1= <code>[[hint]] [[str]] [[weaponsItems]] [[player]];</code>
/*
[[Image:Weaponsitems.jpg|200px|right|border]]
[
<code>[
[ //=PRIMARY=
[ //=PRIMARY=
"arifle_MX_ACO_pointer_F", //weapon
"arifle_MX_ACO_pointer_F", //weapon
Line 28: Line 29:
"30Rnd_65x39_caseless_mag", //mag type
"30Rnd_65x39_caseless_mag", //mag type
30 //mag ammo count
30 //mag ammo count
]
],
],[ //=SECONDARY=
"bipod_01_F_blk" //bipod
],
[ //=SECONDARY=
"launch_NLAW_F",
"launch_NLAW_F",
"",
"",
Line 37: Line 40:
"NLAW_F",
"NLAW_F",
1
1
]
],
],[ //=HANDGUN=
""
],
[ //=HANDGUN=
"hgun_P07_F",
"hgun_P07_F",
"muzzle_snds_L",
"muzzle_snds_L",
Line 46: Line 51:
"16Rnd_9x21_Mag",
"16Rnd_9x21_Mag",
11
11
]
],
""
]
]
]
]
<nowiki>*/</nowiki></code>|= EXAMPLE1  
</code>
|= EXAMPLE1  


|x2= <code>[[hint]] [[str]] [[weaponsItems]] [[vehicle]] [[player]];
|x2= <code>[[hint]] [[str]] [[weaponsItems]] [[vehicle]] [[player]];</code>


/*
<code>[
[
[
[
"gatling_30mm",
"gatling_30mm",
Line 63: Line 69:
"250Rnd_30mm_HE_shells",
"250Rnd_30mm_HE_shells",
250
250
]
],
],[
""
],
[
"missiles_SCALPEL",
"missiles_SCALPEL",
"",
"",
Line 72: Line 80:
"8Rnd_LG_scalpel",
"8Rnd_LG_scalpel",
8
8
]
],
],[
""
],
[
"rockets_Skyfire",
"rockets_Skyfire",
"",
"",
Line 81: Line 91:
"38Rnd_80mm_rockets",
"38Rnd_80mm_rockets",
38
38
]
],
""
]
]
]
]</code>
<nowiki>*/</nowiki></code>
 
|= EXAMPLE2  
|= EXAMPLE2  
____________________________________________________________________________________________
____________________________________________________________________________________________


| [[primaryWeaponItems]], [[secondaryWeaponItems]], [[handgunWeaponItems]], [[addPrimaryWeaponItem]], [[addSecondaryWeaponItem]], [[addHandgunItem]], [[primaryWeapon]], [[secondaryWeapon]], [[handgunWeapon]] |= SEEALSO  
| [[weaponsItemsCargo]], [[primaryWeaponItems]], [[secondaryWeaponItems]], [[handgunItems]], [[addPrimaryWeaponItem]], [[addSecondaryWeaponItem]], [[addHandgunItem]], [[primaryWeapon]], [[secondaryWeapon]], [[handgunWeapon]], [[weaponAccessories]], [[BIS_fnc_weaponComponents]] |= SEEALSO  


|  |= MPBEHAVIOUR  
|  |= MPBEHAVIOUR  
Line 98: Line 107:
<dl class='command_description'>
<dl class='command_description'>
<!-- Note Section BEGIN -->
<!-- Note Section BEGIN -->
<dd class="notedate">Posted on August 17, 2013
<dt class="note">[[User:AgentRev01|AgentRev]]<dd class="note">
Be careful with this function. The weapons are listed in the order they were taken by the unit, with the most recent at the bottom of the array. Therefore, do not assume the first one is always the primary weapon, and so on.
Also, here's how the primary weapon looks if it has a grenade launcher with a loaded grenade:<br/>
<br/>
<code>[
"arifle_MX_GL_F",
"muzzle_snds_H",
"acc_pointer_IR",
"optic_Aco",
[
"30Rnd_65x39_caseless_mag",
30
],
[
"1Rnd_HE_Grenade_shell",
1
],
""
]</code>


<!-- Note Section END -->
<!-- Note Section END -->
Line 104: Line 136:
<h3 style='display:none'>Bottom Section</h3>
<h3 style='display:none'>Bottom Section</h3>
[[Category:Arma_3:_New_Scripting_Commands_List|{{uc:{{PAGENAME}}}}]]
[[Category:Arma_3:_New_Scripting_Commands_List|{{uc:{{PAGENAME}}}}]]
[[Category:Command_Group:_Weapons|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]
<!-- CONTINUE Notes -->
<dl class="command_description">
<dd class="notedate">Posted on October 25, 2014 - 01:45 (UTC)</dd>
<dt class="note">[[User:DreadedEntity|DreadedEntity]]</dt>
<dd class="note">
The output of this command is an array of arrays and is as follows: (If the unit only has 1 weapon, output is an array within an array.)
<code>[
[
((_arr select 0) select 0) //STRING - The weapon's classname
((_arr select 0) select 1) //STRING - Classname of the unit's equipped 'Muzzle/Barrel Accessory'
((_arr select 0) select 2) //STRING - Classname of the unit's equipped 'Side Accessory'
((_arr select 0) select 3) //STRING - Classname of the unit's equipped 'Top/Optic Accessory'
((_arr select 0) select 4) //ARRAY - Magazine information
[
(((_arr select 0) select 4) select 0) //STRING - Classname of the loaded magazine
(((_arr select 0) select 4) select 1) //SCALAR(Number) - Amount of bullets in the mag
]
] //If unit has more than one weapon, the output will follow the same pattern as above except with a new element
]</code>
</dd>
</dl>
<!-- DISCONTINUE Notes -->

Revision as of 00:08, 3 July 2016

Hover & click on the images for description

Description

Description:
Returns an array with subarrays contains class names and also names of connected items of all the vehicle's weapons.
Since Arma 3 v1.21.124406 it is possible to query weapon holders and ammo crates with this command. If weapon has no magazine, an empty array [] is returned instead of magazine info.
Groups:
Uncategorised

Syntax

Syntax:
weaponsItems vehicle
Parameters:
vehicle: Object - unit or vehicle
Return Value:
Array

Examples

Example 1:
hint str weaponsItems player;
Weaponsitems.jpg

[ [ //=PRIMARY= "arifle_MX_ACO_pointer_F", //weapon "muzzle_snds_H", //suppressor "acc_pointer_IR", //laser "optic_Aco", //optics [ //loaded magazine "30Rnd_65x39_caseless_mag", //mag type 30 //mag ammo count ], "bipod_01_F_blk" //bipod ], [ //=SECONDARY= "launch_NLAW_F", "", "", "", [ "NLAW_F", 1 ], "" ], [ //=HANDGUN= "hgun_P07_F", "muzzle_snds_L", "", "", [ "16Rnd_9x21_Mag", 11 ], "" ] ]

Example 2:
hint str weaponsItems vehicle player; [ [ "gatling_30mm", "", "", "", [ "250Rnd_30mm_HE_shells", 250 ], "" ], [ "missiles_SCALPEL", "", "", "", [ "8Rnd_LG_scalpel", 8 ], "" ], [ "rockets_Skyfire", "", "", "", [ "38Rnd_80mm_rockets", 38 ], "" ] ]

Additional Information

See also:
weaponsItemsCargoprimaryWeaponItemssecondaryWeaponItemshandgunItemsaddPrimaryWeaponItemaddSecondaryWeaponItemaddHandgunItemprimaryWeaponsecondaryWeaponhandgunWeaponweaponAccessoriesBIS_fnc_weaponComponents

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

Notes

Posted on August 17, 2013
AgentRev
Be careful with this function. The weapons are listed in the order they were taken by the unit, with the most recent at the bottom of the array. Therefore, do not assume the first one is always the primary weapon, and so on. Also, here's how the primary weapon looks if it has a grenade launcher with a loaded grenade:

[ "arifle_MX_GL_F", "muzzle_snds_H", "acc_pointer_IR", "optic_Aco", [ "30Rnd_65x39_caseless_mag", 30 ], [ "1Rnd_HE_Grenade_shell", 1 ], "" ]

Bottom Section

Posted on October 25, 2014 - 01:45 (UTC)
DreadedEntity
The output of this command is an array of arrays and is as follows: (If the unit only has 1 weapon, output is an array within an array.) [ [ ((_arr select 0) select 0) //STRING - The weapon's classname ((_arr select 0) select 1) //STRING - Classname of the unit's equipped 'Muzzle/Barrel Accessory' ((_arr select 0) select 2) //STRING - Classname of the unit's equipped 'Side Accessory' ((_arr select 0) select 3) //STRING - Classname of the unit's equipped 'Top/Optic Accessory' ((_arr select 0) select 4) //ARRAY - Magazine information [ (((_arr select 0) select 4) select 0) //STRING - Classname of the loaded magazine (((_arr select 0) select 4) select 1) //SCALAR(Number) - Amount of bullets in the mag ] ] //If unit has more than one weapon, the output will follow the same pattern as above except with a new element ]