Jump to content

bones1014

Members
  • Posts

    648
  • Joined

  • Last visited

Everything posted by bones1014

  1. I just take a screen shot of the modules on the bottom of the main DCS screen and then crop the images, save, and apply them as images.
  2. They could be but since they spring to the center would it work well?
  3. You could just fire them off.
  4. I just used a modifier and mapped the whole keyboard to my actual keyboard. Works a lot better than a streamdeck keyboard.
  5. The external master light switch in the Tomcat is the same way. no animation in the cockpit so there's no lua argument for it. bummer
  6. I'm trying to find the lamps as well. I can get them to light up in the model viewer but there are a LOT of arguments to get through.
  7. while piloting with the copilot MFCD's exported (which is wrong) I saw something strange floating around the cockpit. any idea what it is? I don't think it's part of any HMD or anything. maybe something to do with attempting to export the MFDs
  8. Yep I'm in the same boat as everyone else. I can see the pilot left screen exported but the copilot right overrides anything I try to do to export the pilot right display.
  9. Starting work on an export file for the Apache. *edit looks like it's already done in a different post. disregard.* Ah-64D_clickabledata.csv
  10. I'm new to the software but that sounds like a cool feature. I looked for a bit but I couldn't see how to do it.
  11. I don't have the stick yet. It's almost here! I was just going to use that thumb stick for the TMS switch in the Viper.
  12. Not sure what else there is to do man. It's pretty simple. I have plugins installed per the instructions
  13. you can view the cockpit devices in the model viewer. It's located in DCS World OpenBeta/bin/ModelViewer2 load up the cockpit of your choice and then look for the device.
  14. Does this work pretty well for those that have tried it?
  15. I'm having the same issue. I don't know where the json files are stored. DCS Bios is working. I can see it working in the web interface.
  16. I have DCS Bios installed and working. I can see values change in the control reference in the browser. However I can't find the install location that contains the json files. Any tips on finding it? It's not in the saved games/scripts folder. I uninstalled and reinstalled DCS Bios and I don't have a DCS Bios folder in my scripts folder.
  17. I've found that the software works better with Windows 11 than 10. Sent from my SM-G781U using Tapatalk
  18. Yea works great!
  19. @bailey how about this for the A-4 Radar? For some reason the 0 value was giving me -0 which doesn't make a lick of sense hence that extra if/then to make it a regular 0. function ExportScript.radar_mode_and_tilt(mainPanelDevice) --[120] = "%0.4f", --AN/APG-53A Radar Mode Switch {0.1,0,0.4} --[122] = "%0.4f", --Radar Antenna Tilt Switch {0.4,0,1} local radar_mode if mainPanelDevice:get_argument_value(120) > 0 and mainPanelDevice:get_argument_value(120) < 0.2 then --0.1 radar_mode = "STBY" elseif mainPanelDevice:get_argument_value(120) > 0.1 and mainPanelDevice:get_argument_value(120) < 0.3 then --0.2 radar_mode = "SRCH" elseif mainPanelDevice:get_argument_value(120) > 0.2 and mainPanelDevice:get_argument_value(120) < 0.4 then --0.3 radar_mode = "TC" elseif mainPanelDevice:get_argument_value(120) > 0.3 then radar_mode = "A/G" else radar_mode = "OFF" end local radar_tilt if ExportScript.Tools.round(mainPanelDevice:get_argument_value(122), 2) < 0.36 or ExportScript.Tools.round(mainPanelDevice:get_argument_value(122), 2) > 0.44 then radar_tilt = ((ExportScript.Tools.round(mainPanelDevice:get_argument_value(122), 2) * 25 ) - 10) * -1 else radar_tilt = 0 end if radar_tilt == -0 then radar_tilt = 0 end
  20. I'll work with that.
  21. @Bailey I was using your fuel flow readout for the F-16. It works mostly except for skipping over the 7000- 7900 fuel flow range. The 1000's place stays at 6k through both the 6k and 7k ranges.
  22. @bailey I was trying to make the A-4 radar tilt angle better by making it a continuous range instead of set at 5 deg increments. I haven't thought up a way to do this yet. What is your technique? Sent from my SM-G781U using Tapatalk
  23. It moves for me it just doesn't do anything. Sent from my SM-G781U using Tapatalk
×
×
  • Create New...