TonyStovepipe Posted December 29, 2024 Posted December 29, 2024 Hello, I am not if you can do this or if I am doing it wrong, but can I export F18 MFD but also Black Shark 3 MFD in the same config this goes in C:\Users\Username\Saved Games\DCS\Config\MonitorSetup The LEFT_MFCD = and RIGHT_MFCD = work fine for both F18 and Black Shark 3, but I was hoping to add the Shkval = and ABRIS = would overwrite it as I would the black shark 3 right MFD a bit smaller. Or do I need to set up two separate configs for each module? i don't know if i need name them differently? Thank you very much What I have at the moment is this _ = function(p) return p; end; name = _('F18&BS3'); Description = 'Main View and two MFCDs'; Viewports = { Center = { x = 0; y = 0; width = 2560; height = 1440; viewDx = 0; viewDy = 0; aspect = 2560/1440; } } LEFT_MFCD = { x = 3934; y = 37; width = 601; height = 601; } RIGHT_MFCD = { x = 4691; y = 37; width = 601; height = 601; } Shkval = { x = 3934; y = 37; width = 601; height = 601; } ABRIS = { x = 4701; y = 37; width = 580; height = 580; } --UIMainView = Viewports.Center UIMainView = { x = 0; y = 0; width = 2560; height = 1440; } GU_MAIN_VIEWPORT = { x = 0; y = 0; width = 2560; height = 1440; }
Wostg Posted December 29, 2024 Posted December 29, 2024 Imagine thats possible - Helios manages it like this: _ = function(p) return p end name = _('Helios') description = 'Generated from compatible Helios Profiles' function reconfigure_for_unit(unit_type) if unit_type == "Ka-50" or false then KA_50_ABRIS = { x = 2485, y = 2280, width = 751, height = 900 } KA_50_SHKVAL = { x = 1457, y = 2164, width = 1012, height = 629 } return end -- _Ka-50 if unit_type == "Ka-50_3" or false then KA_50_3_ABRIS = { x = 2487, y = 2424, width = 748, height = 748 } KA_50_3_SHKVAL = { x = 1457, y = 2164, width = 1014, height = 760 } return end -- _Ka-50_3 AH_64D_EUFD_PLT = { x = 1580, y = 1500, width = 700, height = 350 } AH_64D_LEFT_MFCD_PLT = { x = 685, y = 2416, width = 768, height = 768 } AH_64D_RIGHT_MFCD_PLT = { x = 2477, y = 2416, width = 768, height = 768 } TEDAC = { x = 1453, y = 2160, width = 1024, height = 768 } end -- reconfigure_for_unit() Viewports = { Center = { x = 0, y = 0, width = 3840, height = 2160, aspect = 1.77777777777778, dx = 0, dy = 0 } } UIMainView = Viewports.Center GU_MAIN_VIEWPORT = Viewports.Center 1 I can think of nothing heavier than an airplane I can think of no greater conglomerate of steel and metal I can think of nothing less likely to fly
Recommended Posts