ACE3/addons/javelin/functions/fnc_showFireMode.sqf

15 lines
562 B
Plaintext
Raw Normal View History

2016-05-30 16:37:03 +00:00
//#define DEBUG_MODE_FULL
#include "script_component.hpp"
TRACE_1("enter", _this);
2016-05-30 16:37:03 +00:00
private _currentShooter = if (ACE_player call CBA_fnc_canUseWeapon) then {ACE_player} else {vehicle ACE_player};
private _currentFireMode = _currentShooter getVariable ["ace_missileguidance_attackProfile", "JAV_TOP"];
2016-05-30 16:37:03 +00:00
if(_currentFireMode == "JAV_TOP") then {
2016-05-30 16:37:03 +00:00
__JavelinIGUITop ctrlSetTextColor __ColorGreen;
__JavelinIGUIDir ctrlSetTextColor __ColorGray;
} else {
__JavelinIGUITop ctrlSetTextColor __ColorGray;
__JavelinIGUIDir ctrlSetTextColor __ColorGreen;
};