2015-02-06 12:47:17 +00:00
|
|
|
/*
|
2015-09-02 18:13:51 +00:00
|
|
|
* Author: KoffeinFlummi, commy2
|
2015-02-06 12:47:17 +00:00
|
|
|
* Initializes unit variables.
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: The Unit <OBJECT>
|
|
|
|
*
|
2017-06-08 13:31:51 +00:00
|
|
|
* Return Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* [bob] call ACE_medical_fnc_init
|
2015-02-06 12:47:17 +00:00
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-08-22 14:25:10 +00:00
|
|
|
params ["_unit"];
|
2015-02-06 12:47:17 +00:00
|
|
|
|
2015-09-02 18:13:51 +00:00
|
|
|
// basic
|
2015-04-19 15:28:47 +00:00
|
|
|
_unit setVariable [QGVAR(pain), 0, true];
|
|
|
|
_unit setVariable [QGVAR(morphine), 0, true];
|
|
|
|
_unit setVariable [QGVAR(bloodVolume), 100, true];
|
2015-09-02 18:13:51 +00:00
|
|
|
_unit setVariable ["ACE_isUnconscious", false, true];
|
2015-02-28 10:41:27 +00:00
|
|
|
|
2015-09-02 18:13:51 +00:00
|
|
|
// advanced
|
2015-09-03 15:17:54 +00:00
|
|
|
// tourniquets
|
2015-11-30 16:27:09 +00:00
|
|
|
_unit setVariable [QGVAR(tourniquets), [0,0,0,0,0,0], true];
|
2015-02-28 10:41:27 +00:00
|
|
|
|
2016-02-03 20:40:26 +00:00
|
|
|
//Delayed Medications (from tourniquets)
|
|
|
|
_unit setVariable [QGVAR(occludedMedications), nil, true];
|
|
|
|
|
2015-09-03 15:17:54 +00:00
|
|
|
// wounds and injuries
|
2015-11-30 16:27:09 +00:00
|
|
|
_unit setVariable [QGVAR(openWounds), [], true];
|
|
|
|
_unit setVariable [QGVAR(bandagedWounds), [], true];
|
2015-09-03 15:17:54 +00:00
|
|
|
_unit setVariable [QGVAR(internalWounds), [], true];
|
2015-11-30 16:27:09 +00:00
|
|
|
_unit setVariable [QGVAR(lastUniqueWoundID), 1, true];
|
2015-02-28 10:41:27 +00:00
|
|
|
|
2015-09-03 15:17:54 +00:00
|
|
|
// vitals
|
|
|
|
_unit setVariable [QGVAR(heartRate), 80];
|
2015-11-30 16:27:09 +00:00
|
|
|
_unit setVariable [QGVAR(heartRateAdjustments), []];
|
|
|
|
_unit setVariable [QGVAR(bloodPressure), [80, 120]];
|
2015-09-03 15:17:54 +00:00
|
|
|
_unit setVariable [QGVAR(peripheralResistance), 100];
|
2015-02-28 10:41:27 +00:00
|
|
|
|
2015-09-03 15:17:54 +00:00
|
|
|
// fractures
|
|
|
|
_unit setVariable [QGVAR(fractures), [], true];
|
2015-02-28 10:41:27 +00:00
|
|
|
|
2015-09-03 15:17:54 +00:00
|
|
|
// triage card and logs
|
2015-11-30 16:27:09 +00:00
|
|
|
_unit setVariable [QGVAR(triageLevel), 0, true];
|
|
|
|
_unit setVariable [QGVAR(triageCard), [], true];
|
2015-02-28 10:41:27 +00:00
|
|
|
|
2015-09-03 15:17:54 +00:00
|
|
|
// IVs
|
2016-09-01 10:46:08 +00:00
|
|
|
_unit setVariable [QGVAR(ivBags), nil, true];
|
2015-02-28 10:41:27 +00:00
|
|
|
|
2015-09-03 15:17:54 +00:00
|
|
|
// damage storage
|
2015-11-30 16:27:09 +00:00
|
|
|
_unit setVariable [QGVAR(bodyPartStatus), [0,0,0,0,0,0], true];
|
2015-02-28 10:41:27 +00:00
|
|
|
|
2015-09-03 15:17:54 +00:00
|
|
|
// airway
|
2015-11-30 16:27:09 +00:00
|
|
|
_unit setVariable [QGVAR(airwayStatus), 100];
|
2015-09-03 15:17:54 +00:00
|
|
|
_unit setVariable [QGVAR(airwayOccluded), false];
|
2015-11-30 16:27:09 +00:00
|
|
|
_unit setVariable [QGVAR(airwayCollapsed), false];
|
2015-02-28 10:41:27 +00:00
|
|
|
|
2015-09-03 15:17:54 +00:00
|
|
|
// generic medical admin
|
2015-11-30 16:27:09 +00:00
|
|
|
_unit setVariable [QGVAR(addedToUnitLoop), false, true];
|
|
|
|
_unit setVariable [QGVAR(inCardiacArrest), false, true];
|
|
|
|
_unit setVariable [QGVAR(hasLostBlood), 0, true];
|
|
|
|
_unit setVariable [QGVAR(isBleeding), false, true];
|
|
|
|
_unit setVariable [QGVAR(hasPain), false, true];
|
|
|
|
_unit setVariable [QGVAR(amountOfReviveLives), GVAR(amountOfReviveLives), true];
|
|
|
|
_unit setVariable [QGVAR(painSuppress), 0, true];
|
2015-09-02 18:13:51 +00:00
|
|
|
|
2015-09-03 15:17:54 +00:00
|
|
|
// medication
|
2017-10-10 14:39:59 +00:00
|
|
|
private _allUsedMedication = _unit getVariable [QGVAR(allUsedMedication), []];
|
2015-09-03 15:17:54 +00:00
|
|
|
{
|
2015-11-30 16:27:09 +00:00
|
|
|
_unit setVariable [_x select 0, nil];
|
2015-11-30 16:23:48 +00:00
|
|
|
} forEach _allUsedMedication;
|
2015-09-03 15:17:54 +00:00
|
|
|
_unit setVariable [QGVAR(allUsedMedication), [], true];
|
2015-02-28 10:47:35 +00:00
|
|
|
|
2017-10-10 14:39:59 +00:00
|
|
|
private _logs = _unit getVariable [QGVAR(allLogs), []];
|
2015-09-03 15:17:54 +00:00
|
|
|
{
|
2015-11-30 16:27:09 +00:00
|
|
|
_unit setVariable [_x, nil];
|
2015-11-30 16:23:48 +00:00
|
|
|
} forEach _logs;
|
2015-11-30 16:27:09 +00:00
|
|
|
_unit setVariable [QGVAR(allLogs), [], true];
|
2015-03-21 20:59:08 +00:00
|
|
|
|
|
|
|
// items
|
|
|
|
[{
|
|
|
|
_this call FUNC(itemCheck);
|
2016-05-22 13:27:24 +00:00
|
|
|
}, [_unit], 0.5, 0.1] call CBA_fnc_waitAndExecute;
|