Jump to content

bones1014

Members
  • Posts

    648
  • Joined

  • Last visited

Everything posted by bones1014

  1. I have found that the A-4 radar does not respond to the stream deck properly. It registers changes in the position when you press the stream deck button and rotate the knobs in game but the game only recognizes the rotation in game via mouse or keyboard. Sent from my SM-G781U using Tapatalk
  2. It's working just fine for me. Great stuff!
  3. Oh I didn't see that one. [emoji848] Awesome Sent from my SM-G781U using Tapatalk
  4. I'll look into it thanks Sent from my SM-G781U using Tapatalk
  5. I'm going to look into a On else Off command for the F-16 laser arm switch. If someone beats me to it that would be just fine.
  6. I'm not sure what to call it but the software calls it button 8. It's what makes the throttles move together. What I'm experiencing is inversion of the right throttle axis when the switch is moved. I can't find button 8 in the software to disable it. Can I and if so, how? *edit and wouldn't you know 2 seconds after posting this I found it! Here's a screen for anyone in the furture
  7. If the A-4 doesn't work it wouldn't break my heart as it's just a mod. I would definitely be willing to test new tools. DCS BIOS is not something I've had to use yet.
  8. is this for the A-10C or A-10C II? Also, can you share your profile?
  9. I have not experienced that problem
  10. Did it work that time? Sent from my SM-G781U using Tapatalk
  11. What I do is once the game is running copy the A-4E-C folder from the saved games folder to the install mods/aircraft folder and then the stream deck plugin can see it.
  12. Added a pull request. I added a commit yesterday. can you see that?
  13. I fixed the A-4E-C Destination Long and the UHF channel indicator. tried to push it to the master but no permissions so it's in my fork.
  14. I connected to the GitHub repository. Might be easier to collaborate that way. Like others have said, Github is kinda confusing to use.
  15. When I try to assign the corner rocker buttons on on MFD 1 to a function, for example the safety bracket, they are recognized in the control settings but when I go back to the game they do nothing. The regular square buttons on MFD 1 work just fine. Everything works like normal if I use MFD 2. The windows device manager recognizes all the button presses on both MFDs. I have done a slow repair of every file and that didn't change anything. Any ideas?
  16. There's an option for "All aircraft" when you're building a profile. I try using it but it gives me this error when I select it and then crashes. It would be nice to be able to use one profile instead of a separate profile for each module.
  17. No they wouldn't right now. Sent from my SM-G781U using Tapatalk
  18. @Bailey Feel like throwing these into your Skyhawk lua? For radar mode and tilt angle and the weapon drop interval. and yea I had them defined. Oh well you got it working. 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 = ExportScript.Tools.round(mainPanelDevice:get_argument_value(122), 1) * 5 if radar_tilt == 1 then radar_tilt = "+5" elseif radar_tilt == 2 then radar_tilt = "0" elseif radar_tilt == 3 then radar_tilt = "-5" elseif radar_tilt == 4 then radar_tilt = "-10" elseif radar_tilt == 5 then radar_tilt = "-15" else radar_tilt = "+10" end local radar_mode_and_tilt = "MODE" .. "\n" .. radar_mode .. "\n" .. "TILT" .. "\n" .. radar_tilt ExportScript.Tools.SendData(1250, radar_mode_and_tilt) end function ExportScript.drop_interval(mainPanelDevice) --[742] = "%0.2f", --AWRS Drop Interval Knob {0,0,0.9} local drop_interval = "DRP INTVL" .. "\n" .. ((ExportScript.Tools.round(mainPanelDevice:get_argument_value(742), 2) * 10) / 0.05) + 20 ExportScript.Tools.SendData(1251, drop_interval) end
  19. I was doing exactly that and didn't get anything in the stream deck. [emoji36] Sent from my SM-G781U using Tapatalk
  20. I'm trying to find the numbers for the nav computer. I looked in the mainpanel_init.lua and found this but putting the argument numbers in the export lua doesn't work. which file are these normally in? -- ASN-41 Navigation Computer -- current position: XX.YY{N/S} Nav_CurPos_Lat_Xnnnn = CreateGauge("parameter") Nav_CurPos_Lat_Xnnnn.arg_number = 178 Nav_CurPos_Lat_Xnnnn.input = {0.0, 1.0} Nav_CurPos_Lat_Xnnnn.output = {0.0, 1.0} Nav_CurPos_Lat_Xnnnn.parameter_name = "NAV_CURPOS_LAT_Xnnnn" Nav_CurPos_Lat_nXnnn = CreateGauge("parameter") Nav_CurPos_Lat_nXnnn.arg_number = 179 Nav_CurPos_Lat_nXnnn.input = {0.0, 1.0} Nav_CurPos_Lat_nXnnn.output = {0.0, 1.0} Nav_CurPos_Lat_nXnnn.parameter_name = "NAV_CURPOS_LAT_nXnnn" Nav_CurPos_Lat_nnXnn = CreateGauge("parameter") Nav_CurPos_Lat_nnXnn.arg_number = 180 Nav_CurPos_Lat_nnXnn.input = {0.0, 1.0} Nav_CurPos_Lat_nnXnn.output = {0.0, 1.0} Nav_CurPos_Lat_nnXnn.parameter_name = "NAV_CURPOS_LAT_nnXnn" Nav_CurPos_Lat_nnnXn = CreateGauge("parameter") Nav_CurPos_Lat_nnnXn.arg_number = 181 Nav_CurPos_Lat_nnnXn.input = {0.0, 1.0} Nav_CurPos_Lat_nnnXn.output = {0.0, 1.0} Nav_CurPos_Lat_nnnXn.parameter_name = "NAV_CURPOS_LAT_nnnXn" Nav_CurPos_Lat_nnnnX = CreateGauge("parameter") Nav_CurPos_Lat_nnnnX.arg_number = 182 Nav_CurPos_Lat_nnnnX.input = {0.0, 1.0} Nav_CurPos_Lat_nnnnX.output = {0.0, 1.0} Nav_CurPos_Lat_nnnnX.parameter_name = "NAV_CURPOS_LAT_nnnnX"
  21. @Bailey started work on some things in the scooter. Radar mode and tilt angle to one tile. Need to format the output yet. 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_and_tilt = "MODE" .. "\n" .. string.format("%.1f", mainPanelDevice:get_argument_value(120)) .. "\n" .. "TILT" .. "\n" .. string.format("%.1f", mainPanelDevice:get_argument_value(122)) ExportScript.Tools.SendData(1250, radar_mode_and_tilt) end
  22. I took what you previously posted and started messing with it. It's working so far!The only annoying thing is if you want to add something and you don't know all the details you have to move the Skyhawk folder each time. That extract tool is what I used to get my list of clickables. Sent from my SM-G781U using Tapatalk
  23. forgot to ask. what was the title of the lua and the aircraft name inside the lua? for example:
  24. I'll try that. I don't know why those switched aren't working Sent from my SM-G781U using Tapatalk
×
×
  • Create New...