Jump to content

Carbon-14

Members
  • Posts

    4
  • Joined

  • Last visited

Everything posted by Carbon-14

  1. 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.
  2. 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
  3. 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...