Jump to content

BakerBoy

Members
  • Posts

    1
  • Joined

  • Last visited

Everything posted by BakerBoy

  1. Hi All, i have a triple screen set up (3 x 27" monitors at I am trying to edit the 3camera.lua file to enable the left and right MFD displays on the lower portion of my Left/right monitor. I feel relatively confident about the lua script to write, but for some reason, when i save my new lua file, it does not appear as an option in DCS from the Monitor drop down box. I am primarily using DCS open Beta MT installed on D drive, but DCS stable is installed on C drive. I am making sure to rename the "Name" variable in the lua file to something unique. I tried putting the lua file in a variety of locations and opening up the relevant DCS version - so, C://program files/eagledynamics/DCSworld/config/MonitorSetup with no luck. I then tried putting them in C:/users...//Saved Games/DCS/Config/MonitorSetup. No luck. Tried in C:/users..//SavedGames/DCSopenBeta/config/MonitorSetup - again, nothing. I then tried to create a file path D:/Users/..//Saved Games/DCSOpenBeta/Config/MonitorSetup. Again no dice. I then made a copy of the existing 3Camera.lua from DCS open beta to my desktop, and edited the original file directly within D:/DCSWorldOpenBeta/config/MonitorSetup with my additional text. To my surprise, when i opened DCS OpenBeta, the 3 screen option was no longer available! I then deleted it and copied back in the original from the desktop and whala! back again. Does anyone have any idea what is going on? Its driving me bonkers. Below is the lua code i am trying to use. Thanks in advance! _ = function(p) return p; end; name = _('3 Screen with MFD'); Description = 'Configuration with 3 identical monitors each with its own camera and MFDs' Viewports = { Left = { x = 0; y = 0; width = screen.width / 3; height = screen.height; viewDx = -1 viewDy = 0; aspect = screen.aspect / 3; }, Center = { x = screen.width / 3; y = 0; width = screen.width / 3; height = screen.height; viewDx = 0; viewDy = 0; aspect = screen.aspect / 3; }, Right = { x = screen.width * 2 / 3; y = 0; width = screen.width / 3; height = screen.height; viewDx = 1; viewDy = 0; aspect = screen.aspect / 3; } } LEFT_MFCD - { x = 0; y = screen.height -300; height = 300; width = 300; } RIGHT_MFCD - {x = screen.width -300; y = screen.height - 300; width = 300; height = 300; } UIMainView = Viewports.Center GU_MAIN_VIEWPORT = Viewports.Center
×
×
  • Create New...