From Savage Game Design Wiki
Revision as of 12:47, 16 September 2019 by vn>Unknown user
Jump to navigation
Jump to search
Description
/*
File: fn_hasItems.sqf
Author: Wyqer, veteran29
Date: 2020-10-08
Last Update: 2020-11-10
Public: Yes
Description:
Checks if given units have at least one of each given item in their inventory.
Parameter(s):
_units - Array of units and/or groups to check for the item [ARRAY, defaults to []]
_items - Array of item classnames to check for in their inventories [ARRAY, defaults to []]
_all - Selector if all items should be in the inventory at least once or just one of the items are needed [BOOL, defaults to true]
Returns:
At least one of each item is in the inventory of provided groups [BOOL]
Example(s):
// Both listed items are need to be at least once in the inventory
[[player], ["vn_mine_m18_mag", "vn_mine_m18_x3_mag"]] call vn_ms_fnc_hasItems
// One of the listed items needs to be at least once in the inventory
[[player], ["vn_mine_m18_mag", "vn_mine_m18_x3_mag"], false] call vn_ms_fnc_hasItems
*/
(Placeholder description extracted from the function header by LM_exportFunctionsToWiki.sqf)
Syntax
- Syntax
- [] call vn_ms_fnc_hasItems;
- Return value
- Nothing
Examples
- Example 1
-