Difference between revisions of "magazinesDetail"
Jump to navigation
Jump to search
(Created page with "{{Command|= Comments ____________________________________________________________________________________________ | arma3 |= Game name |0.50|= Game version ____________________...") |
Lou Montana (talk | contribs) m (Text replacement - "{{since" to "{{Since") |
||
(16 intermediate revisions by 7 users not shown) | |||
Line 1: | Line 1: | ||
− | {{Command|= | + | {{Command|Comments= |
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
− | | arma3 | | + | | arma3 |Game name= |
− | |0.50| | + | |0.50|Game version= |
+ | |||
+ | |gr1= Unit Inventory |GROUP1= | ||
+ | |||
+ | |gr2= Vehicle Inventory |GROUP2= | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
− | | Returns an array with | + | | Returns an array of strings with description of all vehicle's magazines, their ammo count (current/default) and their ids. |
+ | |||
+ | When applied to a unit (soldier), the command behaves differently and will omit magazines already loaded into unit's weapons. Use [[currentMagazineDetail]] to get this information for a currently loaded magazine. |DESCRIPTION= | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
− | | '''magazinesDetail''' vehicle |= | + | | '''magazinesDetail''' vehicle |SYNTAX= |
+ | |||
+ | |p1= vehicle: [[Object]] - unit or vehicle |PARAMETER1= | ||
+ | |||
+ | | [[Array]] |RETURNVALUE= | ||
− | | | + | |s2= [[magazinesDetail]] [vehicle, includeEmpty] {{Since|arma3|1.99.146475|y}} |SYNTAX2= |
+ | ____________________________________________________________________________________________ | ||
− | | [[Array]] |= | + | |p21= [vehicle, includeEmpty]: [[Array]] |PARAMETER21= |
+ | |p22= vehicle: [[Object]] - unit or vehicle |PARAMETER22= | ||
− | | | + | |p23= includeEmpty: [[Boolean]] - (Optional, default [[false]]) [[true]] to include empty magazines |PARAMETER23= |
− | + | |r2= [[Array]] |RETURNVALUE2= | |
− | | | + | |x1= <code>_magazinesDetail = [[magazinesDetail]] [[player]]; |
+ | {{codecomment|/* | ||
+ | [ | ||
+ | "6.5mm 30Rnd STANAG Mag(30/30)[id:3]", | ||
+ | "6.5mm 30Rnd STANAG Mag(30/30)[id:9]", | ||
+ | "9mm 16Rnd Mag(16/16)[id:12]", | ||
+ | "Smoke Grenade (Green)(1/1)[id:14]", | ||
+ | "Chemlight (Green)(1/1)[id:16]", | ||
+ | "RGO Frag Grenade(1/1)[id:18]" | ||
+ | ] | ||
+ | <nowiki/>*/}}</code> |EXAMPLE1= | ||
− | | | + | |x2= <code>_magazinesDetail = [[magazinesDetail]] Mi_48; |
+ | {{codecomment/* | ||
+ | [ | ||
+ | "30mm APDS shells(250/250)[id:20]", | ||
+ | "30mm HE Shells(250/250)[id:21]", | ||
+ | "Scalpel E2(8/8)[id:22]", | ||
+ | "Skyfire(38/38)[id:23]" | ||
+ | ] | ||
+ | <nowiki/>*/}}</code> |EXAMPLE2= | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
+ | |||
+ | | [[currentMagazineDetail]], [[magazines]], [[magazinesTurret]], [[magazinesAmmo]], [[magazinesAmmoFull]], [[magazinesDetailUniform]], [[magazinesDetailVest]], [[magazinesDetailBackpack]] |SEEALSO= | ||
}} | }} | ||
Line 35: | Line 67: | ||
<h3 style='display:none'>Bottom Section</h3> | <h3 style='display:none'>Bottom Section</h3> | ||
− | |||
− |
Latest revision as of 19:38, 11 January 2021
Hover & click on the images for descriptions
Description
- Description:
- Returns an array of strings with description of all vehicle's magazines, their ammo count (current/default) and their ids. When applied to a unit (soldier), the command behaves differently and will omit magazines already loaded into unit's weapons. Use currentMagazineDetail to get this information for a currently loaded magazine.
Syntax
Alternative Syntax
- Syntax:
- magazinesDetail [vehicle, includeEmpty] Since Arma 3 v1.99.146475
- Parameters:
- [vehicle, includeEmpty]: Array
- vehicle: Object - unit or vehicle
- includeEmpty: Boolean - (Optional, default false) true to include empty magazines
- Return Value:
- Array
Examples
- Example 1:
-
_magazinesDetail = magazinesDetail player; /* [ "6.5mm 30Rnd STANAG Mag(30/30)[id:3]", "6.5mm 30Rnd STANAG Mag(30/30)[id:9]", "9mm 16Rnd Mag(16/16)[id:12]", "Smoke Grenade (Green)(1/1)[id:14]", "Chemlight (Green)(1/1)[id:16]", "RGO Frag Grenade(1/1)[id:18]" ] */
- Example 2:
-
_magazinesDetail = magazinesDetail Mi_48; {{codecomment/* [ "30mm APDS shells(250/250)[id:20]", "30mm HE Shells(250/250)[id:21]", "Scalpel E2(8/8)[id:22]", "Skyfire(38/38)[id:23]" ] */}}
Additional Information
- See also:
- currentMagazineDetailmagazinesmagazinesTurretmagazinesAmmomagazinesAmmoFullmagazinesDetailUniformmagazinesDetailVestmagazinesDetailBackpack
- Groups:
- Unit InventoryVehicle Inventory