mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
ad1191cdd5
(1) Verify target is valid and in reasonable range
36 lines
902 B
Plaintext
36 lines
902 B
Plaintext
/*
|
|
* Author: Glowbal
|
|
* Update the category icons
|
|
*
|
|
* Arguments:
|
|
* None
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [] call ace_medical_menu_fnc_updateIcons
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
#define START_IDC 111
|
|
#define END_IDC 118
|
|
|
|
private ["_display", "_idc", "_options", "_amount"];
|
|
|
|
disableSerialization;
|
|
|
|
_display = uiNamespace getVariable QGVAR(medicalMenu);
|
|
|
|
_options = ["triage" , "examine", "bandage", "medication", "airway", "advanced", "drag", "toggle"];
|
|
for "_idc" from START_IDC to END_IDC step 1 do {
|
|
_amount = [ACE_player, GVAR(INTERACTION_TARGET), _options select (_idc - START_IDC)] call FUNC(getTreatmentOptions);
|
|
if ((count _amount) > 0 || _idc == START_IDC || _idc == END_IDC) then {
|
|
(_display displayCtrl _idc) ctrlSettextColor [1, 1, 1, 1];
|
|
} else {
|
|
(_display displayCtrl _idc) ctrlSettextColor [0.4, 0.4, 0.4, 1];
|
|
};
|
|
};
|