BIS fnc hasItem: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - " \| *(\[\[[a-zA-Z ]+\]\].+) \|x1=" to " |r1=$1 |x1=")
m (Some wiki formatting)
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{RV|type=function
{{RV|type=function


| arma3
|game1= arma3
|version1= 1.94


|1.94
|gr1= Inventory
 
|descr= Returns [[true]] if object contains given item in inventory / cargo storage.
{{Feature | important | This function performs a deep search of inventory / cargo storage, thus is not suitable for per-frame execution.}}


|gr1= Inventory
|s1= [object, item, searchCrew] call [[BIS_fnc_hasItem]]


| Returns [[true]] if object contains given item in inventory / cargo storage.{{Feature | important | This function performs a deep search of inventory / cargo storage, thus is not suitable for per-frame execution}}
|p1= object: [[Object]] or [[Group]] - unit, vehicle, container or group of units (since v1.95)


| [object, item, searchCrew] call '''BIS_fnc_hasItem''';
|p2= item: [[String]] - item to find


|p1=[object, item, searchCrew]: [[Array]]
|p3= searchCrew: [[Boolean]] - (Optional, default [[false]]) [[true]] to search vehicle crew as well if object is a vehicle
|p2= object: [[Object]] or [[Group]] - unit, vehicle, container or group of units (since v1.95)
|p3= item: [[String]] - item to find
|p4= searchCrew (Optional): [[Boolean]] - [[true]] to search vehicle crew as well if object is a vehicle. Default - [[false]]


|r1=[[Boolean]] - [[true]] if has item
|r1= [[Boolean]] - [[true]] if has item


|x1= <code><nowiki>[</nowiki>[[player]], "ItemMap"] [[call]] [[BIS_fnc_hasItem]];</code>
|x1= <code>[<nowiki/>[[player]], "ItemMap"] [[call]] [[BIS_fnc_hasItem]];</code>


|x2= <code>[tank, "FirstAidKit", [[true]]] [[call]] [[BIS_fnc_hasItem]];</code>
|x2= <code>[tank, "FirstAidKit", [[true]]] [[call]] [[BIS_fnc_hasItem]];</code>
|seealso=
}}
}}

Revision as of 19:38, 13 June 2021

Hover & click on the images for description

Description

Description:
Returns true if object contains given item in inventory / cargo storage.
This function performs a deep search of inventory / cargo storage, thus is not suitable for per-frame execution.
Execution:
call
Groups:
Inventory

Syntax

Syntax:
[object, item, searchCrew] call BIS_fnc_hasItem
Parameters:
object: Object or Group - unit, vehicle, container or group of units (since v1.95)
item: String - item to find
searchCrew: Boolean - (Optional, default false) true to search vehicle crew as well if object is a vehicle
Return Value:
Boolean - true if has item

Examples

Example 1:
[player, "ItemMap"] call BIS_fnc_hasItem;
Example 2:
[tank, "FirstAidKit", true] call BIS_fnc_hasItem;

Additional Information

See also:
See also needed

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