Jump to content

Carbon-14

Members
  • Posts

    6
  • Joined

  • Last visited

Everything posted by Carbon-14

  1. The April 18th newsletter mentions that DTC support is in the pipeline for AH-64 and A-10C II but did not mention the CH-47. I hope that was just an oversight. The CH-47F early access guide specifically mentions using the DTC.
  2. And also the Mi-24. In addition to those, this should be expanded to cargo vehicles in Combined Arms!
  3. I think I'm also encountering this issue. Its a bit inconsistent but I've noticed long delays on things like requesting rearming via VAICOM in the Mi-24. Spamming the communications keyboard command seems to help get the rearm dialog window up quicker, but definitely annoying.
  4. 3rd party applications and tools like OverlordBot are part of what makes DCS World great. I hope ED considers opening up/adding more APIs to 3rd party developers
  5. It appears the text for the channels has a colon character that's messing up the way the data is read over the network. I was able to resolve this by modifying the AVB8NA.lau file and replacing the lines: ExportScript.Tools.SendData(2023, string.format("%s", lUFC_Chnl1)) -- string with max 2 charachters ExportScript.Tools.SendData(2024, string.format("%s", lUFC_Chnl2)) -- string with max 2 charachters with: ExportScript.Tools.SendData(2023, string.format("%s", lUFC_Chnl1:gsub(':', ''))) -- string with max 2 charachters ExportScript.Tools.SendData(2024, string.format("%s", lUFC_Chnl2:gsub(':', ''))) -- string with max 2 charachters
×
×
  • Create New...