ACE3/addons/medical/functions/fnc_useItems.sqf

39 lines
1.0 KiB
Plaintext
Raw Normal View History

/*
* Author: Glowbal
* Use Equipment items if any is available. Priority: 1) Medic, 2) Patient. If in vehicle: 3) Crew
*
* Arguments:
* 0: Medic <OBJECT>
* 1: Patient <OBJECT>
* 2: Items <ARRAY<STRING>>
*
* ReturnValue:
2015-08-22 17:47:23 +00:00
* None
*
* Public: Yes
*/
#include "script_component.hpp"
private ["_medic", "_patient", "_items", "_itemUsedInfo", "_itemsUsedBy"];
2015-08-22 17:47:23 +00:00
params ["_medic", "_patient", "_items"];
_itemsUsedBy = [];
{
2015-02-28 18:28:05 +00:00
// handle a one of type use item
if (_x isEqualType []) then {
2015-02-28 18:28:05 +00:00
{
_itemUsedInfo = [_medic, _patient, _x] call FUNC(useItem);
2015-11-30 16:21:28 +00:00
if (_itemUsedInfo select 0) exitWith { _itemsUsedBy pushBack [(_itemUsedInfo select 1), _x]};
2015-11-30 16:23:48 +00:00
} forEach _x;
2015-02-28 18:28:05 +00:00
};
2015-02-28 18:28:05 +00:00
// handle required item
if (_x isEqualType "") then {
_itemUsedInfo = [_medic, _patient, _x] call FUNC(useItem);
2015-11-30 16:21:28 +00:00
if (_itemUsedInfo select 0) exitWith { _itemsUsedBy pushBack [(_itemUsedInfo select 1), _x]};
2015-02-28 18:28:05 +00:00
};
2015-11-30 16:23:48 +00:00
} forEach _items;
[count _items == count _itemsUsedBy, _itemsUsedBy];