hasWeapon: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (template:command argument fix)
m (Some wiki formatting)
 
(46 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{Command|= Comments
{{RV|type=command
____________________________________________________________________________________________


| ofp |= Game name
|game1= ofp
|version1= 1.00


|1.00|= Game version
|game2= ofpe
|version2= 1.00


|arg= global |= Arguments in MP
|game3= arma1
____________________________________________________________________________________________
|version3= 1.00


| 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=
|game4= arma2
____________________________________________________________________________________________
|version4= 1.00


| unitName '''hasWeapon''' weaponName |SYNTAX=
|game5= arma2oa
|version5= 1.50


|p1= unitName: [[Object]] |PARAMETER1=
|game6= tkoh
|version6= 1.00


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


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


| [[weapons]] |SEEALSO=
|gr1= Weapons


}}
|gr2= Unit Inventory
 
|descr= 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.
 
|s1= unitName [[hasWeapon]] weaponName
 
|p1= unitName: [[Object]]


<h3 style="display:none">Notes</h3>
|p2= weaponName: [[String]] - the name of the weapon to check for.
<dl class="command_description">
<!-- Note Section BEGIN -->


<dd class="notedate">Posted on September 11, 2014 - 10:49 (EST)
|r1= [[Boolean]] - returns true if the unit has the weapon, false if not.
<dt class="note">'''[[User:Benargee|Benargee]]'''
<dd class="note">
This command doesn't work for Items in Arma 3, use this instead.
<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 in inventory, assigned or not.


|x1= <sqf>if !(player hasWeapon "arifle_MX_ACO_pointer_F") then { player addWeapon "arifle_MX_ACO_pointer_F" };</sqf>


<!-- Note Section END -->
|seealso= [[weapons]]
</dl>
}}


<h3 style="display:none">Bottom Section</h3>
{{Note
[[Category:Scripting Commands|HASWEAPON]]
|user= Benargee
[[Category:Scripting Commands OFP 1.99|{{uc:{{PAGENAME}}}}]]
|timestamp= 20140911104900
[[Category:Scripting Commands OFP 1.96|HASWEAPON]]
|text= This command doesn't work for Items in Arma 3, use this instead (e.g [[Arma_3_CfgWeapons_Items#ItemGPS|ItemGPS]]).
[[Category:Scripting Commands OFP 1.46|HASWEAPON]]
<sqf>"ItemGPS" in (items player + assignedItems player)</sqf>
[[Category:Scripting Commands ArmA|HASWEAPON]]
Returns [[true]] if unit has gps in inventory, assigned or not.
[[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]]
}}
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting_Commands_Take_On_Helicopters|{{uc:{{PAGENAME}}}}]]
[[Category:Command_Group:_Object_Information|{{uc:{{PAGENAME}}}}]]
[[Category:Command_Group:_Weapons|{{uc:{{PAGENAME}}}}]]

Latest revision as of 11:14, 13 May 2022

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
Benargee - c
Posted on Sep 11, 2014 - 10:49 (UTC)
This command doesn't work for Items in Arma 3, use this instead (e.g ItemGPS). Returns true if unit has gps in inventory, assigned or not.