Added hasItems function

This commit is contained in:
Glowbal 2015-02-22 18:38:06 +01:00
parent 2b061e8de3
commit 8b3e5ac8e2
2 changed files with 32 additions and 0 deletions

View File

@ -45,6 +45,7 @@ PREP(onMedicationUsed);
PREP(reactionToDamage);
PREP(useItem);
PREP(hasItem);
PREP(hasItems);
PREP(hasMedicalEnabled);
PREP(hasTourniquetAppliedTo);
PREP(isMedic);

View File

@ -0,0 +1,31 @@
/*
* Author: Glowbal
* Check if all items are present between the patient and the medic.
*
* Arguments:
* 0: Medic <OBJECT>
* 1: Patient <OBJECT>
* 2: Item <STRING>
*
* ReturnValue:
* <NIL>
*
* Public: Yes
*/
#include "script_component.hpp"
private ["_medic", "_patient", "_items", "_return"];
_medic = _this select 0;
_patient = _this select 1;
_items = _this select 2;
_return = true;
{
if !([_medic, _patient, _x] call FUNC(hasItem)) exitwith {
_return = false;
};
}foreach _items;
_return;