hasWeapon: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (+Links)
m (Text replacement - "[[Category:Scripting Commands ArmA|" to "[[Category:Scripting Commands Armed Assault|")
(14 intermediate revisions by 5 users not shown)
Line 1: Line 1:
{{Command|= Comments
{{Command|Comments=
____________________________________________________________________________________________
____________________________________________________________________________________________


| ofp |= Game name
| ofp |Game name=


|1.00|= Game version
|1.00|Game version=


|arg= global |= Arguments in MP
|arg= global |Multiplayer Arguments=
____________________________________________________________________________________________
____________________________________________________________________________________________


| Checks if a unit has the given weapon. |= 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. |DESCRIPTION=
____________________________________________________________________________________________
____________________________________________________________________________________________


| [[Boolean]] <nowiki>=</nowiki> unitName '''hasWeapon''' weaponName |= Syntax
| unitName '''hasWeapon''' weaponName |SYNTAX=


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


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


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


| [[weapons]] |= See also
| [[weapons]] |SEEALSO=


}}
}}
Line 34: Line 34:


<dd class="notedate">Posted on September 11, 2014 - 10:49 (EST)
<dd class="notedate">Posted on September 11, 2014 - 10:49 (EST)
<dt class="note">'''[[User:Benargee|Benargee]]'''
<dt class="note">[[User:Benargee|Benargee]]
<dd class="note">
<dd class="note">
This command doesn't work for Items in Arma 3, use this instead.
This command doesn't work for Items in Arma 3, use this instead.
<code>"[[Arma_3_CfgWeapons_Items#ItemGPS|ItemGPS]]" [[in]] ([[items]] [[player]] + [[assignedItems]] [[player]])</code>
<code>"[[Arma_3_CfgWeapons_Items#ItemGPS|ItemGPS]]" [[in]] [[Scripting_Grammar#Parenthesis_.28.29|(]][[items]] [[player]] [[valuea_plus_valueb|+]] [[assignedItems]] [[player]][[Scripting_Grammar#Parenthesis_.28.29|)]]<br>'''OR'''<br>'[[Arma_3_CfgWeapons_Items#ItemGPS|ItemGPS]]' [[in]] [[Scripting_Grammar#Parenthesis_.28.29|(]][[items]] [[player]] [[valuea_plus_valueb|+]] [[assignedItems]] [[player]][[Scripting_Grammar#Parenthesis_.28.29|)]] </code>
Returns [[true]] if unit has gps either assigned or not
Returns [[true]] if unit has gps in inventory, assigned or not.




Line 46: Line 46:
<h3 style="display:none">Bottom Section</h3>
<h3 style="display:none">Bottom Section</h3>
[[Category:Scripting Commands|HASWEAPON]]
[[Category:Scripting Commands|HASWEAPON]]
[[Category:Scripting Commands OFP 1.99|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands OFP 1.96|HASWEAPON]]
[[Category:Scripting Commands OFP 1.96|HASWEAPON]]
[[Category:Scripting Commands OFP 1.46|HASWEAPON]]
[[Category:Scripting Commands OFP 1.46|HASWEAPON]]
[[Category:Scripting Commands ArmA|HASWEAPON]]
[[Category:Scripting Commands Armed Assault|HASWEAPON]]
[[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 2|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting_Commands_Take_On_Helicopters|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Take On Helicopters|{{uc:{{PAGENAME}}}}]]
[[Category:Command_Group:_Object_Information|{{uc:{{PAGENAME}}}}]]
[[Category:Command_Group:_Object_Information|{{uc:{{PAGENAME}}}}]]
[[Category:Command_Group:_Weapons|{{uc:{{PAGENAME}}}}]]
[[Category:Command_Group:_Weapons|{{uc:{{PAGENAME}}}}]]

Revision as of 20:06, 3 June 2020

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:
Uncategorised

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