setVehicleAmmoDef: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "<h3 style='display:none'>Notes</h3> <dl class='command_description'> <!-- Note Section BEGIN --> <!-- Note Section END --> </dl> <h3 style='display:none'>Bottom Section</h3>" to "")
m (Text replacement - " *\| *([Cc]omments|COMMENTS|Game|[Gg]ame [Nn]ame( +[0-9])?|Game [Vv]ersion( +[0-9])?|Game Version \(number surrounded by NO SPACES\)|Arguments in MP|MP[Aa]rg|Multiplayer Arguments( \("local" or "global"\))?|Effects|Execution|Effects...)
Line 1: Line 1:
{{Command|Comments=
{{Command


| arma3 |Game name=
| arma3


|0.50|Game version=
|0.50


|arg= local |Multiplayer Arguments=
|arg= local


|eff= global |Multiplayer Effects=
|eff= global


|gr1= Unit Inventory |GROUP1=
|gr1= Unit Inventory


|gr2= Vehicle Inventory |GROUP2=
|gr2= Vehicle Inventory


| Sets how much ammunition (compared to the configuration of magazines defined in the vehicle's class) the vehicle has. Note that the ammo will only be added to [[local]] turrets. To check the locality of turret use [[turretLocal]]. |DESCRIPTION=
| Sets how much ammunition (compared to the configuration of magazines defined in the vehicle's class) the vehicle has. Note that the ammo will only be added to [[local]] turrets. To check the locality of turret use [[turretLocal]].


| unit '''setVehicleAmmoDef''' value |SYNTAX=
| unit '''setVehicleAmmoDef''' value


|p1= unit: [[Object]] - Unit or vehicle. |PARAMETER1=
|p1= unit: [[Object]] - Unit or vehicle.


|p2= value: [[Number]] - From 0 (no ammo) to 1 (fully loaded). |PARAMETER2=
|p2= value: [[Number]] - From 0 (no ammo) to 1 (fully loaded).


| [[Nothing]] |RETURNVALUE=
| [[Nothing]]




|x1= <code>[[player]] [[setVehicleAmmoDef]] 0;</code>|EXAMPLE1=
|x1= <code>[[player]] [[setVehicleAmmoDef]] 0;</code>




| [[setVehicleAmmo]], [[ammo]], [[setAmmo]], [[setAmmoCargo]], [[turretLocal]] |SEEALSO=
| [[setVehicleAmmo]], [[ammo]], [[setAmmo]], [[setAmmoCargo]], [[turretLocal]]


| |MPBEHAVIOUR=
|
}}
}}



Revision as of 12:11, 18 January 2021

Hover & click on the images for description

Description

Description:
Sets how much ammunition (compared to the configuration of magazines defined in the vehicle's class) the vehicle has. Note that the ammo will only be added to local turrets. To check the locality of turret use turretLocal.
Groups:
Unit InventoryVehicle Inventory

Syntax

Syntax:
unit setVehicleAmmoDef value
Parameters:
unit: Object - Unit or vehicle.
value: Number - From 0 (no ammo) to 1 (fully loaded).
Return Value:
Nothing

Examples

Example 1:
player setVehicleAmmoDef 0;

Additional Information

See also:
setVehicleAmmoammosetAmmosetAmmoCargoturretLocal

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
Posted on December 20, 2014 - 21:49 (UTC)
Actium
For vehicles this command operates relative to its stock magazine loadout (i.e. its CfgVehicles magazines[] values). Thus setVehicleAmmoDef 1 will fully restore a vehicle to its default ammunition capacity, resetting any changes made by intentionally/implicitly adding/removing magazines. Use setVehicleAmmo to operate in relation to a vehicle's current magazine loadout. --Actium (talk) 22:49, 20 December 2014 (CET)