setAmmo: 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 (Replaced <code> with <sqf>)
(21 intermediate revisions by one other user not shown)
Line 25: Line 25:


|x1= Set player's handgun magazine ammo count to 10 rounds:
|x1= Set player's handgun magazine ammo count to 10 rounds:
<code>player [[setAmmo]] [<nowiki/>[[handgunWeapon]] [[player]], 10];</code>
<sqf>player setAmmo [handgunWeapon player, 10];</sqf>


|x2= Set player's current weapon magazine ammo count to 1 round:
|x2= Set player's current weapon magazine ammo count to 1 round:
<code>player [[setAmmo]] [<nowiki/>[[currentWeapon]] [[player]], 1];</code>
<sqf>player setAmmo [currentWeapon player, 1];</sqf>


|x3= If player is a gunner in a vehicle, set current weapon magazine ammo count to 5 rounds:
|x3= If player is a gunner in a vehicle, set current weapon magazine ammo count to 5 rounds:
<code>[[if]] ([[local]] [[vehicle]] [[player]]) [[then]] {
<sqf>if (local vehicle player) then {
[[vehicle]] [[player]] [[setAmmo]] [<nowiki/>[[currentWeapon]] [[vehicle]] [[player]], 5];
vehicle player setAmmo [currentWeapon vehicle player, 5];
} [[else]] {
} else {
[[hint]] "Vehicle must be local to this machine for 'setAmmo' to work";
hint "Vehicle must be local to this machine for 'setAmmo' to work";
};</code>
};</sqf>


|x4= If you try to set more ammo than the magazine can hold, it will be clipped at default magazine capacity:
|x4= If you try to set more ammo than the magazine can hold, it will be clipped at default magazine capacity:
<code>player [[setAmmo]] [<nowiki/>[[primaryWeapon]] [[player]], 1000000]; {{cc|full mag with default ammo count}}</code>
<sqf>player setAmmo [primaryWeapon player, 1000000]; // full mag with default ammo count</sqf>


|x5= Some weapons has more than one muzzles:
|x5= Some weapons has more than one muzzles:
<code>_marshall [[setAmmo]] ["autocannon_40mm_CTWS", 0];{{cc|won't work}}
<sqf>_marshall setAmmo ["autocannon_40mm_CTWS", 0];// won't work
_marshall [[setAmmo]] ["HE", 0];{{cc|works}}</code>
_marshall setAmmo ["HE", 0];// works</sqf>


|seealso= [[ammo]] [[setVehicleAmmo]] [[setFuel]] [[setHit]]
|seealso= [[ammo]] [[setVehicleAmmo]] [[setFuel]] [[setHit]]
}}
}}

Revision as of 16:44, 14 May 2022

Hover & click on the images for description

Description

Description:
Sets custom ammo count in the currently loaded magazine of the specified weapon or muzzle.
Groups:
Unit InventoryVehicle Inventory

Syntax

Syntax:
unit setAmmo [weaponOrMuzzle, count]
Parameters:
unit: Object - Gunner or vehicle.
weaponOrMuzzle: String - Weapon name. Muzzle name in case the weapon has more than one muzzle, e.g. weapon with grenade launcher. See CfgWeapons for muzzle names
count: Number
Return Value:
Nothing

Examples

Example 1:
Set player's handgun magazine ammo count to 10 rounds:
player setAmmo [handgunWeapon player, 10];
Example 2:
Set player's current weapon magazine ammo count to 1 round:
Example 3:
If player is a gunner in a vehicle, set current weapon magazine ammo count to 5 rounds:
if (local vehicle player) then { vehicle player setAmmo [currentWeapon vehicle player, 5]; } else { hint "Vehicle must be local to this machine for 'setAmmo' to work"; };
Example 4:
If you try to set more ammo than the magazine can hold, it will be clipped at default magazine capacity:
player setAmmo [primaryWeapon player, 1000000]; // full mag with default ammo count
Example 5:
Some weapons has more than one muzzles:
_marshall setAmmo ["autocannon_40mm_CTWS", 0];// won't work _marshall setAmmo ["HE", 0];// works

Additional Information

See also:
ammo setVehicleAmmo setFuel setHit

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