magazinesAmmoFull: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "<code>([^<]*)\[\[([a-zA-Z][a-zA-Z0-9_]+)\]\]([^<]*)<\/code>" to "<code>$1$2$3</code>")
m (Some wiki formatting)
 
(4 intermediate revisions by the same user not shown)
Line 8: Line 8:
|gr2= Vehicle Inventory
|gr2= Vehicle Inventory


|descr= Returns array of arrays of all unit's or vehicle's magazines with extended information about them. The magazines returned are for primary gunner. If you need magazines for all turrets, see [[magazinesAllTurrets]].
|descr= Returns array of arrays of all unit's or vehicle's magazines with extended information about them.
{{Feature | important | This command does not return empty magazines from containers, only from the weapon. Use [[magazinesAmmoCargo]] instead.}}
The magazines returned are for primary gunner. If you need magazines for all turrets, see [[magazinesAllTurrets]].
{{Feature|important|This command does not return empty magazines from containers, only from the weapon. Use [[magazinesAmmoCargo]] instead.}}


|s1= [[magazinesAmmoFull]] entity
|s1= [[magazinesAmmoFull]] entity
Line 28: Line 29:
** 65536 - vehicle mag
** 65536 - vehicle mag
* [[String]]: magazine location: "Vest", "Uniform", "Backpack", "" or [[currentMuzzle]] if the magazine is loaded
* [[String]]: magazine location: "Vest", "Uniform", "Backpack", "" or [[currentMuzzle]] if the magazine is loaded
* [[Number]]: magazine id, starts with 10000000, use {{hl|[[toFixed]] 0;}} to better see this number (Since Arma 3 v2.07.148196)
* {{GVI|arma3|2.08|size= 0.75}} [[Number]]: magazine id, starts with 10000000; use <sqf inline>toFixed 0;</sqf> to see this number in a human readable format
* [[Number]]: magazine creator (Since Arma 3 v2.07.148196)
* {{GVI|arma3|2.08|size= 0.75}} [[Number]]: magazine creator


|s2= [[magazinesAmmoFull]] [vehicle, includeEmpty]
|s2= [[magazinesAmmoFull]] [vehicle, includeEmpty]
Line 41: Line 42:
|r2= same as [[#Syntax|Primary Syntax]]
|r2= same as [[#Syntax|Primary Syntax]]
   
   
|x1= <code>toFixed 0; magazinesAmmoFull player;
|x1= <sqf>
toFixed 0;
magazinesAmmoFull player;
/*
/*
[
[
Line 54: Line 57:
["16Rnd_9x21_Mag",16,true,2,"hgun_P07_F",10000011,0]
["16Rnd_9x21_Mag",16,true,2,"hgun_P07_F",10000011,0]
]
]
*/</code>
*/</sqf>


|x2= <code>toFixed 0; magazinesAmmoFull Mi_48;
|x2= <sqf>
toFixed 0;
magazinesAmmoFull Mi_48;
/*
/*
[
[
Line 67: Line 72:
["PylonRack_4Rnd_LG_scalpel",4,false,-1,"",10000053,0]
["PylonRack_4Rnd_LG_scalpel",4,false,-1,"",10000053,0]
]
]
*/</code>
*/</sqf>


|seealso= [[magazinesAmmo]] [[magazinesAmmoCargo]] [[magazinesDetail]] [[magazines]] [[magazinesTurret]]
|seealso= [[magazinesAmmo]] [[magazinesAmmoCargo]] [[magazinesDetail]] [[magazines]] [[magazinesTurret]]
}}
}}


<dl class="command_description">
{{Note
 
|user= Actium
<dt></dt>
|timestamp= 20141220144000
<dd class="notedate">Posted on December 20, 2014 - 14:40 (UTC)</dd>
|text= When used on vehicles this will only return all magazines associated with a single turretPath (which one depends on the actual armament of the vehicle, usually the first armed turretPath or alternatively turretPath [-1]).<br>
<dt class="note">[[User:Actium|Actium]]</dt>
<dd class="note">
When used on vehicles this will only return all magazines associated with a single turretPath (which one depends on the actual armament of the vehicle, usually the first armed turretPath or alternatively turretPath [-1]). <br>
If you want to get all turrets' magazines, use [[allTurrets]] and [[magazinesTurret]].
If you want to get all turrets' magazines, use [[allTurrets]] and [[magazinesTurret]].
--[[User:Actium|Actium]] ([[User talk:Actium|talk]]) 15:40, 20 December 2014 (CET)
}}
</dd>


<dt><dt>
{{Note
<dd class="notedate">Posted on February 10, 2015 - 04:40 (UTC)</dd>
|user= Pierre MGI
<dt class="note">[[User:Pierre MGI|Pierre MGI]]</dt>
|timestamp= 20150210044000
<dd class="note">
|text= As Actium said, this function seems to extract data from:
As Actium said, this function seems to extract data from:
<sqf>configFile >> "CfgVehicles" >> _the_vehicle_you_want >> "Turrets" >> "MainTurret">> "magazines"</sqf>
configfile >> "CfgVehicles" >> _the_vehicle_you_want >> "Turrets" >> "MainTurret">> "magazines".
Some vehicles return an empty field {} because magazines are in straight in:
Some vehicles return an empty field {} because magazines are in straight in:
configfile >> "CfgVehicles" >> _the_vehicle_you_want >> "magazines" (often dedicated to flares only).
<sqf>configFile >> "CfgVehicles" >> _the_vehicle_you_want >> "magazines" // often dedicated to flares only</sqf>


This is the case of WY-55 Hellcat. This function returns an empty array.
This is the case of WY-55 Hellcat. This function returns an empty array.
</dd>
}}
 
<dt><dt>
<dd class="notedate">Posted on April 5, 2019 - 22:28 (UTC)</dd>
<dt class="note">[[User:Yuval|Yuval]]</dt>
<dd class="note">
This command does not include magazines loaded into weapons stored inside player's backpack (or every other container).
</dd>
 
</dl>

Latest revision as of 17:53, 27 July 2023

Hover & click on the images for description

Description

Description:
Returns array of arrays of all unit's or vehicle's magazines with extended information about them. The magazines returned are for primary gunner. If you need magazines for all turrets, see magazinesAllTurrets.
This command does not return empty magazines from containers, only from the weapon. Use magazinesAmmoCargo instead.
Groups:
Unit InventoryVehicle Inventory

Syntax

Syntax:
magazinesAmmoFull entity
Parameters:
entity: Object - unit or vehicle
Return Value:
Array of Arrays in format:
  • String: magazine class name
  • Number: magazine ammo count
  • Boolean: is magazine loaded
  • Number: magazine type:
    • -1 = n/a (default if magazine is not loaded)
    • 0 - grenade
    • 1 - primary weapon mag
    • 2 - handgun mag
    • 4 - secondary weapon mag
    • 4096 - binocular weapon mag
    • 65536 - vehicle mag
  • String: magazine location: "Vest", "Uniform", "Backpack", "" or currentMuzzle if the magazine is loaded
  • Arma 3 logo black.png2.08 Number: magazine id, starts with 10000000; use toFixed 0; to see this number in a human readable format
  • Arma 3 logo black.png2.08 Number: magazine creator

Alternative Syntax

Syntax:
magazinesAmmoFull [vehicle, includeEmpty]
Parameters:
vehicle: Object - unit or vehicle
includeEmpty: Boolean - (Optional, default false) true to include empty magazines
Return Value:
same as Primary Syntax

Examples

Example 1:
toFixed 0; magazinesAmmoFull player; /* [ ["30Rnd_65x39_caseless_mag",30,false,-1,"Uniform",10000003,0], ["Chemlight_green",1,true,0,"ChemlightGreenMuzzle",10000016,0], ["30Rnd_65x39_caseless_mag",30,false,-1,"Vest",10000008,0], ["30Rnd_65x39_caseless_mag",30,false,-1,"Vest",10000009,0], ["30Rnd_65x39_caseless_mag",30,false,-1,"Vest",10000010,0], ["HandGrenade",1,true,0,"HandGrenadeMuzzle",10000018,0], ["HandGrenade",1,false,-1,"Vest",10000019,0], ["30Rnd_65x39_caseless_mag",30,true,1,"arifle_MX_ACO_pointer_F",10000001,0], ["16Rnd_9x21_Mag",16,true,2,"hgun_P07_F",10000011,0] ] */
Example 2:
toFixed 0; magazinesAmmoFull Mi_48; /* [ ["250Rnd_30mm_HE_shells_Tracer_Green",250,true,65536,"HE",10000043,0], ["250Rnd_30mm_APDS_shells_Tracer_Green",250,true,65536,"AP",10000044,0], ["Laserbatteries",1,true,65536,"Laserdesignator_mounted",10000045,0], ["PylonRack_4Rnd_LG_scalpel",4,false,-1,"",10000049,0], ["PylonRack_19Rnd_Rocket_Skyfire",19,false,-1,"",10000051,0], ["PylonRack_19Rnd_Rocket_Skyfire",19,false,-1,"",10000052,0], ["PylonRack_4Rnd_LG_scalpel",4,false,-1,"",10000053,0] ] */

Additional Information

See also:
magazinesAmmo magazinesAmmoCargo magazinesDetail magazines magazinesTurret

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
Actium - c
Posted on Dec 20, 2014 - 14:40 (UTC)
When used on vehicles this will only return all magazines associated with a single turretPath (which one depends on the actual armament of the vehicle, usually the first armed turretPath or alternatively turretPath [-1]).
If you want to get all turrets' magazines, use allTurrets and magazinesTurret.
Pierre MGI - c
Posted on Feb 10, 2015 - 04:40 (UTC)
As Actium said, this function seems to extract data from:
configFile >> "CfgVehicles" >> _the_vehicle_you_want >> "Turrets" >> "MainTurret">> "magazines"
Some vehicles return an empty field {} because magazines are in straight in:
configFile >> "CfgVehicles" >> _the_vehicle_you_want >> "magazines" // often dedicated to flares only
This is the case of WY-55 Hellcat. This function returns an empty array.