ACE3/addons/medical_treatment/functions/fnc_treatmentIVLocal.sqf

47 lines
1.2 KiB
Plaintext
Raw Normal View History

/*
* Author: Glowbal
* IV Treatment local callback
*
* Arguments:
* 0: The medic <OBJECT>
* 1: Treatment classname <STRING>
*
*
* Return Value:
* None
*
* Public: Yes
*/
#include "script_component.hpp"
params ["_target", "_treatmentClassname"];
2016-10-10 15:30:42 +00:00
private _bloodVolume = _target getVariable [QEGVAR(medical,bloodVolume), DEFAULT_BLOOD_VOLUME];
2016-10-10 15:30:42 +00:00
if (_bloodVolume >= DEFAULT_BLOOD_VOLUME) exitWith {};
// Find the proper attributes for the used IV
2016-10-12 19:59:32 +00:00
private _config = configFile >> QUOTE(ADDON) >> "IV";
private _volumeAdded = getNumber (_config >> "volume");
2016-10-12 19:59:32 +00:00
private _type = getText (_config >> "type");
if (isClass (_config >> _treatmentClassname)) then {
2016-10-12 19:59:32 +00:00
_config = _config >> _treatmentClassname;
if (isNumber (_config >> "volume")) then {
_volumeAdded = getNumber (_config >> "volume");
};
if (isText (_config >> "type")) then {
_type = getText (_config >> "type");
};
} else {
ERROR("IV Treatment Classname not found");
};
private _bloodBags = _target getVariable [QEGVAR(medical,ivBags), []];
2016-10-12 19:59:32 +00:00
_bloodBags pushBack [_volumeAdded]; // Future BagType: [_volumeAdded, _type]
_target setVariable [QEGVAR(medical,ivBags), _bloodBags, true];