ACE3/addons/medical/functions/fnc_treatmentIVLocal.sqf

39 lines
1.1 KiB
Plaintext
Raw Normal View History

/*
* Author: Glowbal
2015-02-21 20:25:37 +00:00
* IV Treatment local callback
*
* Arguments:
* 0: The medic <OBJECT>
* 1: Treatment classname <STRING>
*
*
* Return Value:
2015-08-22 17:47:23 +00:00
* None
*
* Public: Yes
*/
#include "script_component.hpp"
2015-08-22 17:47:23 +00:00
params ["_target", "_treatmentClassname"];
private _bloodVolume = _target getVariable [QGVAR(bloodVolume), 100];
2015-11-30 16:14:05 +00:00
if (_bloodVolume >= 100) exitWith {};
// Find the proper attributes for the used IV
private _config = (configFile >> "ACE_Medical_Advanced" >> "Treatment" >> "IV");
private _volumeAdded = getNumber (_config >> "volume");
private _typeOf = getText (_config >> "type");
if (isClass (_config >> _treatmentClassname)) then {
_config = (_config >> _treatmentClassname);
if (isNumber (_config >> "volume")) then { _volumeAdded = getNumber (_config >> "volume");};
if (isText (_config >> "type")) then { _typeOf = getText (_config >> "type"); };
} else {
ERROR("IV Treatment Classname not found");
};
private _bloodBags = _target getVariable [QGVAR(ivBags), []];
_bloodBags pushBack [_volumeAdded]; // Future BagType: [_volumeAdded, _typeOf]
_target setVariable [QGVAR(ivBags), _bloodBags, true];