Jump to content

rrutko

Members
  • Posts

    30
  • Joined

  • Last visited

About rrutko

  • Birthday 10/29/1974

Personal Information

  • Flight Simulators
    DCS, MSFS 2020, Elite Dangerous, Star citizen
  • Location
    United States
  • Interests
    Simulators, Motorcycle racing, driving
  1. bumb, I have same question
  2. Since I have no clue on how to enable/code for this request maybe others could help. I would like one of the options for display for as many helicopters that can extract the VVI date to be able to display it. I know UH-1 does as do a few others. Looking for KA-50, MI-24, MI-8 (been awile since I checked that one.) Again stellar work to all that have contributed/created this.\
  3. @Bailey, First I love this app. I am trying to figure out how to add the ARC 201 FM frequency display on the UH-60 to a streamdeck tile. I have found this in DCS-bios but when I try to implement it into the exsisting export module lua I get no return. local ARC201FM_1 = ExportScript.Tools.split(list_indication(9), "%c")[7]:sub(1,5) --(added ARC201FM_1 as a label) It returned 30000. (in DCS Bios lua enviroment. I commented out the original FM1 frequencies as they show incorrect frequencies anyways. Here is the code I have tried. function ExportScript.ProcessIkarusDCSConfigLowImportance(mainPanelDevice) ExportScript.Radios(mainPanelDevice) ExportScript.FlightInstruments(mainPanelDevice) ExportScript.NavInstruments(mainPanelDevice) ExportScript.NavModes(mainPanelDevice) ExportScript.VrsCalculator(mainPanelDevice) ExportScript.PlayWithFire2(mainPanelDevice) ExportScript.UhfSuperFromListIndication(mainPanelDevice) --ExportScript.HiLowCalculator(mainPanelDevice)--Not implemented --ARC 201 FM freq display local ARC201FM_1 = ExportScript.Tools.split(list_indication(9), "%c")[7]:sub(1,5) ExportScript.Tools.SendData(6000, string.format("%-5s", ARC201FM_1)) end function ExportScript.ProcessDACConfigLowImportance(mainPanelDevice) end -- -- -- -- -- -- -- -- -- -- -- -- Custom Functions -- -- -- -- -- -- -- -- -- -- -- -- function ExportScript.Radios(mainPanelDevice) -- ADF Radio local ADF_digit1 = round(mainPanelDevice:get_argument_value(625)*2,0) local ADF_digit2 = round(mainPanelDevice:get_argument_value(626)*10,0) local ADF_digit3 = round(mainPanelDevice:get_argument_value(627)*10,0) local ADF_digit4 = round(mainPanelDevice:get_argument_value(628)*10,0) local ADF_digit5 = round(mainPanelDevice:get_argument_value(629)*10,0) local ADF_freq = string.format("%4.1f", ADF_digit1 .. ADF_digit2 .. ADF_digit3 .. ADF_digit4 .. "." .. ADF_digit5) ADF_freq = trim(ADF_freq) if #ADF_freq == 3 then --1.0 to 0001.0 ADF_freq = "000" .. ADF_freq elseif #ADF_freq == 4 then --10.0 to 0010.0 ADF_freq = "00" .. ADF_freq elseif #ADF_freq == 5 then --100.0 to 0100.0 ADF_freq = "0" .. ADF_freq end ExportScript.Tools.SendData(4000, "ADF KHz\n" .. ADF_freq) -- Uhf new method local UHF_freq = string.format("%3.3f", GetDevice(5):get_frequency()/1000000) ExportScript.Tools.SendData(4001,"UHF MHz\n" .. UHF_freq) -- FM1 --local FM1_freq = string.format("%3.2f", GetDevice(6):get_frequency()/100000) --ExportScript.Tools.SendData(4002, "FM1 MHz\n" .. FM1_freq) -- FM2 local FM2_freq = string.format("%3.2f", GetDevice(10):get_frequency()/100000) ExportScript.Tools.SendData(4003, "FM2 MHz\n" .. FM2_freq) Any Ideas?
  4. Go with the highest card you can afford. There is quite a significant performance jump between the 30 series and 40 series cards (4090 is 60-80% increase over 3080.) That being said if you can only afford a 30 series then stick to 3080ti or 3090. Especially if you are an exclusive VR player. Also consider 64gb ram as the bare minimum. Most people forget to factor in all the other programs and devices installed and running while playing the game. I have 128 and routinly hit 48-52 percent ram usage.
  5. For the many of use that have to alter these scripts for them to show up correctly on larger screens, it removes many servers from availabilty due to failing IC checks. Is there a way to move these to saved game side or remove these from IC checks?
  6. and now the stock version is working. Sorry for me lack of knowledge to know where to put the string you provided.
  7. So I replaced the option 4 line with this one in the UH-1 file. It did not work and has since killed the function for that module. Even after reverting to the previous non edited version and reinstalling a fresh WWT folder it still does not display anything for the Huey. All the other modules behave as expected. Not sure what I did to kill it for the huey.
  8. Is there a way to show VSI on all heli profiles? Is there a generic output for that parameter and then the existing profiles can be made to display that? It is nice for the AH-64, but would be even better for the UH-1, MI-8, and MI-24.
  9. I assume this is in SP only? In MP there is a Desync with moving targets and always miss (usually behind) target.
  10. @ANDR0ID I would think that you would want to display items that are not available on the HUD. Heading and Radar alt are availble on the HUD. I like the fuel and weapons, chaff, flare, radio etc. Cant wait to try it.
  11. thats what I was hoping for. Radar Altitude for window 1 (to match scratchpad) then IAS to window 2, VSI window 3, And then maybe BARO alt window 4, Also chaff flare counts to comms windows like Androids (if possible). I tried to look at the Aircraft mainwindow lua to see about adding IAS and VSI, but idk if they can display without a digit (like the radar Alt.) However IDK much about the coding.
  12. This is fantastic. Anxiuosly awaiting Androids Blackhawk additions. Would like to see VSI, ALT, Airspeed. etc for Mi-24, MI-8, and Huey (basically any helo without a hud.) I have already submitted one issue I found in the Huey (not a big one though)
  13. Fixed my own issue, SCALLING. I had my gui set to 1.25, reverted back to 1 and everything functions normally.
×
×
  • Create New...