mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
d6507cf119
* Medical - epiBoostsSpontaneousWakeUp * Update initSettings.sqf * Move setting, add strings * Update initSettings.sqf * Update addons/medical/stringtable.xml Co-Authored-By: mharis001 <34453221+mharis001@users.noreply.github.com>
63 lines
2.2 KiB
Plaintext
63 lines
2.2 KiB
Plaintext
#include "script_component.hpp"
|
|
/*
|
|
* Author: Glowbal
|
|
* Handles the medication given to a patient.
|
|
*
|
|
* Arguments:
|
|
* 0: The patient <OBJECT>
|
|
* 1: Medication Treatment classname <STRING>
|
|
* 2: Max dosage (0 to ignore) <NUMBER>
|
|
* 3: Incompatable medication <ARRAY<STRING>>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [player, "morphine", 4, [["x", 1]]] call ace_medical_treatment_fnc_onMedicationUsage
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
params ["_target", "_className", "_maxDosage", "_incompatibleMedication"];
|
|
TRACE_4("onMedicationUsage",_target,_className,_maxDosage,_incompatibleMedication);
|
|
|
|
private _overdosedMedications = [];
|
|
|
|
// Check for overdose from current medication
|
|
if (_maxDosage > 0) then {
|
|
private _currentDose = [_target, _className] call EFUNC(medical_status,getMedicationCount);
|
|
if (_currentDose >= floor (_maxDosage + round(random(2)))) then {
|
|
TRACE_1("exceeded max dose",_currentDose);
|
|
_overdosedMedications pushBackUnique _className;
|
|
};
|
|
};
|
|
|
|
// Check incompatible medication (format [med,limit])
|
|
{
|
|
_x params ["_xMed", "_xLimit"];
|
|
private _inSystem = [_target, _xMed] call EFUNC(medical_status,getMedicationCount);
|
|
if (_inSystem> _xLimit) then {
|
|
_overdosedMedications pushBackUnique _xMed;
|
|
};
|
|
} forEach _incompatibleMedication;
|
|
|
|
if !(_overdosedMedications isEqualTo []) then {
|
|
private _medicationConfig = (configFile >> "ace_medical_treatment" >> "Medication");
|
|
private _onOverDose = getText (_medicationConfig >> "onOverDose");
|
|
if (isClass (_medicationConfig >> _className)) then {
|
|
_medicationConfig = (_medicationConfig >> _className);
|
|
if (isText (_medicationConfig >> "onOverDose")) then { _onOverDose = getText (_medicationConfig >> "onOverDose"); };
|
|
};
|
|
TRACE_2("overdose",_overdosedMedications,_onOverDose);
|
|
if (_onOverDose == "") exitWith {
|
|
TRACE_1("CriticalVitals Event",_target); // make unconscious
|
|
[QEGVAR(medical,CriticalVitals), _target] call CBA_fnc_localEvent;
|
|
};
|
|
if (isNil _onOverDose) then {
|
|
_onOverDose = compile _onOverDose;
|
|
} else {
|
|
_onOverDose = missionNamespace getVariable _onOverDose;
|
|
};
|
|
[_target, _className, _overdosedMedications] call _onOverDose;
|
|
};
|