magazinesTurret: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
m (Add since template usage)
Line 12: Line 12:


| Returns all magazines of given turret. Use turret path [-1] for driver's turret. Alternatively, use [[magazinesAllTurrets]].
| Returns all magazines of given turret. Use turret path [-1] for driver's turret. Alternatively, use [[magazinesAllTurrets]].
{{Informative | When main syntax is used, command excludes empty magazines for driver turret [-1] but returns empty magazines for all other turrets. Since Arma 3 v2.01.146669 alternative syntax is available that makes empty magazine handling optional and consistent.}}|DESCRIPTION=
{{Informative | When main syntax is used, command excludes empty magazines for driver turret [-1] but returns empty magazines for all the other turrets.}} |DESCRIPTION=
____________________________________________________________________________________________
____________________________________________________________________________________________


Line 18: Line 18:


|p1= vehicle: [[Object]] |PARAMETER1=
|p1= vehicle: [[Object]] |PARAMETER1=
|p2= turretPath: [[Array]] |PARAMETER2=
|p2= turretPath: [[Array]] |PARAMETER2=


| [[Array]] of [[String|Strings]] |RETURNVALUE=
| [[Array]] of [[String]]s |RETURNVALUE=


| s2=vehicle '''magazinesTurret''' [turretPath, includeEmpty]       (Since Arma 3 v2.01.146669)|SYNTAX2=
| s2=vehicle '''magazinesTurret''' [turretPath, includeEmpty] {{since|arma3|2.01.146669|y}} |SYNTAX2=


|p21= vehicle: [[Object]] |PARAMETER21=
|p21= vehicle: [[Object]] |PARAMETER21=
|p22= [turretPath, includeEmpty]: [[Array]] |PARAMETER22=
|p23= turretPath: [[Array]] - turret path |PARAMETER23=
|p24= includeEmpty (Optional): [[Bool]], [[true]] - include empty magazines, [[false]] - exclude empty magazines, not defined - old behavior (see description)|PARAMETER24=


| r2=[[Array]] of [[String|Strings]] |RETURNVALUE2=
|p22= turretPath: [[Array]] - turret path |PARAMETER22=
 
|p23= includeEmpty: [[Boolean]] - (Optional, default [[false]]) - [[true]] = include empty magazines, [[false]] = exclude empty magazines - same behaviour as the primary syntax |PARAMETER23=
 
|r2= [[Array]] of [[String]]s |RETURNVALUE2=
____________________________________________________________________________________________
____________________________________________________________________________________________
   
   
|x1= <code>_mags = [[vehicle]] [[player]] [[magazinesTurret]] [0, 0];</code> |EXAMPLE1=
|x1= <code>_mags = [[vehicle]] [[player]] [[magazinesTurret]] [0, 0];</code> |EXAMPLE1=
|x2= <code>_mags = _tank [[magazinesTurret]] [0];</code> |EXAMPLE2=
|x2= <code>_mags = _tank [[magazinesTurret]] [0];</code> |EXAMPLE2=
____________________________________________________________________________________________
____________________________________________________________________________________________


| [[magazinesAllTurrets]], [[addMagazineTurret]], [[removeMagazinesTurret]], [[removeMagazineTurret]], [[weaponsTurret]], [[loadMagazine]], [[magazines]], [[magazinesDetail]],  [[magazinesAmmo]], [[magazinesAmmoFull]], [[addWeaponTurret]], [[removeWeaponTurret]], [[turretLocal]] |SEEALSO=
| [[magazinesAllTurrets]], [[addMagazineTurret]], [[removeMagazinesTurret]], [[removeMagazineTurret]], [[weaponsTurret]], [[loadMagazine]], [[magazines]], [[magazinesDetail]],  [[magazinesAmmo]], [[magazinesAmmoFull]], [[addWeaponTurret]], [[removeWeaponTurret]], [[turretLocal]] |SEEALSO=
}}
}}


Line 47: Line 49:


<h3 style="display:none">Bottom Section</h3>
<h3 style="display:none">Bottom Section</h3>
[[Category:Arma 2: Operation Arrowhead: New Scripting Commands List|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 2|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 2|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Take On Helicopters|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Take On Helicopters|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]

Revision as of 00:48, 24 December 2020

Hover & click on the images for description

Description

Description:
Returns all magazines of given turret. Use turret path [-1] for driver's turret. Alternatively, use magazinesAllTurrets.
When main syntax is used, command excludes empty magazines for driver turret [-1] but returns empty magazines for all the other turrets.
Groups:
Turrets

Syntax

Syntax:
vehicle magazinesTurret turretPath
Parameters:
vehicle: Object
turretPath: Array
Return Value:
Array of Strings

Alternative Syntax

Syntax:
vehicle magazinesTurret [turretPath, includeEmpty] Template:since
Parameters:
vehicle: Object
turretPath: Array - turret path
includeEmpty: Boolean - (Optional, default false) - true = include empty magazines, false = exclude empty magazines - same behaviour as the primary syntax
Return Value:
Array of Strings

Examples

Example 1:
_mags = vehicle player magazinesTurret [0, 0];
Example 2:
_mags = _tank magazinesTurret [0];

Additional Information

See also:
magazinesAllTurretsaddMagazineTurretremoveMagazinesTurretremoveMagazineTurretweaponsTurretloadMagazinemagazinesmagazinesDetail, magazinesAmmomagazinesAmmoFulladdWeaponTurretremoveWeaponTurretturretLocal

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

Bottom Section