Jump to content

FwSchultz

Members
  • Posts

    12
  • Joined

  • Last visited

1 Follower

About FwSchultz

  • Birthday 08/01/1981

Personal Information

  • Flight Simulators
    DCS
  • Location
    Germany - Berlin

Recent Profile Visitors

464 profile views
  1. i had the same problem that everything was delayed. i wrote my own f-14b.lua with only the content i need and since then it works perfectly.
  2. hi, I don't really know how to use the modelviewer. I want to read out arguments from the F-14B. Heading, Compass, etc.. So not clickable things. how do i do that. Thanks already
  3. i also strongly suspect that it is exactly this problem and therefore does not work for us because we have not installed it in the default directory. in my case i have installed it on D:.
  4. so the solution looks like this. awesome function ExportScript.ProcessIkarusDCSConfigHighImportance(mainPanelDevice) . . . ExportScript.displayAltitude(mainPanelDevice) --Altitude in Feet . . . end function ExportScript.displayAltitude(mainPanelDevice) -- Altitude A4 ---------------------------------------------- local AltPlt = string.sub(string.format("%.1f", mainPanelDevice:get_argument_value(112)), 3, 3) .. string.sub(string.format("%.1f", mainPanelDevice:get_argument_value(262)), 3, 3) .. string.sub(string.format("%.1f", mainPanelDevice:get_argument_value(300)), 3, 3) .. "00" ExportScript.Tools.SendData(52262, "Altitude\n(MSL)\n" .. AltPlt .. "\nFT") -- Return Altitude in FT Formatted like F-14 Servopneumatic Altimeter end
  5. hi, After several attempts I had to realise that the height calculation from the hind did not work in the F14. Now I have tried the following and it worked. function ExportScript.displayAltitude(mainPanelDevice) -- Altitude A4 ---------------------------------------------- local AltPlt = string.sub(string.format("%.1f", mainPanelDevice:get_argument_value(262)), 3, 3) .. string.sub(string.format("%.1f", mainPanelDevice:get_argument_value(300)), 3, 3) ... "00" ExportScript.Tools.SendData(52262, "TOTAL\nHIGH QTY\n" .. AltPlt .. "\nft") -- Return Total RIO Fuel Qty Formatted like F-14 Gauge end the problem is that it doesn't give me a two digit number for the argument_value(262). for example it looks like this. ingame output 14700ft -> streamdeck output 4700ft is there a way to get a 2 digit output?
  6. Hi, here I am again, with the modelviewer i couldn't get the servopneumatic altimeter to move or an animation. And on the subject of lua, I've searched quite a few and haven't found anything either. i'm getting desperate and don't know what to do. thanks for the info anyway. maybe there's another solution? this is my export script lua.
  7. well then, let's get started. first of all, let me say again that I did not learn lua. I have copied the part for the altitude calculation out of the Mi-24p.lua and copied it into the F-14B.lua between function ExportScript.ProcessIkarusDCSConfigHighImportance(mainPanelDevice) . . . end altitude calculation: unfortunately i don't know which mainPanelDevice:get_argument_value(19) i should use. i still can't figure out where to get it so cleanly. i think it should be non-clickable argument_value. thanks in advance for your help.
  8. hi, is there already a possibility to display the MSL and AGL from the F-14? i've been trying to get it working for about a week but honestly i haven't learned any scripting language and i'm trying to implement copy and past from different modules into the F-14. i'm aware that i need to modify the get_argument_value. but i just can't get it working. i'd appreciate any help or if there is something already posted and shared here. sry for my english i am from germany
  9. I don't know what I'm doing wrong. The new plugin is installed. DCS-BIOS is located in "C:\Users\xxx\Saved Games\DCS.openbeta\Scripts\DCS-BIOS". The Export.lua was adjusted with "dofile(lfs.writedir().[[Scripts\DCS-BIOS\BIOS.lua]])". If I drag the DCS-Bios button on the StreamDeck to a button I have to configure it. So I pressed Configure -> went into Setup and entered the path "C:\Users\xxx\Saved Games\DCS.openbeta\Scripts\DCS-BIOS". When I press update nothing happens and no modules are found. What am I doing wrong? Translated with www.DeepL.com/Translator (free version)
  10. possibly would be still super, texts to make colored because of double allocation (modifier)
  11. i mean airspeed in kn and not miles per hour and not mach ^^ sry for the misunderstanding
  12. hi and a nice evening to you, i've been following this thread for a few days now and i'm frantically trying to get the mph into the streamdeck. is there a solution? greetings Schultz
×
×
  • Create New...