From 78e81f31b23c5b86a75c9b2967fc631136375ec3 Mon Sep 17 00:00:00 2001 From: BroBeans Date: Fri, 11 Oct 2024 23:43:34 +0800 Subject: [PATCH 1/2] fix ivhms action menu --- addons/uh60_mfd/functions/fnc_ivhms.sqf | 1 + 1 file changed, 1 insertion(+) diff --git a/addons/uh60_mfd/functions/fnc_ivhms.sqf b/addons/uh60_mfd/functions/fnc_ivhms.sqf index 936ed7da..d7e978c4 100644 --- a/addons/uh60_mfd/functions/fnc_ivhms.sqf +++ b/addons/uh60_mfd/functions/fnc_ivhms.sqf @@ -6,6 +6,7 @@ vtx_uh60_mfd_allowText = false; {_vehicle setUserMFDValue [_x, 6]} forEach [23, 24, 25, 26]; _vehicle animate ["GeneratorsOnOff",1]; _vehicle animate ["PowerOnOff",1]; +if (isClass(configFile >> "CfgPatches" >> "vxf_interaction")) then {[_vehicle, ["startup", "b_batt1"], "ON"] call vxf_interaction_fnc_scriptedInteract;}; // 1 FRAMEWORK STATUS: ACTIVE From a7a935c197b15b5a773a4b1018fd6813d26a1f44 Mon Sep 17 00:00:00 2001 From: BroBeans Date: Wed, 11 Dec 2024 20:34:21 +0800 Subject: [PATCH 2/2] fix IVHMS scroll wheel MFD's wouldn't turn on and display IVHMS page automatically --- addons/uh60_mfd/functions/fnc_ivhms.sqf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/uh60_mfd/functions/fnc_ivhms.sqf b/addons/uh60_mfd/functions/fnc_ivhms.sqf index d7e978c4..7a6463ab 100644 --- a/addons/uh60_mfd/functions/fnc_ivhms.sqf +++ b/addons/uh60_mfd/functions/fnc_ivhms.sqf @@ -6,7 +6,7 @@ vtx_uh60_mfd_allowText = false; {_vehicle setUserMFDValue [_x, 6]} forEach [23, 24, 25, 26]; _vehicle animate ["GeneratorsOnOff",1]; _vehicle animate ["PowerOnOff",1]; -if (isClass(configFile >> "CfgPatches" >> "vxf_interaction")) then {[_vehicle, ["startup", "b_batt1"], "ON"] call vxf_interaction_fnc_scriptedInteract;}; +[_vehicle, ["startup", "b_batt1"], "ON"] call vxf_interaction_fnc_scriptedInteract; // 1 FRAMEWORK STATUS: ACTIVE