setMagazineTurretAmmo: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Fix example)
m (Some wiki formatting)
 
(One intermediate revision by one other user not shown)
Line 8: Line 8:
|descr= Sets ammo count to given amount for given turret magazine.
|descr= Sets ammo count to given amount for given turret magazine.
{{Feature|informative|
{{Feature|informative|
Since {{arma3}} v2.18 the magazine is first checked if it is loaded into the turret weapon, if not, the command falls back to old behaviour of selecting the first magazine from the list of available magazines.
{{GVI|arma3|2.18|size= 0.75}} The magazine is first checked if it is loaded into the turret weapon, if not, the command falls back to old behaviour of selecting the first magazine from the list of available magazines.
In most cases this will be the loaded magazine anyway.
In most cases it will be the loaded magazine.
}}
}}
{{Feature|important|The turret itself '''must''' be local (see [[turretLocal]], [[turretOwner]]).}}
{{Feature|important|The turret itself '''must''' be local (see [[turretLocal]], [[turretOwner]]).}}
Line 19: Line 19:
|p2= magazineClass: [[String]]
|p2= magazineClass: [[String]]


|p3= ammCount: [[Number]]
|p3= ammoCount: [[Number]]


|p4= turretPath: [[Array]] format [[Turret Path]] - [-1] for driver turret is supported
|p4= turretPath: [[Array]] format [[Turret Path]] - [-1] for driver turret is supported

Latest revision as of 17:27, 2 July 2024

Hover & click on the images for description

Description

Description:
Sets ammo count to given amount for given turret magazine.
Arma 3 logo black.png2.18 The magazine is first checked if it is loaded into the turret weapon, if not, the command falls back to old behaviour of selecting the first magazine from the list of available magazines. In most cases it will be the loaded magazine.
The turret itself must be local (see turretLocal, turretOwner).
Groups:
Turrets

Syntax

Syntax:
vehicle setMagazineTurretAmmo [magazineClass, ammoCount, turretPath]
Parameters:
vehicle: Object
magazineClass: String
ammoCount: Number
turretPath: Array format Turret Path - [-1] for driver turret is supported
Return Value:
Nothing

Examples

Example 1:
myMRAP setMagazineTurretAmmo ["200Rnd_127x99_mag_Tracer_Red", 30, [0]];
Example 2:
Set ammo count on commander turret from server:
_tank = tank; _turret = [0,0]; _magazine = "200Rnd_127x99_mag_Tracer_Red"; _ammo = 10; [_tank, [_magazine, _ammo, _turret]] remoteExec ["setMagazineTurretAmmo", _tank turretOwner _turret];

Additional Information

See also:
magazineTurretAmmo setAmmoOnPylon turretLocal turretOwner

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