setVehicleAmmo: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Reset ArmA version)
m (Text replacement - "|= Game name" to "|Game name=")
(31 intermediate revisions by 14 users not shown)
Line 1: Line 1:
{{Command|= Comments
{{Command|Comments=
____________________________________________________________________________________________
____________________________________________________________________________________________


| arma |= Game name
| arma |Game name=


|1.00|= Game version
|1.00|Game version=
|arg= local |Multiplayer Arguments=
 
|eff= global |Multiplayer Effects=
____________________________________________________________________________________________
____________________________________________________________________________________________


| Sets how much ammunition (compared to a full state defined by the vehicle type) the vehicle has.
| Sets how much ammunition (compared to a full state defined by the vehicle type) the vehicle has. Note that the ammo will be added only to [[local]] turrets. To check locality of turret use [[turretLocal]].


The value ranges from 0 to 1. |= Description
The value ranges from 0 to 1. |DESCRIPTION=
____________________________________________________________________________________________
____________________________________________________________________________________________


| object '''setVehicleAmmo''' value |= Syntax
| vehicleName '''setVehicleAmmo''' value |SYNTAX=


|p1= object: [[Object]] |= Parameter 1
|p1= vehicleName: [[Object]] |PARAMETER1=


|p2= value: [[Number]] |= Parameter 2
|p2= value: [[Number]] - 0: empty, 1: full|PARAMETER2=


| [[Nothing]] |= Return value
| [[Nothing]] |RETURNVALUE=
____________________________________________________________________________________________
____________________________________________________________________________________________
   
   
|x1= <pre>player setVehicleAmmo 0</pre> |= Example 1
|x1= <code>[[player]] [[setVehicleAmmo]] 0;</code> |EXAMPLE1=
|x2= <code>_vehicle [[setVehicleAmmo]] 1;</code> |EXAMPLE2=
____________________________________________________________________________________________
____________________________________________________________________________________________


| |= See also
| [[setVehicleAmmoDef]], [[ammo]], [[setAmmo]], [[setAmmoCargo]], [[turretLocal]]|SEEALSO=


}}
}}
Line 31: Line 35:
<dl class="command_description">
<dl class="command_description">
<!-- Note Section BEGIN -->
<!-- Note Section BEGIN -->
<dd class="notedate">
<dt class="note">'''[[User:Ceeeb|Ceeeb]]'''
<dd class="note">This command does not add magazines to vehicle weapons that normally start with more than one magazine. It can however, remove these magazines.
<dd class="notedate">
<dt class="note">'''[[User:Bon_Inf*|Bon_Inf*]]'''
<dd class="note">A2:OA v1.59 - Magazines of vehicle turrets are also refilled by this command.
<dd class="notedate">
<dt class="note">'''[[User:kju|kju]]'''
<dd class="note">
* If you 'unit/vehicle setVehicleAmmo 0;' an unit/vehicle first, you cannot refill it with 'unit/vehicle setVehicleAmmo 1;'.
* You need to execute where the unit is [[local]].
* You need to execute on the [[effectiveCommander]] of a vehicle.
<dd class="notedate">
<dt class="note">'''[[User:Galzohar|Galzohar]]'''
<dd class="note">
* In ArmA 3, using this command seems correctly rearm the vehicle and its turrets in all situations (tested with beta 0.72).
<dd class="notedate">
<dt class="note">'''[[User:Killzone_Kid|Killzone_Kid]]'''
<dd class="note">
* In ArmA 3, when using this on a player, this command can only reduce the number of magazine in relation to the current ammo quantity of the unit. For example if player has 8 magazines, [[player]] [[setVehicleAmmo]] 0.5; will leave unit with 4 mags. Executing [[player]] [[setVehicleAmmo]] 0.5; again will leave unit with 2 mags. [[player]] [[setVehicleAmmo]] 0.5; again -> 1 mag. [[player]] [[setVehicleAmmo]] 0; will remove all mags. If player had 10 mags with 30 bullets in each, [[player]] [[setVehicleAmmo]] 0.01; will leave player with loaded mag with 3 bullets in it (300 x 0.01 = 3)


<!-- Note Section END -->
<!-- Note Section END -->
Line 39: Line 69:
[[Category:Scripting Commands OFP Elite |SETVEHICLEAMMO]]
[[Category:Scripting Commands OFP Elite |SETVEHICLEAMMO]]
[[Category:Scripting Commands ArmA|SETVEHICLEAMMO]]
[[Category:Scripting Commands ArmA|SETVEHICLEAMMO]]
[[Category:Command_Group:_Weapons|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting_Commands_Take_On_Helicopters|{{uc:{{PAGENAME}}}}]]
<!-- CONTINUE Notes -->
<dl class="command_description">
<dd class="notedate">Posted on December 20, 2014 - 21:55 (UTC)</dd>
<dt class="note">[[User:Actium|Actium]]</dt>
<dd class="note">
This command does not operate ''compared to a full state defined by the vehicle type'', but rather relative to a vehicle's current magazine loadout. To get the former behaviour use [[setVehicleAmmoDef]], which utilizes the vehicles default magazine loadout (i.e. its CfgVehicles magazines[] values).
</dd>
</dl>
<!-- DISCONTINUE Notes -->

Revision as of 22:15, 1 September 2019

-wrong parameter ("Arma") defined!-1.00
Hover & click on the images for description

Description

Description:
Sets how much ammunition (compared to a full state defined by the vehicle type) the vehicle has. Note that the ammo will be added only to local turrets. To check locality of turret use turretLocal. The value ranges from 0 to 1.
Groups:
Uncategorised

Syntax

Syntax:
vehicleName setVehicleAmmo value
Parameters:
vehicleName: Object
value: Number - 0: empty, 1: full
Return Value:
Nothing

Examples

Example 1:
player setVehicleAmmo 0;
Example 2:
_vehicle setVehicleAmmo 1;

Additional Information

See also:
setVehicleAmmoDefammosetAmmosetAmmoCargoturretLocal

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

Ceeeb
This command does not add magazines to vehicle weapons that normally start with more than one magazine. It can however, remove these magazines.
Bon_Inf*
A2:OA v1.59 - Magazines of vehicle turrets are also refilled by this command.
kju
  • If you 'unit/vehicle setVehicleAmmo 0;' an unit/vehicle first, you cannot refill it with 'unit/vehicle setVehicleAmmo 1;'.
  • You need to execute where the unit is local.
  • You need to execute on the effectiveCommander of a vehicle.
Galzohar
  • In ArmA 3, using this command seems correctly rearm the vehicle and its turrets in all situations (tested with beta 0.72).
Killzone_Kid
  • In ArmA 3, when using this on a player, this command can only reduce the number of magazine in relation to the current ammo quantity of the unit. For example if player has 8 magazines, player setVehicleAmmo 0.5; will leave unit with 4 mags. Executing player setVehicleAmmo 0.5; again will leave unit with 2 mags. player setVehicleAmmo 0.5; again -> 1 mag. player setVehicleAmmo 0; will remove all mags. If player had 10 mags with 30 bullets in each, player setVehicleAmmo 0.01; will leave player with loaded mag with 3 bullets in it (300 x 0.01 = 3)

Bottom Section

Posted on December 20, 2014 - 21:55 (UTC)
Actium
This command does not operate compared to a full state defined by the vehicle type, but rather relative to a vehicle's current magazine loadout. To get the former behaviour use setVehicleAmmoDef, which utilizes the vehicles default magazine loadout (i.e. its CfgVehicles magazines[] values).