hasWeapon: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "_{10,} " to "")
m (Text replacement - " *\| *([Cc]omments|COMMENTS|Game|[Gg]ame [Nn]ame|Game [Vv]ersion|Game Version \(number surrounded by NO SPACES\)|Multiplayer Arguments( \("local" or "global"\))?|Effects|Multiplayer Effects( \("local" or "global"\))?|Multiplayer Exe...)
Line 1: Line 1:
{{Command|Comments=
{{Command


| ofp |Game name=
| ofp


|1.00|Game version=
|1.00


|arg= global |Multiplayer Arguments=
|arg= global


|gr1= Weapons |GROUP1=
|gr1= Weapons


|gr2= Unit Inventory |GROUP2=
|gr2= Unit Inventory


| Checks if a unit has the given weapon in hands or on back/in holster. Weapons inside unit containers such as vest and backpack are not counted. |DESCRIPTION=
| Checks if a unit has the given weapon in hands or on back/in holster. Weapons inside unit containers such as vest and backpack are not counted.


| unitName '''hasWeapon''' weaponName |SYNTAX=
| unitName '''hasWeapon''' weaponName


|p1= unitName: [[Object]] |PARAMETER1=
|p1= unitName: [[Object]]


|p2= weaponName: [[String]] - the name of the weapon to check for. |PARAMETER2=
|p2= weaponName: [[String]] - the name of the weapon to check for.


| [[Boolean]] -   
| [[Boolean]] -   
Returns true if the unit has the weapon, false if not. |RETURNVALUE=
Returns true if the unit has the weapon, false if not.
   
   
|x1= <code>[[if]] !([[player]] [[hasWeapon]] "arifle_MX_ACO_pointer_F") [[then]] { [[player]] [[addWeapon]] "arifle_MX_ACO_pointer_F" };</code> |EXAMPLE1=
|x1= <code>[[if]] !([[player]] [[hasWeapon]] "arifle_MX_ACO_pointer_F") [[then]] { [[player]] [[addWeapon]] "arifle_MX_ACO_pointer_F" };</code>


| [[weapons]] |SEEALSO=
| [[weapons]]


}}
}}

Revision as of 01:40, 18 January 2021

Hover & click on the images for description

Description

Description:
Checks if a unit has the given weapon in hands or on back/in holster. Weapons inside unit containers such as vest and backpack are not counted.
Groups:
WeaponsUnit Inventory

Syntax

Syntax:
unitName hasWeapon weaponName
Parameters:
unitName: Object
weaponName: String - the name of the weapon to check for.
Return Value:
Boolean - Returns true if the unit has the weapon, false if not.

Examples

Example 1:
if !(player hasWeapon "arifle_MX_ACO_pointer_F") then { player addWeapon "arifle_MX_ACO_pointer_F" };

Additional Information

See also:
weapons

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 September 11, 2014 - 10:49 (EST)
Benargee
This command doesn't work for Items in Arma 3, use this instead. "ItemGPS" in (items player + assignedItems player)
OR
'ItemGPS' in (items player + assignedItems player)
Returns true if unit has gps in inventory, assigned or not.

Bottom Section