ACE3/addons/medical/functions/fnc_actionDiagnose.sqf

46 lines
1.1 KiB
Plaintext
Raw Normal View History

2015-04-17 22:38:03 +00:00
/*
* Author: Glowbal
* Action for diagnosing in basic medical
*
* Arguments:
* 0: The medic <OBJECT>
* 1: The patient <OBJECT>
*
* Return Value:
2015-08-22 14:25:10 +00:00
* None
2015-04-17 22:38:03 +00:00
*
* Public: No
*/
#include "script_component.hpp"
2015-08-22 14:25:10 +00:00
params ["_caller", "_target"];
2016-06-13 08:55:19 +00:00
private _genericMessages = [LSTRING(diagnoseMessage), [_target] call EFUNC(common,getName)];
if (alive _target) then {
2015-11-30 16:21:28 +00:00
_genericMessages pushBack LSTRING(diagnoseAlive);
} else {
2015-11-30 16:21:28 +00:00
_genericMessages pushBack LSTRING(diagnoseDead);
};
2016-06-13 08:55:19 +00:00
if (_target getVariable[QGVAR(hasLostBlood), 0] > 0) then {
2015-12-21 16:05:48 +00:00
if (_target getVariable[QGVAR(hasLostBlood), 0] > 1) then {
_genericMessages pushBack LSTRING(lostBloodALot);
} else {
_genericMessages pushBack LSTRING(lostBlood);
};
} else {
2015-11-30 16:21:28 +00:00
_genericMessages pushBack LSTRING(noBloodloss);
};
if (alive _target) then {
if (_target getVariable[QGVAR(hasPain), false]) then {
2015-11-30 16:21:28 +00:00
_genericMessages pushBack LSTRING(inPain);
} else {
2015-11-30 16:21:28 +00:00
_genericMessages pushBack LSTRING(noPain);
};
};
[QEGVAR(common,displayTextStructured), [_genericMessages, 3.0, _caller], [_caller]] call CBA_fnc_targetEvent;