ACE3/addons/medical/functions/fnc_useItem.sqf
Phyma ffaa195fe5 Conform function headers to coding guidelines (#5255)
* Fixed headers to work with silentspike python script

* Fixed rest of the files

* Fixed ace-team
2017-06-08 15:31:51 +02:00

62 lines
1.7 KiB
Plaintext

/*
* Author: Glowbal
* Use Equipment if any is available. Priority: 1) Medic, 2) Patient. If in vehicle: 3) Crew
*
* Arguments:
* 0: Medic <OBJECT>
* 1: Patient <OBJECT>
* 2: Item <STRING>
*
* Return Value:
* 0: success <BOOL>
* 1: Unit <OBJECT>
*
* Example:
* [unit, patient, "bandage"] call ace_repair_fnc_useItem
*
* Public: Yes
*/
#include "script_component.hpp"
params ["_medic", "_patient", "_item"];
if (isNil QGVAR(setting_allowSharedEquipment)) then {
GVAR(setting_allowSharedEquipment) = true;
};
if (GVAR(setting_allowSharedEquipment) && {[_patient, _item] call EFUNC(common,hasItem)}) exitWith {
if (local _patient) then {
["ace_useItem", [_patient, _item]] call CBA_fnc_localEvent;
} else {
["ace_useItem", [_patient, _item], _patient] call CBA_fnc_targetEvent;
};
[true, _patient];
};
if ([_medic, _item] call EFUNC(common,hasItem)) exitWith {
if (local _medic) then {
["ace_useItem", [_medic, _item]] call CBA_fnc_localEvent;
} else {
["ace_useItem", [_medic, _item], _medic] call CBA_fnc_targetEvent;
};
[true, _medic];
};
private _return = [false, objNull];
if ([vehicle _medic] call FUNC(isMedicalVehicle) && {vehicle _medic != _medic}) then {
private _crew = crew vehicle _medic;
{
if ([_medic, _x] call FUNC(canAccessMedicalEquipment) && {([_x, _item] call EFUNC(common,hasItem))}) exitWith {
_return = [true, _x];
if (local _x) then {
["ace_useItem", [_x, _item]] call CBA_fnc_localEvent;
} else {
["ace_useItem", [_x, _item], _x] call CBA_fnc_targetEvent;
};
};
} forEach _crew;
};
_return