currentMagazineDetail: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
No edit summary
m (Text replacement - "\|x([0-9])= *<code>([^<]*)<\/code>" to "|x$1= <sqf>$2</sqf>")
 
(28 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{Command|= Comments
{{RV|type=command
____________________________________________________________________________________________


| arma3 |= Game name
|game1= arma3
|version1= 0.50


|0.50|= Game version
|gr1= Unit Inventory
____________________________________________________________________________________________


| Returns description of vehicle's currently loaded magazine, its ammo count (current/default) and its id.  |= Description
|gr2= Vehicle Inventory
____________________________________________________________________________________________


| '''currentMagazineDetail''' vehicle |= Syntax
|descr= Returns description of vehicle's currently loaded magazine, its ammo count (current/default) and its id.


|p1= vehicle: [[Object]] - unit or vehicle  |= PARAMETER1
|s1= [[currentMagazineDetail]] object


| [[String]] |= RETURNVALUE
|p1= object: [[Object]] - unit or vehicle


|r1= [[String]]


|x1= <code>_currentMagazineDetail = [[currentMagazineDetail]] [[player]]; //"6.5mm 30Rnd STANAG Mag(30/30)[id:0]"</code>|= EXAMPLE1
|x1= <sqf>_currentMagazineDetail = currentMagazineDetail player; // "6.5mm 30Rnd STANAG Mag(30/30)[id:0]"</sqf>
|x2= <code>_currentMagazineDetail = [[currentMagazineDetail]] Mi_48; //"30mm HE Shells(250/250)[id:21]"</code>|= EXAMPLE2
____________________________________________________________________________________________


| [[magazinesDetail]], [[currentMagazine]] |= SEEALSO
|x2= <sqf>_currentMagazineDetail = currentMagazineDetail Mi_48; // "30mm HE Shells(250/250)[id:21]</sqf>


| |= MPBEHAVIOUR
|x3= <sqf>_cmd = currentMagazineDetail player; // "9mm 16Rnd Mag(13/16)[id/cr:10000011/0]"
____________________________________________________________________________________________
_cmd splitString "([ ]/:)"; // ["9mm","16Rnd","Mag","13","16","id","cr","10000011","0"]</sqf>
 
|seealso= [[magazinesDetail]] [[currentMagazine]]
}}
}}
<h3 style='display:none'>Notes</h3>
<dl class='command_description'>
<!-- Note Section BEGIN -->
<!-- Note Section END -->
</dl>
<h3 style='display:none'>Bottom Section</h3>
[[Category:Arma_3:_New_Scripting_Commands_List|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]

Latest revision as of 11:22, 13 May 2022

Hover & click on the images for description

Description

Description:
Returns description of vehicle's currently loaded magazine, its ammo count (current/default) and its id.
Groups:
Unit InventoryVehicle Inventory

Syntax

Syntax:
currentMagazineDetail object
Parameters:
object: Object - unit or vehicle
Return Value:
String

Examples

Example 1:
_currentMagazineDetail = currentMagazineDetail player; // "6.5mm 30Rnd STANAG Mag(30/30)[id:0]"
Example 2:
_currentMagazineDetail = currentMagazineDetail Mi_48; // "30mm HE Shells(250/250)[id:21]
Example 3:
_cmd = currentMagazineDetail player; // "9mm 16Rnd Mag(13/16)[id/cr:10000011/0]" _cmd splitString "([ ]/:)"; // ["9mm","16Rnd","Mag","13","16","id","cr","10000011","0"]

Additional Information

See also:
magazinesDetail currentMagazine

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