Jump to content

bones1014

Members
  • Posts

    648
  • Joined

  • Last visited

Everything posted by bones1014

  1. Same. I don't know if it's functional or not. Any idea if we'll get the ability to interrogate in the F1-M?
  2. I can duplicate your problem. I can get the switch to go to Alt hold but not ATT hold. It'll read a -1 command when you place the switch in ATT hold with the mouse. Also there are two options that you can use. One that makes the switch move up (3013) and the other down(3012). I can't find the file that defines the possible inputs. I'll keep looking. Looks like it could be an error in a lua somewhere. null
  3. Known issue across all modules. Makes using MFDs at night a pain.
  4. It's been breaking the IC for awhile now. I used to have some screens exported but I can't anymore. Best option would be for the dev to create a unique viewport name and thus make it official.
  5. I'm exporting some displays to external monitors. I don't know when it started but the Jester menu isn't centered in the main gui viewport. I found an error in the JesterAI_Page.lua Line 10 should say find_viewport("GUI_MAIN_VIEWPORT") nullI included a screenshot of the way it's currently displayed and a screenshot of the lua with the error.
  6. I don't know anything more than anyone else and probably less than some. Go through these videos again and double check your install.
  7. Check the following you have the Mirage-F1EE.lua in the DCS.openbeta\Scripts\DCS-ExportScript\ExportsModules folder you have the following lines in the Export.lua file -- load the DCS ExportScript for DAC and Ikarus dofile(lfs.writedir()..[[Scripts\DCS-ExportScript\ExportScript.lua]]) It's really weird if the 15E is working but nothing else is.
  8. The ones I uploaded for the EE work just fine. Used it yesterday.
  9. I know that Aerges changed a bunch of inputs on one of the last couple of updates. I had to remap my entire profile. The profiles you find in the user files section probably won't work anymore. I just updated what I uploaded. Try this one. It's from all my decks. F1 Mirage for upload.streamDeckProfile
  10. No there's nothing strange other than how it shares a series of folders. Once you get the correct numbers in there it works fine. Mirage-F1EE.luaMirage-F1CE.lua
  11. The two versions of the module have multiple files from different folders that are used which leads to the program with looking up values inside the stream deck software. The only way that I know of to find the right values is by opening the LUAs in a text or code editor and searching manually.
  12. I don't think the block 50 ever carried them.
  13. Is the alignment of the plane good to go?
  14. How can I find the proper file to export the Mirage F1EE INS display similar to the 15E's UFC?
  15. How are you advancing the throttle? Don't go full power right away. Slowly advance it while getting a sense of how the plane is moving.
  16. DelanClip is also an option. You can get a whole kit for 49 GBP. Head Tracking Shop - Delanclip (delanengineering.com)
  17. If you start changing names of view ports you might break your integrity check. It has in the past after one of the updates tightened up the check.
  18. @Trigati enjoy some time doing your own thing. Thanks for supporting the community!
  19. With the new version of the 15 lua with the multiple lines is it possible to include the degrees and decimal mark for the coordinates?
  20. I cannot get the Nav-flir to work for the WSO. I can get the HUD camera working fine but selecting the N-F command does nothing. Nav-flir is working for the pilot.
  21. UFC stuff I tried. It's kind of intermittent in multicrew. -- SETUP DATA FROM THE UFC WSO UFC_Data_WSO = ExportScript.Tools.getListIndicatorValue(20) if UFC_Data_WSO == nil then ExportScript.Tools.SendData(82027,"NO\nDATA") else -- LEFT SIDE DESCENDING FROM THE TOP if UFC_Data_WSO.UFC_SC_01 ~= nil then ExportScript.Tools.SendData(82028,UFC_Data_WSO.UFC_SC_01) else ExportScript.Tools.SendData(82028," ") end if UFC_Data_WSO.UFC_SC_02 ~= nil then ExportScript.Tools.SendData(82029,UFC_Data_WSO.UFC_SC_02) else ExportScript.Tools.SendData(82029," ") end if UFC_Data_WSO.UFC_SC_03 ~= nil then ExportScript.Tools.SendData(82030,UFC_Data_WSO.UFC_SC_03) else ExportScript.Tools.SendData(82030," ") end if UFC_Data_WSO.UFC_SC_04 ~= nil then ExportScript.Tools.SendData(82031,UFC_Data_WSO.UFC_SC_04) else ExportScript.Tools.SendData(82031," ") end if UFC_Data_WSO.UFC_SC_05 ~= nil then ExportScript.Tools.SendData(82032,UFC_Data_WSO.UFC_SC_05) else ExportScript.Tools.SendData(82032," ") end -- THIS IS THE RADIO LINE 1 if UFC_Data_WSO.UFC_SC_06 ~= nil then ExportScript.Tools.SendData(82033,UFC_Data_WSO.UFC_SC_06) else ExportScript.Tools.SendData(82033," ") end --CENTRE DESCENDING FROM THE TOP if UFC_Data_WSO.UFC_CC_01 ~= nil then ExportScript.Tools.SendData(82034,UFC_Data_WSO.UFC_CC_01) else ExportScript.Tools.SendData(82034," ") end if UFC_Data_WSO.UFC_CC_02 ~= nil then ExportScript.Tools.SendData(82035,UFC_Data_WSO.UFC_CC_02) else ExportScript.Tools.SendData(82035," ") end if UFC_Data_WSO.UFC_CC_03 ~= nil then ExportScript.Tools.SendData(82036,UFC_Data_WSO.UFC_CC_03) else ExportScript.Tools.SendData(82036," ") end if UFC_Data_WSO.UFC_CC_04 ~= nil then ExportScript.Tools.SendData(82037,UFC_Data_WSO.UFC_CC_04) else ExportScript.Tools.SendData(82037," ") end -- THIS IS THE SCRATCHPAD -- RIGHT SIDE DESCENDING FROM THE TOP if UFC_Data_WSO.UFC_SC_12 ~= nil then ExportScript.Tools.SendData(82038,UFC_Data_WSO.UFC_SC_12) else ExportScript.Tools.SendData(82038," ") end if UFC_Data_WSO.UFC_SC_11 ~= nil then ExportScript.Tools.SendData(82039,UFC_Data_WSO.UFC_SC_11) else ExportScript.Tools.SendData(82039," ") end if UFC_Data_WSO.UFC_SC_10 ~= nil then ExportScript.Tools.SendData(82040,UFC_Data_WSO.UFC_SC_10) else ExportScript.Tools.SendData(82040," ") end if UFC_Data_WSO.UFC_SC_09 ~= nil then ExportScript.Tools.SendData(82041,UFC_Data_WSO.UFC_SC_09) else ExportScript.Tools.SendData(82041," ") end if UFC_Data_WSO.UFC_SC_08 ~= nil then ExportScript.Tools.SendData(82042,UFC_Data_WSO.UFC_SC_08) else ExportScript.Tools.SendData(82042," ") end -- THIS IS THE RADIO LINE 1 if UFC_Data_WSO.UFC_SC_07 ~= nil then ExportScript.Tools.SendData(82043,UFC_Data_WSO.UFC_SC_07) else ExportScript.Tools.SendData(82043," ") end end -------------------------
  22. Definitely the UFC for the back seat if possible.
  23. Seems to be working well in the Pilot seat. Great work! I've been trying to see how you did it. I found the file that lists the lines you used for the UFC data. I have no idea how to differentiate between the front and back seats. They seem to use the same lines. Something to do with this I assume. getListIndicatorValue(8)
×
×
  • Create New...