setMagazineTurretAmmo: Difference between revisions
Jump to navigation
Jump to search
Killzone Kid (talk | contribs) No edit summary |
Lou Montana (talk | contribs) m (Fix example) |
||
Line 7: | Line 7: | ||
|descr= Sets ammo count to given amount for given turret magazine. | |descr= Sets ammo count to given amount for given turret magazine. | ||
{{Feature|informative|Since | {{Feature|informative| | ||
{{Feature|important|The turret | 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. | ||
In most cases this will be the loaded magazine anyway. | |||
}} | |||
{{Feature|important|The turret itself '''must''' be local (see [[turretLocal]], [[turretOwner]]).}} | |||
|s1= vehicle [[setMagazineTurretAmmo]] [magazineClass, ammoCount, turretPath] | |s1= vehicle [[setMagazineTurretAmmo]] [magazineClass, ammoCount, turretPath] | ||
Line 18: | Line 21: | ||
|p3= ammCount: [[Number]] | |p3= ammCount: [[Number]] | ||
|p4= turretPath: [[Array]] format [[Turret Path]] | |p4= turretPath: [[Array]] format [[Turret Path]] - [-1] for driver turret is supported | ||
|r1= [[Nothing]] | |r1= [[Nothing]] | ||
|x1= <sqf>myMRAP setMagazineTurretAmmo ["200Rnd_127x99_mag_Tracer_Red", 30, [0 | |x1= <sqf>myMRAP setMagazineTurretAmmo ["200Rnd_127x99_mag_Tracer_Red", 30, [0]];</sqf> | ||
|x2= Set ammo count on commander turret from server: <sqf>_tank = tank; | |||
|x2= Set ammo count on commander turret from server: | |||
<sqf> | |||
_tank = tank; | |||
_turret = [0,0]; | _turret = [0,0]; | ||
_magazine = "200Rnd_127x99_mag_Tracer_Red"; | _magazine = "200Rnd_127x99_mag_Tracer_Red"; | ||
_ammo = 10; | _ammo = 10; | ||
[_tank, [_magazine, _ammo, _turret]] remoteExec ["setMagazineTurretAmmo", _tank turretOwner _turret];</sqf> | [_tank, [_magazine, _ammo, _turret]] remoteExec ["setMagazineTurretAmmo", _tank turretOwner _turret]; | ||
</sqf> | |||
|seealso= [[magazineTurretAmmo]] [[setAmmoOnPylon]] [[turretLocal]] [[turretOwner]] | |seealso= [[magazineTurretAmmo]] [[setAmmoOnPylon]] [[turretLocal]] [[turretOwner]] | ||
}} | }} |
Revision as of 11:44, 15 March 2024
Description
- Description:
- Sets ammo count to given amount for given turret magazine.
- Groups:
- Turrets
Syntax
- Syntax:
- vehicle setMagazineTurretAmmo [magazineClass, ammoCount, turretPath]
- Parameters:
- vehicle: Object
- magazineClass: String
- ammCount: 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
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