weapons: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (enhanced category link visibility with capital letters)
m (template:command argument fix)
Line 7: Line 7:
____________________________________________________________________________________________
____________________________________________________________________________________________


| Returns array of names of all [[Object#Unit|Unit]]'s [[:Category:Weapons|weapons]]. |= Description
| Returns array of names of all [[Object#Unit|Unit]]'s [[:Category:Weapons|weapons]]. |DESCRIPTION=
____________________________________________________________________________________________
____________________________________________________________________________________________


| [[Array]] <nowiki>=</nowiki> '''weapons''' vehicleName |= Syntax
| [[Array]] <nowiki>=</nowiki> '''weapons''' vehicleName |SYNTAX=


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


|  [[Array]] of weapon names. |= Return value
|  [[Array]] of weapon names. |RETURNVALUE=
____________________________________________________________________________________________
____________________________________________________________________________________________
   
   
|x1= <code>_wArray <nowiki>=</nowiki> [[weapons]] [[player]];</code> |= Example 1
|x1= <code>_wArray <nowiki>=</nowiki> [[weapons]] [[player]];</code> |EXAMPLE1=
____________________________________________________________________________________________
____________________________________________________________________________________________


| [[magazines]], [[weaponsTurret]], [[assignedVehicleRole]], [[:Category:Weapons|Link to games Weapons Category]], [[weaponState]] |= See also
| [[magazines]], [[weaponsTurret]], [[assignedVehicleRole]], [[:Category:Weapons|Link to games Weapons Category]], [[weaponState]] |SEEALSO=


}}
}}

Revision as of 15:51, 7 April 2019

Hover & click on the images for description

Description

Description:
Returns array of names of all Unit's weapons.
Groups:
Uncategorised

Syntax

Syntax:
Array = weapons vehicleName
Parameters:
vehicleName: Object
Return Value:
Array of weapon names.

Examples

Example 1:
_wArray = weapons player;

Additional Information

See also:
magazinesweaponsTurretassignedVehicleRoleLink to games Weapons CategoryweaponState

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

Posted on 12:07, 20 January 2007
Bdfy
(A1 1.02) this command returns only weapons defined for the primary turret of the vehicle. for ex. only ["D81", "PKT"] for t72, not ["D81", "PKT","DSHKM"]
Posted on 06:01, 3 March 2007 (CET)
Donnervogel
weapons never returns the weapon "Throw" which all soldier units have have to throw handgrenades. You'd have to use hasWeapon to verfy it. Also handgrenades are not listed since they are magazines. Use magazines for that.
Posted on 11 March 2011
kju
Use weaponsTurret to determine the weapons of a non gunner/turret position.
Posted on 25 November 2011
Dr_Eyeball
This command does not include non-turret weapons, such as smoke, flare or chaff launchers which are usually declared in the root of the vehicle's class, rather than in the Turrets hierarchy. (Unsure whether it excludes it because it is not in the turret or because these are not considered true weapons via some property.)
Posted on 18 June 2013
Druid
Lists also weapons in inventory from Arma 3 ver. 0.70.

Bottom Section