ACE3/addons/medical/functions/fnc_getTriageStatus.sqf

32 lines
873 B
Plaintext
Raw Normal View History

2015-03-05 19:55:38 +00:00
/*
* Author: Glowbal
* Get the triage status and information from a unit
*
* Arguments:
* 0: The unit <OBJECT>
*
* Return Value:
2015-08-22 14:25:10 +00:00
* 0: Name <STRING>
* 1: Status ID <NUMBER>
* 2: Color <ARRAY <NUMBER>>
2015-03-05 19:55:38 +00:00
*
* Example:
* [bob] call ace_medical_fnc_getTriageStatus
*
2015-03-05 19:55:38 +00:00
* Public: Yes
*/
#include "script_component.hpp"
private ["_unit","_return","_status"];
2015-08-22 14:25:10 +00:00
params ["_unit"];
_status = _unit getVariable [QGVAR(triageLevel), -1];
2015-03-05 19:55:38 +00:00
_return = switch (_status) do {
2015-05-28 19:59:04 +00:00
case 1: {[localize LSTRING(Triage_Status_Minor), 1, [0, 0.5, 0, 0.9]]};
case 2: {[localize LSTRING(Triage_Status_Delayed), 2, [0.7, 0.5, 0, 0.9]]};
case 3: {[localize LSTRING(Triage_Status_Immediate), 3, [0.4, 0.07, 0.07, 0.9]]};
case 4: {[localize LSTRING(Triage_Status_Deceased), 4, [0, 0, 0, 0.9]]};
default {[localize LSTRING(Triage_Status_None), 0, [0, 0, 0, 0.9]]};
2015-03-05 19:55:38 +00:00
};
2015-08-22 14:25:10 +00:00
_return