Jump to content

Tess

Members
  • Posts

    34
  • Joined

  • Last visited

About Tess

  • Birthday 12/17/1965

Personal Information

  • Flight Simulators
    DCS
  • Location
    Scotland, UK
  • Interests
    DCS

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. Just flown Mission 15 and noticed that the TOT is shown as XXXX in the briefing PDF - or am I missing something? Only managed a 'draw' as the AI Sledge formation was stuck in the hold with the tanker and failed to push on time. Pressed to the target late and alone but none of the triggers worked. Despite these problems it was a very enjoyable 2+ hours of my life! I cannot praise Baltic Dragon highly enough for the experience he has created. As a former GR4 pilot it was nice to see my former mount in the thick of the action. Hopefully next time I fly the mission I'll be in the correct bit of airspace at the correct time, instead of floating around with the KC135 over 100nms away from the action!!!
  2. I had the same problem and you are quite correct to state that it is because there is no elevation against the waypoint. I might be wrong but I thought the elevation was supposed to be provided by the terrain elevation database in the jet, but this does not seem to be happening.
  3. Thanks for the quick response. Just a thought but rather than modifying all the individual briefings perhaps you could provide a single pdf sheet with mission standard items? AATAC is desirable during the day, but essential for night tactical formation.
  4. Hi, Really enjoying another of your excellent campaigns. Just finished mission 3 and you have once again nailed the feel of Fast Jet operations. Looking forward to see how the story and CAS elements develop. Quick question: is it possible to get the AATAC working in the Harrier between leader and wingman? In the absence of an A2A radar this would greatly help SA. Anyway, thanks once again for an excellent campaign.
  5. Just flown mission 6 and I can confirm that the AI route following is initially erratic. After I arrived at waypoint 1 the AI formation flew back towards Incirlik before eventually setting course for the Gold corridor. After that the big picture routing seemed fine, although the AI still seemed to have frequent 'wobbles' when it came to flying a heading and a height. Still a great mission though!
  6. Same happened to me during mission 9. Answered "Fine" via F10 then mission failed to progress, i.e. no more dialogue from Lotus.
  7. Difference between . and : in Lua programming (tutorialspoint.com)
  8. Thanks, I’ll give it a go. I also think {u3a} may work (UTF-8 code for colon).
  9. The :(colon) operator in Lua is used when you want to pass an invisible parameter to the method of an object that you are calling.
  10. Thanks for the replies. Tried the first 2 methods with no luck so it looks like Bailey is right about it being a limitation of Lua. Looking on the bright side "LShift + R" is going to save me a load of time!
  11. A10 Digital Clock I've managed to 'stack' the A10 digital clock on a Streamdeck tile (i.e. hours and minutes above seconds), but I'm struggling to add the colon between the hours and minutes. It's probably an easy fix but so far it has eluded me. Line of code is below, any advice would be welcome. ExportScript.Tools.SendData(2010, string.format("%s%s%s%s", lDigitalClock.txtHours, lDigitalClock.txtMinutes, "\n" .. lDigitalClock.txtSeconds, "\n" .. lCET))
  12. Thanks for the steer. I’ll give it a try.
  13. Plea for help again! Trying to create an "All Radios" tile for the A10. I've tried using code from the SA342M (shown below) but no joy. Any ideas? -- AN/ARC-164 UHF and UHF Preset Channel --------------------------------------------------- local lUHF_RADIO = GetDevice(54) if lUHF_RADIO:is_on() then ExportScript.Tools.SendData(2000, ExportScript.Tools.RoundFreqeuncy((lUHF_RADIO:get_frequency()/1000000))) UHF_readout = ExportScript.Tools.RoundFreqeuncy((lUHF_RADIO:get_frequency()/1000000))) local lPresetChannel = ExportScript.Tools.getListIndicatorValue(10) ExportScript.Tools.SendData(2001, string.format("%s", lPresetChannel.txtPresetChannel)) else ExportScript.Tools.SendData(2000, " ") ExportScript.Tools.SendData(2001, " ") end -- AN/ARC-186(V) VHF AM and Preset Channel --------------------------------------------------- local lVHF_AM_RADIO = GetDevice(55) ExportScript.Tools.SendData(2002, ExportScript.Tools.RoundFreqeuncy((lVHF_AM_RADIO:get_frequency()/1000000))) VHFAM_readout = ExportScript.Tools.RoundFreqeuncy((lVHF_AM_RADIO:get_frequency()/1000000))) local lVHF_AM_RADIO_PRESET = {[0.0]="1",[0.01]="2",[0.02]="3",[0.03]="4",[0.04]="5",[0.05]="6",[0.06]="7",[0.07]="8",[0.08]="9",[0.09]="10",[0.10]="11",[0.11]="12",[0.12]="13",[0.13]="14",[0.14]="15",[0.15]="16",[0.16]="17",[0.17]="18",[0.18]="19",[0.19]="20",[0.20]="1"} ExportScript.Tools.SendData(2003, lVHF_AM_RADIO_PRESET[ExportScript.Tools.round(mainPanelDevice:get_argument_value(137), 2)]) -- AN/ARC-186(V) VHF FM and Preset Channel ------------------------------------------------- local lVHF_FM_RADIO = GetDevice(56) ExportScript.Tools.SendData(2004, ExportScript.Tools.RoundFreqeuncy((lVHF_FM_RADIO:get_frequency()/1000000))) VHFFM_readout = ExportScript.Tools.RoundFreqeuncy((lVHF_FM_RADIO:get_frequency()/1000000))) -- Preset is buggy local lVHF_FM_RADIO_PRESET = {[0.0]="1",[0.01]="2",[0.02]="3",[0.03]="4",[0.04]="5",[0.05]="6",[0.06]="7",[0.07]="8",[0.08]="9",[0.09]="10",[0.10]="11",[0.11]="12",[0.12]="13",[0.13]="14",[0.14]="15",[0.15]="16",[0.16]="17",[0.17]="18",[0.18]="19",[0.19]="20",[0.20]="1"} ExportScript.Tools.SendData(2005, lVHF_FM_RADIO_PRESET[ExportScript.Tools.round(mainPanelDevice:get_argument_value(151), 2, "ceil")]) --------------------- -- All Radios Tile -- --------------------- ExportScript.Tools.SendData(2030, "U " .. UHF_readout .. "\n" .. "VA " .. VHFAM_readout .. "\n" .. "VF " .. VHFFM_readout)
×
×
  • Create New...