2015-02-22 18:50:14 +00:00
|
|
|
/*
|
|
|
|
* 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
|
2015-02-22 18:50:14 +00:00
|
|
|
*
|
|
|
|
* Public: Yes
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-04-03 20:40:36 +00:00
|
|
|
private ["_medic", "_patient", "_items", "_itemUsedInfo", "_itemsUsedBy"];
|
2015-08-22 17:47:23 +00:00
|
|
|
params ["_medic", "_patient", "_items"];
|
2015-02-22 18:50:14 +00:00
|
|
|
|
2015-04-03 20:40:36 +00:00
|
|
|
_itemsUsedBy = [];
|
2015-02-22 18:50:14 +00:00
|
|
|
{
|
2015-02-28 18:28:05 +00:00
|
|
|
// handle a one of type use item
|
2015-11-20 17:40:31 +00:00
|
|
|
if (_x isEqualType []) then {
|
2015-02-28 18:28:05 +00:00
|
|
|
{
|
2015-04-03 20:40:36 +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-22 18:50:14 +00:00
|
|
|
|
2015-02-28 18:28:05 +00:00
|
|
|
// handle required item
|
2015-11-20 17:40:31 +00:00
|
|
|
if (_x isEqualType "") then {
|
2015-04-03 20:40:36 +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-02-28 18:28:05 +00:00
|
|
|
};
|
2015-11-30 16:23:48 +00:00
|
|
|
} forEach _items;
|
2015-04-03 20:40:36 +00:00
|
|
|
|
|
|
|
[count _items == count _itemsUsedBy, _itemsUsedBy];
|