mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
44 lines
1.2 KiB
Plaintext
44 lines
1.2 KiB
Plaintext
/*
|
|
* Author: Glowbal
|
|
* IV Treatment local callback
|
|
*
|
|
* Arguments:
|
|
* 0: The medic <OBJECT>
|
|
* 1: Treatment classname <STRING>
|
|
*
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Public: Yes
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
private ["_config", "_volumeAdded", "_typeOf", "_varName", "_bloodVolume"];
|
|
params ["_target", "_treatmentClassname"];
|
|
|
|
_bloodVolume = _target getvariable [QGVAR(bloodVolume), 100];
|
|
if (_bloodVolume >= 100) exitwith {};
|
|
|
|
// Find the proper attributes for the used IV
|
|
_config = (configFile >> "ACE_Medical_Advanced" >> "Treatment" >> "IV");
|
|
_volumeAdded = getNumber (_config >> "volume");
|
|
_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");
|
|
};
|
|
|
|
_varName = format["ACE_Medical_IVVolume_%1",_typeOf];
|
|
_target setvariable [_varName, (_target getvariable [_varName, 0]) + _volumeAdded, true];
|
|
|
|
if !(_varName in GVAR(IVBags)) then {
|
|
GVAR(IVBags) pushback _varName;
|
|
publicVariable QGVAR(IVBags);
|
|
};
|