Jump to content

tomekldc

Members
  • Posts

    17
  • Joined

  • Last visited

Everything posted by tomekldc

  1. Hey, Take a look at this project : DCS-BIOS . You can send and read command from DCS World. However you don't have a proper GUI to interact with DCS World. It will with a terminal (lua environment). Similarly LotAtc offers a way to interact with DCS World through flags you have set initially in your DCS Mission. As for me, I'm still looking for a GUI which can monitor data of the mission (has the trigger on the zone worked ?) and send Moose command to DCS World. Cheers
  2. Hey @Frag, We share the same interest. Have you found a way ? Cheers, TL
  3. Hi, Has anyone tried already to export data out of Tacview through lua sockets (maybe the SDK?) ? I'm working on a project where I would like to recreate the state of a debriefing online and export Tacview's data that has been currently read (precise position of all the actors of the mission, etc..) to a database. To make it short, I would like to use the scenario saved from DCS World as a light simulator where I can have a view on the scenario in real time. Best regards, TL
  4. Thank you jross194 and Habu_69 for your quick reply. I'm finally extracting the velocity of each units trough the mission editor script.
  5. Hi, I'm looking for extracting the velocity / speed of each unit in the mission, through the Export.lua with the native functions or at least not with a complex mod. A lot of Mods are capable of it but by exploring them I can't resolve how they manage to do it. Any idea how to get the speed of all the units of the environment (not just the client aircraft) Thank you for your time,
  6. Thank you a lot! Have a nice day,
  7. Hi, I'm exporting the position of each of my mission's unit with this function below: Could someone explain me the ratio used for the "internal DCS coordinate system" ? I would like to convert it into meters. LoGetObjectById() -- (args - 1 (number), results - 1 (table)) Returned object table structure: { Name = Type = {level1,level2,level3,level4}, ( see Scripts/database/wsTypes.lua) Subtype is absent now Country = number ( see Scripts/database/db_countries.lua Coalition = CoalitionID = number ( 1 or 2 ) LatLongAlt = { Lat = , Long = , Alt = } Heading = radians Pitch = radians Bank = radians Position = {x,y,z} -- in internal DCS coordinate system ( see convertion routnes below) -- only for units ( Planes,Hellicopters,Tanks etc) UnitName = unit name from mission (UTF[img=https://forums.eagle.ru/images/smilies/cool.gif] GroupName = unit name from mission (UTF[img=https://forums.eagle.ru/images/smilies/cool.gif] } Thank you for your time, TL
  8. Dynamic Render on the Kneeboard Hi @AlaskanGrizzly and his team. Thanks a lot for your work. I have a question though : Is the DCS Kneeboard capable of changing dynamically the render of the content ? I'm thinking about writing messages inside the kneeboard that could change depending on the context. Thanks for your help
  9. Hi, I had the same issue. It's an access error. Try to open the program with administrations "Execute with administrator privilege".
  10. Thanks @Hardcard and @Sedlo, There's something wrong with my mission. By the way for the moment, I'm using a Su-25T (with Air-To-Air Missiles) ; I'll switch in a while to a real Air-Air Fighter (the M-2000). If I understand what you're saying inside the Mission Editor in the Triggers Panel, I need to: - Create a trigger : [TRIGGERS] CONTINUOUS ACTION("missileFiredAtAI_1", ON MISSION START) ; [CONDITIONS] None; [ACTIONS] DO SCRIPT (local Client = ... ) - Create a trigger [TRIGGERS] CONTINUOUS ACTION("AI_1_Escape", NO EVENT) ; [CONDITIONS] FLAG IS TRUE (501); [ACTIONS] AI TASK PUSH (Switch Way point, MESSAGE TO ALL, perform a task or whatever) Is that all correct ? Thanks for your help.
  11. Thank you for your help @Exorcet : it's a good start. i will be the only one firing missile. I found the EVENT "On Shot" as you mentionned. Now I'll try to change the course of the AI with this event. Thanks again.
  12. Hi, Here's the situation : I need to intercept an enenmy aircraft. I would like to create a trigger where the aircraft (controlled by an AI) is changing is course (going back to base) when I fire a missile at him. I can't find a trigger who says "missile fired" or "missile alive / spawn". Do you have an idea on how to do it ? Thanks for your help
  13. Good morning, everyone, I am new to the world of DCS. I'm just trying to export flight data (position, speed, etc...) to an outside dynamically (to JSON for the best of cases). I looked around and found out: - the DCS native Export.lua file. Using writing to a log file, everything works except when I try to make a UDP connection per socket. - DCS Export Core: I have a WinError 10061 error when I try a connection via UDP - DCS ExportScripts: does it only work with specific hardware (DAC and Ikarus)? - DCS-BIOS: Can find how to export and config easily the data I want to export Do you have simple tutorials to set up a UDP connection with DCS and export flight data, on which I can rely? Thank you very much for your time,
  14. Good morning, everyone, I am new to the world of DCS. I'm just trying to export flight data (position, speed, etc...) to an outside dynamically (to JSON for the best of cases). I looked around and found out: - the DCS native Export.lua file. Using writing to a log file, everything works except when I try to make a UDP connection per socket. - DCS Export Core: I have a WinError 10061 error when I try a connection via UDP - DCS ExportScripts: does it only work with specific hardware (DAC and Ikarus)? - DCS-BIOS: Can find how to export and config easily the data I want to export Do you have simple tutorials to set up a UDP connection with DCS and export flight data, on which I can rely? Thank you very much for your time,
  15. Thank you for you reply BaD Crc. I'll send those parts of the forum. Have a nice day.
  16. Good morning, everyone, I am new to the world of DCS. I'm just trying to export flight data (position, speed, etc...) to an outside dynamically (to JSON for the best of cases). I looked around and found out: - the DCS native Export.lua file. Using writing to a log file, everything works except when I try to make a UDP connection per socket. - DCS Export Core: I have a WinError 10061 error when I try a connection via UDP - DCS ExportScripts: does it only work with specific hardware (DAC and Ikarus)? - DCS-BIOS: Can find how to export and config easily the data I want to export :huh: Do you have simple tutorials to set up a UDP connection with DCS and export flight data, on which I can rely? Thank you very much for your time, TL
×
×
  • Create New...